当前位置: 首页>>代码示例>>Java>>正文


Java Quart类代码示例

本文整理汇总了Java中aurelienribon.tweenengine.equations.Quart的典型用法代码示例。如果您正苦于以下问题:Java Quart类的具体用法?Java Quart怎么用?Java Quart使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


Quart类属于aurelienribon.tweenengine.equations包,在下文中一共展示了Quart类的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: parseEasing

import aurelienribon.tweenengine.equations.Quart; //导入依赖的package包/类
/**
 * Takes an easing name and gives you the corresponding TweenEquation.
 * You probably won't need this, but tools will love that.
 *
 * @param easingName The name of an easing, like "Quad.INOUT".
 * @return The parsed equation, or null if there is no match.
 */
public static TweenEquation parseEasing(String easingName) {
	if (easings == null) {
		easings = new TweenEquation[] {Linear.INOUT,
			Quad.IN, Quad.OUT, Quad.INOUT,
			Cubic.IN, Cubic.OUT, Cubic.INOUT,
			Quart.IN, Quart.OUT, Quart.INOUT,
			Quint.IN, Quint.OUT, Quint.INOUT,
			Circ.IN, Circ.OUT, Circ.INOUT,
			Sine.IN, Sine.OUT, Sine.INOUT,
			Expo.IN, Expo.OUT, Expo.INOUT,
			Back.IN, Back.OUT, Back.INOUT,
			Bounce.IN, Bounce.OUT, Bounce.INOUT,
			Elastic.IN, Elastic.OUT, Elastic.INOUT
		};
	}

	for (int i=0; i<easings.length; i++) {
		if (easingName.equals(easings[i].toString()))
			return easings[i];
	}

	return null;
}
 
开发者ID:mini2Dx,项目名称:universal-tween-engine,代码行数:31,代码来源:TweenUtils.java

示例2: movingLabel

import aurelienribon.tweenengine.equations.Quart; //导入依赖的package包/类
private void movingLabel(Label label) {
	Tween.registerAccessor(Label.class, new LabelAccessor());
	Timeline.createSequence()
		.push(Tween.set(label, LabelAccessor.POSITION_XY).target(0, 540))
		.push(Tween.set(label, LabelAccessor.SCALE).target(0.5f))
		.beginParallel()
			.push(Tween.to(label, LabelAccessor.POSITION_X, 1f).target(100).ease(Quad.IN))
			.push(Tween.to(label, LabelAccessor.POSITION_Y, 1f).target(300).ease(Linear.INOUT))
			.push(Tween.to(label, LabelAccessor.SCALE, 1f).target(1).ease(Bounce.OUT))
		.end()
		.beginParallel()
			.push(Tween.to(label, LabelAccessor.POSITION_X, 2f).target(50).ease(Back.INOUT))
			.push(Tween.to(label, LabelAccessor.POSITION_Y, 2f).target(310).ease(Linear.INOUT))
		.end()
		.beginParallel()
			.push(Tween.to(label, LabelAccessor.POSITION_X, 2f).target(1000).ease(Quart.IN))
			.push(Tween.to(label, LabelAccessor.POSITION_Y, 2f).target(600).ease(Back.INOUT))
		.end()
		.start(tweenManager);
}
 
开发者ID:matachi,项目名称:slashat-the-game,代码行数:21,代码来源:Game.java


注:本文中的aurelienribon.tweenengine.equations.Quart类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。