rifaterdemsahin / aif

Adaptive Intelligence Framework
5 stars 7 forks source link

Intro Scene #190

Open rifaterdemsahin opened 6 years ago

rifaterdemsahin commented 6 years ago

image

rifaterdemsahin commented 6 years ago

1..intro image : explains the story with the name 2.pilot is the integration part 3.collected the non related test parts in poc 4.Games has the pocs

rifaterdemsahin commented 6 years ago

image

add scenes image

rifaterdemsahin commented 6 years ago

using System.Collections; using System.Collections.Generic; using UnityEngine; using UnityEngine.SceneManagement;

public class loadstory : MonoBehaviour {

IEnumerator Wait()
{
    yield return new WaitForSeconds(3);
    SceneManager.LoadScene("story");
}
// Use this for initialization
void Start () {
        StartCoroutine("Wait");
}

// Update is called once per frame
void Update () {

}

}

rifaterdemsahin commented 6 years ago

Doruk I was unable to run the intro image

Also enabled the code here image

dorukugur commented 6 years ago

You must start with Loading scene to reach Intro clearly. Loading scene runs initialize function of Intro scene by SceneController. Intro scene is using IntroController script to manage animations and button function. You can see, if you open it.

-Steps-

  1. Open Loading Scene
  2. Click Play
  3. Loading scene starts Intro scene automatically.
rifaterdemsahin commented 6 years ago

@dorukugur what is left for this intro scene to get completed for the mvp ?

rifaterdemsahin commented 6 years ago

@dorukugur scene giving errors after the image and text change image

Why do we get the error? Error coming from line 59 image