本文整理匯總了Java中com.badlogic.gdx.scenes.scene2d.Touchable.disabled方法的典型用法代碼示例。如果您正苦於以下問題:Java Touchable.disabled方法的具體用法?Java Touchable.disabled怎麽用?Java Touchable.disabled使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類com.badlogic.gdx.scenes.scene2d.Touchable
的用法示例。
在下文中一共展示了Touchable.disabled方法的8個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: deduceTouchable
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
private Touchable deduceTouchable(Actor actor, ObjectData widget) {
if (widget.isTouchEnable()) {
return Touchable.enabled;
} else if (Touchable.childrenOnly.equals(actor.getTouchable())) {
return Touchable.childrenOnly;
} else {
return Touchable.disabled;
}
}
示例2: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
@Override
public Actor hit(float x, float y, boolean touchable) {
if (touchable && getTouchable() == Touchable.disabled) return null;
if (handleBounds.contains(x, y)) {
return this;
} else {
return super.hit(x, y, touchable);
}
}
示例3: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
@Override
public Actor hit(float x, float y, boolean touchable) {
if (touchable && getTouchable() == Touchable.disabled) return null;
if (getHandleContaining(x, y) != null) {
return this;
} else {
return super.hit(x, y, touchable);
}
}
示例4: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
public Actor hit (float x, float y, boolean touchable) {
if (clip) {
if (touchable && getTouchable() == Touchable.disabled) return null;
if (x < 0 || x >= getWidth() || y < 0 || y >= getHeight()) return null;
}
return super.hit(x, y, touchable);
}
示例5: setButtonDisabled
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
void setButtonDisabled (boolean disabled) {
Touchable t = disabled ? Touchable.disabled : Touchable.enabled;
btnDownloadImage.setDisabled(disabled);
btnDownloadImage.setTouchable(t);
btnDownloadText.setDisabled(disabled);
btnDownloadText.setTouchable(t);
btnDownloadError.setDisabled(disabled);
btnDownloadError.setTouchable(t);
btnPost.setDisabled(disabled);
btnPost.setTouchable(t);
}
示例6: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
@Override
public Actor hit (float x, float y, boolean touchable) {
if (touchable && getTouchable() == Touchable.disabled) return null;
if (getHandleContaining(x, y) != null) {
return this;
} else {
return super.hit(x, y, touchable);
}
}
示例7: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
@Override
public Actor hit (float x, float y, boolean touchable) {
if (touchable && getTouchable() == Touchable.disabled) return null;
if (handleBounds.contains(x, y)) {
return this;
} else {
return super.hit(x, y, touchable);
}
}
示例8: hit
import com.badlogic.gdx.scenes.scene2d.Touchable; //導入方法依賴的package包/類
@Override public Actor hit(float x, float y, boolean touchable) {
if (touchable && getTouchable() == Touchable.disabled) return null;
return x >= 0 && x < getWidth() && y >= 0 && y < getHeight() ? this : null;
}