コード例 #1
0
ファイル: TitleScreen.cs プロジェクト: BlackBrad/KiwiJam2020
//  // Called every frame. 'delta' is the elapsed time since the previous frame.
//  public override void _Process(float delta)
//  {
//
//  }
    private void _LevelChange(string nextLevel)
    {
        this.queueScene = nextLevel;
        FadeIn fadeIn = GetNode <FadeIn>("TopLayer/FadeIn");

        fadeIn.Show();
        fadeIn.FadeMeIn();

        // Replace with function body.
    }