Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
technyon committed May 25, 2017
1 parent 14895c5 commit 5c84776
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions TweenSharp.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,29 +13,17 @@ public class TweenSharp: TSTimeDef
public object onUpdateParams = null;
public bool reversed = false;
public bool suppressEvents = false;

/*
, onCompleteScope:1,
useFrames:1, runBackwards:1, startAt:1, onUpdateScope:1,
onStart:1, onStartParams:1, onStartScope:1, onReverseComplete:1, onReverseCompleteParams:1, onReverseCompleteScope:1,
onRepeat:1, onRepeatParams:1, onRepeatScope:1, easeParams:1,
yoyo:1, onCompleteListener:1, onUpdateListener:1, onStartListener:1, onReverseCompleteListener:1, onRepeatListener:1,
orientToBezier:1, immediateRender:1, repeat:1, repeatDelay:1, data:1, paused:1, reversed:1};
*/
public TSEase.EaseFunction ease = Linear.EaseNone;

private float position;
private Dictionary<string, float> properties;

private object target;

private List<string> propertyNames;
private List<float> propertyStartValues;
private List<float> propertyTargetValues;
private List<TSPlugin> propertyPlugins;
private List<PropertyInfo> propertyInfos;

public TSEase.EaseFunction ease = Linear.EaseNone;

public TweenSharp(object target, float duration, Dictionary<string, object> args) : base(duration)
{
float f = 0;
Expand Down

0 comments on commit 5c84776

Please sign in to comment.