예제 #1
0
파일: CutScene.cs 프로젝트: GreenCalx/LD47
    private static void callImage(CutSceneElem iCSE)
    {
        Debug.Log("callImage on elem of timer " + iCSE.timer);
        CutSceneImage as_img = (CutSceneImage)iCSE;

        ui_image.sprite = as_img.image;
    }
예제 #2
0
파일: CutScene.cs 프로젝트: GreenCalx/LD47
    private static void callText(CutSceneElem iCSE)
    {
        Debug.Log("callText on elem of timer " + iCSE.timer);
        CutSceneText as_txt = (CutSceneText)iCSE;

        ui_text.text = as_txt.text;
    }
예제 #3
0
파일: CutScene.cs 프로젝트: GreenCalx/LD47
 private static void callElem(CutSceneElem iCSE)
 {
     Debug.Log("unspecified cutscene elem of timer " + iCSE.timer);
 }
예제 #4
0
파일: CutScene.cs 프로젝트: GreenCalx/LD47
 public TimelineElem(CutSceneElem iElem, Action <CutSceneElem> iAction)
 {
     elem   = iElem;
     action = iAction;
 }