コード例 #1
0
ファイル: Num.cs プロジェクト: AhrenLi/2048
 public void OnTweenMoveCompleted(dfTweenPlayableBase sender)
 {
     if (isDisappear) {
         tweenOut.Play();
     } else {
     }
 }
コード例 #2
0
    private static void showDebugPlayButton(dfTweenPlayableBase tween)
    {
        if (!Application.isPlaying)
        {
            return;
        }

        using (dfEditorUtil.BeginGroup("Debug"))
            EditorGUILayout.BeginHorizontal();
        {
            GUILayout.Space(dfEditorUtil.LabelWidth + 5);
            if (GUILayout.Button("Play", "minibutton"))
            {
                tween.Play();
            }
            if (GUILayout.Button("Stop", "minibutton"))
            {
                tween.Stop();
            }
            if (GUILayout.Button("Reset", "minibutton"))
            {
                tween.Reset();
            }
        }
        EditorGUILayout.EndHorizontal();

        EditorGUILayout.Separator();
    }
コード例 #3
0
    private static void showDebugButtons(dfTweenPlayableBase tween)
    {
        if (!Application.isPlaying)
        {
            return;
        }

        using (dfEditorUtil.BeginGroup("Debug"))
            EditorGUILayout.BeginHorizontal();
        {
            GUILayout.Space(dfEditorUtil.LabelWidth + 5);
            if (GUILayout.Button("Play", "minibutton"))
            {
                tween.Play();
            }
            if (tween.IsPlaying && tween is dfTweenComponentBase)
            {
                var target = tween as dfTweenComponentBase;
                if (GUILayout.Button(target.IsPaused ? "Resume" : "Pause", "minibutton"))
                {
                    target.IsPaused = !target.IsPaused;
                }
            }
            if (GUILayout.Button("Stop", "minibutton"))
            {
                tween.Stop();
            }
            if (GUILayout.Button("Reset", "minibutton"))
            {
                tween.Reset();
            }
        }
        EditorGUILayout.EndHorizontal();

        EditorGUILayout.Separator();
    }
コード例 #4
0
 public void AnimationEventProxy(dfTweenPlayableBase tween)
 {
     callProxyEventHandler(tween);
 }
コード例 #5
0
    private static void showDebugPlayButton( dfTweenPlayableBase tween )
    {
        if( !Application.isPlaying )
            return;

        GUILayout.Label( "Debug", "HeaderLabel" );
        EditorGUILayout.BeginHorizontal();
        {
            GUILayout.Space( dfEditorUtil.LabelWidth + 5 );
            if( GUILayout.Button( "Play", "minibutton" ) )
            {
                tween.Play();
            }
            if( GUILayout.Button( "Stop", "minibutton" ) )
            {
                tween.Stop();
            }
            if( GUILayout.Button( "Reset", "minibutton" ) )
            {
                tween.Reset();
            }
        }
        EditorGUILayout.EndHorizontal();

        EditorGUILayout.Separator();
    }
コード例 #6
0
	private static void showDebugButtons( dfTweenPlayableBase tween )
	{
		
		if( !Application.isPlaying )
			return;

		using( dfEditorUtil.BeginGroup( "Debug" ) )
		EditorGUILayout.BeginHorizontal();
		{
			GUILayout.Space( dfEditorUtil.LabelWidth + 5 );
			if( GUILayout.Button( "Play", "minibutton" ) )
			{
				tween.Play();
			}
			if( tween.IsPlaying && tween is dfTweenComponentBase )
			{
				var target = tween as dfTweenComponentBase;
				if( GUILayout.Button( target.IsPaused ? "Resume" : "Pause", "minibutton" ) )
				{
					target.IsPaused = !target.IsPaused;
				}
			}
			if( GUILayout.Button( "Stop", "minibutton" ) )
			{
				tween.Stop();
			}
			if( GUILayout.Button( "Reset", "minibutton" ) )
			{
				tween.Reset();
			}
		}
		EditorGUILayout.EndHorizontal();

		EditorGUILayout.Separator();
		
	}
コード例 #7
0
 void RemoveLabel_TweenCompleted(dfTweenPlayableBase sender)
 {
     // print("OnTweenCompleted");
     Destroy(gameObject);
 }
コード例 #8
0
 public void AnimationEventProxy( dfTweenPlayableBase tween )
 {
     callProxyEventHandler( tween );
 }
コード例 #9
0
ファイル: ihntPanelBase.cs プロジェクト: k-payl/Runner
 protected virtual void  Start()
 {
     owner                 = GetComponent <dfPanel>();
     hideTweensOwner       = GetComponents <dfTweenPlayableBase>().FirstOrDefault(i => i.TweenName == "Hide");
     showTweensDestination = GetComponents <dfTweenPlayableBase>().FirstOrDefault(i => i.TweenName == "Show");
 }
コード例 #10
0
ファイル: DemoPanelBase.cs プロジェクト: kvelury/apocalyptia
    protected virtual void TweenCompleted( dfTweenPlayableBase tween )
    {
        if( tween.TweenName == "Show" || tween.TweenName == "Submenu Return" )
        {
            Focus();
        }

        if( tween.TweenName == "Hide" )
        {
            owner.Hide();
        }
    }
コード例 #11
0
ファイル: Num.cs プロジェクト: AhrenLi/2048
 public void OnTweenOutCompleted(dfTweenPlayableBase sender)
 {
     GameController._instance.numArray[x][y]--;
     Destroy(this.gameObject);
 }