Exemplo n.º 1
0
    public CutsceneTimeline(CutsceneEditor ed)
    {
        this.ed = ed;

        navigation    = new CutsceneNavigation(ed);
        tracksView    = new CutsceneTracksView(ed);
        trackControls = new CutsceneTrackControls(ed);
        trackInfo     = new CutsceneTrackInfo(ed);
    }
Exemplo n.º 2
0
 public CutsceneNavigation(CutsceneEditor ed)
 {
     this.ed = ed;
     playbackControls = new CutscenePlaybackControls(ed);
     timecodeBar      = new CutsceneTimecodeBar(ed);
 }
Exemplo n.º 3
0
    void OnEnable()
    {
        style = EditorGUIUtility.LoadRequired("Cutscene Ed/cutscene_editor_style.guiskin") as GUISkin;

        if (style == null) {
            Debug.LogError("GUISkin for Cutscene Editor missing");
            return;
        }

        //options  = new CutsceneOptions(this);
        media    = new CutsceneMediaWindow(this);
        effects  = new CutsceneEffectsWindow(this);
        tools    = new CutsceneTools(this);
        timeline = new CutsceneTimeline(this);
    }