OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:removeActor
(Results
1 - 11
of
11
) sorted by null
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/
Group.java
260
if (actor.parent != null) actor.parent.
removeActor
(actor, false);
270
if (actor.parent != null) actor.parent.
removeActor
(actor, false);
283
if (actor.parent != null) actor.parent.
removeActor
(actor, false);
294
if (actor.parent != null) actor.parent.
removeActor
(actor, false);
305
/** Calls {@link #
removeActor
(Actor, boolean)} with true. */
306
public boolean
removeActor
(Actor actor) {
307
return
removeActor
(actor, true);
315
public boolean
removeActor
(Actor actor, boolean unfocus) {
Actor.java
213
* @see Group#
removeActor
(Actor) */
215
if (parent != null) return parent.
removeActor
(this, true);
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/ui/
SplitPane.java
283
if (firstWidget != null) super.
removeActor
(firstWidget);
291
if (secondWidget != null) super.
removeActor
(secondWidget);
309
public boolean
removeActor
(Actor actor) {
TooltipManager.java
130
.addAction(sequence(parallel(alpha(0.2f, 0.2f, fade), scaleTo(0.05f, 0.05f, 0.2f, Interpolation.fade)),
removeActor
()));
Dialog.java
230
addAction(sequence(action, Actions.removeListener(ignoreTouchDown, true), Actions.
removeActor
()));
238
hide(sequence(fadeOut(0.4f, Interpolation.fade), Actions.removeListener(ignoreTouchDown, true), Actions.
removeActor
()));
Container.java
157
if (this.actor != null) super.
removeActor
(this.actor);
191
public boolean
removeActor
(Actor actor) {
SelectBox.java
21
import static com.badlogic.gdx.scenes.scene2d.actions.Actions.
removeActor
;
329
selectBoxList.addAction(sequence(fadeOut(0.15f, Interpolation.fade),
removeActor
()));
Table.java
293
public boolean
removeActor
(Actor actor) {
294
return
removeActor
(actor, true);
297
public boolean
removeActor
(Actor actor, boolean unfocus) {
298
if (!super.
removeActor
(actor, unfocus)) return false;
[
all
...]
ScrollPane.java
669
if (this.widget != null) super.
removeActor
(this.widget);
703
public boolean
removeActor
(Actor actor) {
[
all
...]
Tree.java
446
tree.
removeActor
(actor);
/external/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
Actions.java
303
static public RemoveActorAction
removeActor
() {
307
static public RemoveActorAction
removeActor
(Actor
removeActor
) {
309
action.setTarget(
removeActor
);
Completed in 286 milliseconds