Skip to content

Instantly share code, notes, and snippets.

@LunNova
Created May 4, 2012 18:12
Show Gist options
  • Save LunNova/2596684 to your computer and use it in GitHub Desktop.
Save LunNova/2596684 to your computer and use it in GitHub Desktop.
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericScreen.java: widget.onAnimate();
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: .animate(animType, animValue, animCount, animTicks, (animFlags & ANIM_REPEAT) != 0, (animFlags & ANIM_RESET) != 0);
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks) {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: animate(type, value, count, ticks, true, true);
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks, boolean repeat) {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: animate(type, value, count, ticks, repeat, true);
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks, boolean repeat, boolean reset) {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public Widget animateStart() {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public Widget animateStop(boolean finish) {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public void onAnimate() {
SpoutPluginAPI/org/getspout/spoutapi/gui/GenericWidget.java: public void onAnimateStop() {
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks);
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks, boolean repeat);
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public Widget animate(WidgetAnim type, float value, short count, short ticks, boolean repeat, boolean reset);
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public Widget animateStart();
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public Widget animateStop(boolean finish);
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public void onAnimate();
SpoutPluginAPI/org/getspout/spoutapi/gui/Widget.java: public void onAnimateStop();
SpoutPluginAPI/org/getspout/spoutapi/packet/standard/MCPacket18ArmAnimation.java: * @return the animate field
SpoutPluginAPI/org/getspout/spoutapi/packet/standard/MCPacket18ArmAnimation.java: public int getAnimate();
SpoutPluginAPI/org/getspout/spoutapi/packet/standard/MCPacket18ArmAnimation.java: * @param the animate field
SpoutPluginAPI/org/getspout/spoutapi/packet/standard/MCPacket18ArmAnimation.java: public void setAnimate(int animate);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment