OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:attackButton
(Results
1 - 3
of
3
) sorted by null
/external/replicaisland/src/com/replica/replicaisland/
AnimationComponent.java
225
final InputButton
attackButton
= input.getAttackButton();
227
if (
attackButton
.getPressed()) {
229
final float pressedTime = gameTime -
attackButton
.getLastPressedTime();
GhostComponent.java
123
final InputButton
attackButton
= input.getAttackButton();
125
if (
attackButton
.getTriggered(gameTime)) {
PlayerComponent.java
336
final InputButton
attackButton
= input.getAttackButton();
338
if (
attackButton
.getTriggered(time) && !mTouchingGround) {
340
} else if (
attackButton
.getPressed() && mTouchingGround
368
} else if (!
attackButton
.getPressed()) {
Completed in 2360 milliseconds