コード例 #1
0
ファイル: VFXUIDebug.cs プロジェクト: soulhez/Graphics
 void ToggleValueChanged(ChangeEvent <bool> evt)
 {
     if (evt.newValue == false)
     {
         curve = new NormalizedCurve(m_MaxPoints);
     }
 }
コード例 #2
0
ファイル: VFXUIDebug.cs プロジェクト: soulhez/Graphics
 public SwitchableCurve(int id, int maxPoints, Toggle toggle)
 {
     m_MaxPoints = maxPoints;
     curve       = new NormalizedCurve(m_MaxPoints);
     this.id     = id;
     this.toggle = toggle;
     if (this.toggle != null)
     {
         toggle.RegisterValueChangedCallback(ToggleValueChanged);
     }
 }
コード例 #3
0
ファイル: VFXUIDebug.cs プロジェクト: soulhez/Graphics
 public void ResetCurve()
 {
     curve = new NormalizedCurve(m_MaxPoints);
 }