OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DEATH
(Results
1 - 5
of
5
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
CollisionParameters.java
29
public final static int
DEATH
= 2; // Causes instant
death
.
GenericAnimationComponent.java
54
case
DEATH
:
55
mSprite.playAnimation(Animation.
DEATH
);
81
public static final int
DEATH
= 4;
AnimationComponent.java
39
DEATH
,
281
} else if (currentAction == ActionType.
DEATH
) {
286
// by default, explode when hit with the
DEATH
hit type.
287
boolean explodingDeath = parentObject.lastReceivedHitType == HitType.
DEATH
;
288
// or if touching a
death
tile.
308
mSprite.playAnimation(PlayerAnimations.
DEATH
.ordinal());
NPCAnimationComponent.java
34
public static final int
DEATH
= 9;
100
case
DEATH
:
101
death
(parentObject);
211
} else if (parentObject.getCurrentAction() == ActionType.
DEATH
) {
212
mCurrentAnimation =
DEATH
;
241
} else if (parentObject.getCurrentAction() == ActionType.
DEATH
) {
242
mCurrentAnimation =
DEATH
;
279
} else if (parentObject.getCurrentAction() == ActionType.
DEATH
) {
280
mCurrentAnimation =
DEATH
;
289
} else if (parentObject.getCurrentAction() == ActionType.
DEATH
) {
365
protected void
death
(GameObject parentObject) {
method in class:NPCAnimationComponent
[
all
...]
GameObject.java
64
DEATH
,
Completed in 85 milliseconds