Package jag.game.scene.entity
Interface RSProjectile
-
- All Superinterfaces:
RSEntity
,RSNode
,RSProvider
,RSTriplyLinkedNode
public interface RSProjectile extends RSEntity
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description double
getAbsoluteX()
double
getAbsoluteY()
int
getEndCycle()
int
getId()
int
getLiveX()
int
getLiveY()
int
getOrientation()
RSAnimationSequence
getSequence()
int
getSlope()
int
getSourceHeight()
int
getSourceIndex()
int
getSourceLevel()
int
getStartCycle()
int
getStartX()
int
getStartY()
int
getTargetHeight()
int
getTargetIndex()
int
getTargetLevel()
int
getTargetX()
int
getTargetY()
boolean
isInMotion()
void
setLiveX(int liveX)
void
setLiveY(int liveY)
-
Methods inherited from interface jag.game.scene.entity.RSEntity
defineModel, getCachedModel, getDebugColor, getHeight, getModel, getModels, isDebugging, setCachedModel, setDebugColor, setDebugging
-
Methods inherited from interface jag.RSNode
getKey, getNext, getPrevious, unlink
-
Methods inherited from interface jag.RSTriplyLinkedNode
getNextTriply, getPreviousTriply, getTriplyKey
-
-
-
-
Method Detail
-
getOrientation
int getOrientation()
-
getTargetIndex
int getTargetIndex()
-
getSourceIndex
int getSourceIndex()
-
getSourceLevel
int getSourceLevel()
-
getSourceHeight
int getSourceHeight()
-
getTargetHeight
int getTargetHeight()
-
getTargetLevel
int getTargetLevel()
-
getSlope
int getSlope()
-
getAbsoluteX
double getAbsoluteX()
-
getSequence
RSAnimationSequence getSequence()
-
getAbsoluteY
double getAbsoluteY()
-
getStartCycle
int getStartCycle()
-
getStartY
int getStartY()
-
getEndCycle
int getEndCycle()
-
isInMotion
boolean isInMotion()
-
getId
int getId()
-
getTargetX
int getTargetX()
-
getTargetY
int getTargetY()
-
getStartX
int getStartX()
-
getLiveX
int getLiveX()
-
setLiveX
void setLiveX(int liveX)
-
getLiveY
int getLiveY()
-
setLiveY
void setLiveY(int liveY)
-
-