Skip to content

Commit

Permalink
removed unused variables
Browse files Browse the repository at this point in the history
  • Loading branch information
i-saint committed Jun 29, 2015
1 parent a4e02d6 commit b3891c5
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ public enum CycleType { Hold, Loop, Reverse, Bounce }
public string m_path_to_abc;
public float m_time;
public float m_time_offset;
public float m_time_interval = 1.0f / 30.0f;
public float m_time_scale = 1.0f;
public bool m_preserve_start_time = true;
public CycleType m_cycle = CycleType.Hold;
Expand Down Expand Up @@ -197,7 +196,7 @@ void Update()

AbcUpdateElements();

AbcAPI.aiSetTimeRangeToKeepSamples(m_abc, m_time_prev, 0.1f);
AbcAPI.aiSetTimeRangeToKeepSamples(m_abc, at2, 0.1f);

// begin preload
AbcAPI.aiUpdateSamplesBegin(m_abc, m_time_next);
Expand Down

0 comments on commit b3891c5

Please sign in to comment.