Lunar Cavity

by Xiamul
created Jul 12, 2022
Leaderboards
328 views | 8730 downloads

Rating
/ 3 votes

Difficulty
/ 1 vote


map notes
Luna's crevices are more mystical than the feeble minds of Terra ever imagined.

Music is "EMT" by ian booms (aka ibums).

4 comments

FemaleByleth
said Jul 14, 2022
how did you make the earth
Xiamul
said Jul 15, 2022
const string EMBED_sprite = 'sprite.png';


class Prop {
    [text] uint layer=15;
    [text] uint sublayer=20;
    [position,mode:world,layer:15,y:"y"] int x=-1531;
    [hidden] int y=-540;
    [text] float x_scale=3;
    [text] float y_scale=3;
    [angle] int rotation=0;
    [colour, alpha] uint color=0xFFFFFFFF;
}


class script: callback_base {
    scene@ g;
    sprites@ spr;

    [text] Prop prop;

    script() {
        @spr = create_sprites();
    }

    void build_sprites(message@ msg) {
        msg.set_string("custom_background","sprite");
        msg.set_int("custom_background|offsetx", 0);
        msg.set_int("custom_background|offsety", 0);
    }

    void draw(float subframe) {
      spr.add_sprite_set("script");
      spr.draw_world(prop.layer, prop.sublayer, "custom_background", 0, 0, prop.x, prop.y, prop.rotation, prop.x_scale, prop.y_scale, prop.color);
    }

    void editor_draw(float subframe) {
      draw(subframe);
    }
}
Jvcpro
said Jul 15, 2022
this is one of the single worst maps on atlas.... hands down....

I keep playing it and i want to stop but its fun and so i cant stop 0/5
jdude0822
said Jul 23, 2022
whats a lunar cavity

Please log in or register to post a comment.