sprite#
Inherited by: Hero, eweapon, ffc, itemsprite, lweapon, npc
Base class for (most) script-exposed engine sprites.
Variables#
const int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
bool |
|
int |
|
int |
|
bool |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
int |
|
bool[] |
|
int |
|
int |
|
const bool |
|
int |
|
int |
|
int |
|
int |
|
int |
|
untyped[] |
Enumerations#
Sprite rendering extend modes. Used with sprite::Extend.
ExtendMode EXT_NONE = 0
Not extended.
ExtendMode EXT_16X32 = 1
Sprite is extended as 16x32, or Link is extended in Sprites->Link to 16x32.
ExtendMode EXT_32X32 = 2
Sprite is extended as 32x32, or Link is extended in Sprites->Link to 32x32.
ExtendMode EXT_NORMAL = 3
Extended.
ExtendMode EXT_EXTENDED = 3
Extended.
ExtendMode EXT_NOSHADOW = 4
Extended. NPC has no shadow.
MoveFlag MV_OBEYS_GRAVITY = 0
MoveFlag MV_CAN_PITFALL = 1
MoveFlag MV_NO_FAKE_Z = 8
MoveFlag MV_NO_REAL_Z = 9
Variable descriptions#
const int SpawnScreen π Source
Added in version 3.0.
The screen index this sprite was created on. Does not update as the sprite moves around a region.
Hero: Actually does update as the player moves around. Equivalent to Game->HeroScreen.
The position of the sprite on the fake Z axis. This value is treated as a second, separate Z axis.
Sprites are offset upwards by this amount when drawn just like the Z axis and shadows will draw if applicable.
However, the spriteβs hitbox is not moved upwards in the Z Axis. Instead, it is moved upwards on the Y axis, mimicking how Vires and Pols Voice worked in the original Zelda.
This value is affected by FakeJump instead of Jump.
The visual offset, in pixels. Defaults to 0.
ffc: currently not supported.
The visual offset, in pixels. Defaults to 0.
ffc: currently not supported.
The Z offset, in pixels.
ffc: currently not supported.
Rotation of the sprite draw, in degrees.
Does nothing if the QR βOld (Faster) Sprite Drawingβ is enabled.
ffc: currently not supported.
value
Direction (DIR_)
The direction that the sprite is facing. Used by certain weapon types to determine movement, shield deflection and such.
The currently displaying tile of the spriteβs animation. Set by the engine each frame if Animation is enabled.
ffc: Not used - set ffc::Data to the desired combo instead.
If >-1, this tile is displayed by the engine, regardless of the normal engine animation. Set back to -1 to restore engine animation. Defaults to -1.
ffc: currently not supported.
If the sprite should be extended (large). Set to 3 to extend, 0 otherwise.
ffc: Not used. Hero: Reset every frame based on current action, unless ScriptTile is > 0.
The width of the spriteβs graphic, in tiles. Visual only. The upper-left corner is the first tile.
Must set Extend to 3 to use (except for fcc
).
Max value is 20.
ffc: max value is 4.
The height of the spriteβs graphic, in tiles. Visual only. The upper-left corner is the first tile.
Must set Extend to 3 to use (except for fcc
).
Max value is 20.
ffc: max value is 4.
Hero: This changes when the Hero is hurt and flashing. Writing to this does nothing, as the Hero cset is updated by the engine every frame - use Hero->ScriptCSet instead.
The multiplier for scaling the sprite draw.
Scale values are a multiplier: 1.5 == 50% larger (150%). A scale of 0 and a scale of 1 are identical. Negative values are undefined.
Does nothing if the QR βOld (Faster) Sprite Drawingβ is enabled.
ffc: currently not supported.
value
DrawStyle
The drawing style to use.
Upward velocity, in pixels per frame. Affected by gravity each frame, if Gravity is true.
The current velocity on the FakeZ axis. This value is added to FakeZ every frame; and this value is decreased by the gravity value until it is lower than the terminal velocity value.
If gravity affects this sprite in sideview mode. True by default.
value
TransformationType (FLIP_ or ROT_)
How to flip (or rotate) the sprite.
If >-1, this flip value will be used instead of Flip. Set back to -1 to restore normal flip.
Defaults to -1.
If the engine should animate the spriteβs graphics. If set to false, scripts must set Tile to update the spriteβs graphics manually. Defaults to true.
ffc: Not used.
The width of the hitbox, in pixels.
The height of the hitbox, in pixels.
The height of the hitbox in the Z-axis, in pixels.
The hitbox offset, in pixels.
The hitbox offset, in pixels.
The timer indicating how many more frames the sprite will fall. If 0, the sprite is not falling. Max value of 70, which is the value at the start of falling.
Hero: Setting Hero->Action to LA_FALLING also sets this to 70.
The pitfall combo the sprite is falling into, if it is falling.
Hero:
If non-zero, this comboβs attributes will affect things such as if the Hero will warp, and how much damage they will take upon finishing falling.
If 0, the Hero will take 1/4 heart of damage, and not warp.
Setting Hero->Action to LA_FALLING
will overwrite this value.
Setting Falling will overwrite this value.
value
MoveFlag (MV_)
The spriteβs movement flags.
The size of the light emitted by this sprite, in pixels.
value
LightShape
The shape of light emitted by this sprite.
const bool SwitchHooked π Source
If the sprite is currently being switch-hooked.
Note: currently not supported for ffc, Hero.
value
SpriteID (SP_)
The spritedata ID to use for the spriteβs shadow.
The timer indicating how long left the sprite will be drowning. If 0, the sprite is not drowning. Max value of 64, which is the value at the start of drowning.
The liquid combo the sprite is drowning in, if it is drowning.
Offset for the spriteβs shadow.
Offset for the spriteβs shadow.
An array of 32 misc values for scripts to use.
ffc: only 16 values.
Added in version 3.0: In older versions, most of these are implemented as separate variables on many other classes