2022-01-23 10:58:54 +00:00
|
|
|
|
|
|
|
class CoreActor native
|
|
|
|
{
|
2022-10-11 15:55:27 +00:00
|
|
|
native readonly sectortype sectp;
|
|
|
|
|
2022-01-23 18:03:14 +00:00
|
|
|
native int16 cstat;
|
2022-02-13 10:38:21 +00:00
|
|
|
//native int16 picnum; // access is disabled to allow later refactoring.
|
2022-02-07 07:49:03 +00:00
|
|
|
native readonly Vector3 pos;
|
2022-01-23 18:03:14 +00:00
|
|
|
native readonly int16 statnum;
|
2022-10-11 15:55:27 +00:00
|
|
|
native int16 intangle;
|
2022-09-01 15:17:06 +00:00
|
|
|
native int16 xint;
|
|
|
|
native int16 yint;
|
|
|
|
native int16 inittype; // inittype, type and flags are for Blood.
|
2022-01-23 18:03:14 +00:00
|
|
|
native int16 lotag, type;
|
|
|
|
native int16 hitag, flags;
|
|
|
|
native int16 extra;
|
|
|
|
native int16 detail;
|
|
|
|
|
|
|
|
native int8 shade;
|
|
|
|
native uint8 pal;
|
2022-10-04 17:06:49 +00:00
|
|
|
native uint8 intclipdist;
|
2022-01-23 18:03:14 +00:00
|
|
|
native uint8 blend;
|
2022-10-07 21:18:36 +00:00
|
|
|
native Vector2 scale;
|
2022-01-23 18:03:14 +00:00
|
|
|
native int8 xoffset;
|
|
|
|
native int8 yoffset;
|
2022-10-11 15:55:27 +00:00
|
|
|
native int16 intowner;
|
2022-01-23 18:03:14 +00:00
|
|
|
native uint16 cstat2;
|
|
|
|
|
|
|
|
native uint mdanimtims;
|
|
|
|
native int16 mdanimcur;
|
|
|
|
native uint8 renderflags;
|
|
|
|
native float alpha;
|
2022-10-04 17:06:49 +00:00
|
|
|
native double clipdist;
|
2022-10-11 15:55:27 +00:00
|
|
|
native double angle;
|
2022-01-23 18:03:14 +00:00
|
|
|
|
2022-02-13 10:38:21 +00:00
|
|
|
native readonly int16 spritesetpic;
|
2022-01-23 18:03:14 +00:00
|
|
|
native readonly int spawnindex;
|
2022-02-13 08:32:17 +00:00
|
|
|
|
|
|
|
native void setpos(Vector3 newpos, bool relink = true);
|
2022-02-20 23:12:51 +00:00
|
|
|
native void copypos(CoreActor newpos, bool relink = true);
|
2022-02-13 08:32:17 +00:00
|
|
|
native void move(Vector3 newpos, bool relink = true);
|
2022-02-13 09:44:39 +00:00
|
|
|
native void setSpritePic(int index); // index into actor's spriteset.
|
2022-02-20 23:12:51 +00:00
|
|
|
native void backuppos();
|
2022-01-23 18:03:14 +00:00
|
|
|
}
|
|
|
|
|