1 module itemBfg9000 is "item" "BFG9000";
7 // setup actor animations
8 public void initializeAnim () {
9 animClearFrames("item", "BFG9000", "sleep");
10 animAddFrame("item", "BFG9000", "sleep", ACTOR_DIR_LEFT, "sprites/items/bfuga0.vga");
14 // setup actor properties
15 public void initialize (Actor me) {
16 // `classname` and `classtype` will be set by the engine
17 //me.classname = "BFG9000";
18 //me.classtype = "item";
21 me.actorSetAnimation("sleep");
22 me.flags |= AF_NOGRAVITY;
27 public void think (Actor me) {