HomeSort by relevance Sort by last modified time
    Searched refs:life (Results 1 - 25 of 35) sorted by null

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/effect/
Particle.java 66 * Particle remaining life, in seconds.
68 public float life; field in class:Particle
71 * The initial particle life
ParticleEmitter.java 488 * the particle reaches its end of life.
537 * and end color based on the particle's current time of life relative
538 * to its end of life.
562 * and end size based on the particle's current time of life relative
563 * to its end of life.
605 * Get the high value of life.
607 * @return the high value of life.
616 * Set the high value of life.
619 * is determined by randomly selecting a time between low life and high life
    [all...]
ParticleTriMesh.java 195 boolean dead = p.life == 0;
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/life/
Makefile 13 TARGET = life
17 SOURCES = life.c
  /external/replicaisland/src/com/replica/replicaisland/
LifetimeComponent.java 22 * This component allows objects to die and be deleted when their life is reduced to zero or they
103 if (parentObject.life > 0 && mVulnerableToDeathTiles) {
109 parentObject.life = 0;
114 if (parentObject.life > 0 && mDieOnHitBackground) {
116 parentObject.life = 0;
120 if (parentObject.life <= 0) {
HitReactionComponent.java 110 parent.life = 0;
174 if (!mForceInvincibility && !mInvincible && parent.life > 0 && !sameTeam) {
175 parent.life -= 1;
177 if (mBounceOnHit && parent.life > 0) {
201 parent.life = 0;
204 if (mInventoryUpdate != null && parent.life > 0) {
210 if (mDieOnCollect && parent.life > 0) {
211 parent.life = 0;
215 if (mPossessionComponent != null && parent.life > 0 && attacker.life > 0)
    [all...]
GhostComponent.java 64 if (parentObject.life > 0) {
81 parentObject.life = 0;
138 if (parentObject.life == 0) {
169 parentObject.life = 0;
HitPlayerComponent.java 51 if (player != null && player.life > 0) {
GameObject.java 48 public int life; field in class:GameObject
111 life = DEFAULT_LIFE;
PatrolComponent.java 77 if ((mFlying || parentObject.touchingGround()) && parentObject.life > 0) {
109 if (mTurnToFacePlayer && player != null && player.life > 0) {
192 } else if (!mFlying && !parentObject.touchingGround() && parentObject.life > 0) {
218 if (mAttackAtDistance > 0 && player != null && player.life > 0
PlayerComponent.java 233 parentObject.life = mDifficultyConstants.getMaxPlayerLife();
269 if (parentObject.life <= 0) {
273 parentObject.life = 0;
285 parentObject.life = 0;
568 parent.life += mDifficultyConstants.getDDAStage2LifeBoost();
571 parent.life += mDifficultyConstants.getDDAStage1LifeBoost();
LauncherComponent.java 68 if (mShot.life <= 0) {
TheSourceComponent.java 66 if (parentObject.life > 0) {
AnimationComponent.java 194 // Turn on visual effects (smoke, etc) when the player's life reaches 1.
196 if (parentObject.life == 1 && !mDamageSwap.getCurrentlySwapped()) {
198 } else if (parentObject.life != 1 && mDamageSwap.getCurrentlySwapped()) {
GameObjectFactory.java     [all...]
NPCAnimationComponent.java 349 if (parentObject.life > 0 && parentObject.getCurrentAction() != ActionType.DEATH) {
NPCComponent.java 144 } else if (parentObject.life <= 0) {
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/src/
Makefile 56 PROJECTS = earth voronoi life bullet lua smoothlife cube
137 # Life
139 life_SRC_DIR = life
140 life_TGT_DIR = life/pnacl/Release
141 life_SRCS = $(life_SRC_DIR)/life.c \
144 life_TGTS = $(life_TGT_DIR)/life.pexe \
145 $(life_TGT_DIR)/life.nmf
148 $(MAKE) -C life TOOLCHAIN=pnacl CONFIG=Release
  /external/openssh/
authfd.c 539 const char *comment, u_int life, u_int confirm)
542 int type, constrained = (life || confirm);
573 if (life != 0) {
575 buffer_put_int(&msg, life);
631 const char *reader_id, const char *pin, u_int life, u_int confirm)
634 int type, constrained = (life || confirm);
649 if (life != 0) {
651 buffer_put_int(&msg, life);
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/life/
example.js 47 return baseUrl + revision + '/life/' + name;
191 createNaClModule('life', '100%', '100%');
  /external/chromium_org/chrome/common/extensions/docs/examples/api/eventPage/basic/
background.js 5 // Global variables only exist for the life of the page, so they get reset
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/
frame.js 9 {name: 'life', text: 'Game of Life'},
  /external/chromium_org/native_client_sdk/src/doc/
faq.rst 437 ``examples/tutorial/using_ppapi_simple/``, or the Game of Life example
438 under ``examples/demo/life/life.c``.
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/catblock/
loldogs.js 43 "http://ihasahotdog.files.wordpress.com/2011/06/funny-dog-pictures-pug-life.jpg",
  /external/chromium_org/native_client_sdk/src/gonacl_appengine/static/styles/
style.css 84 nav ul li#life a {

Completed in 1670 milliseconds

1 2