mirror of
https://github.com/ConjureETS/Labo_2_equ_4_a15.git
synced 2026-03-24 01:10:58 +00:00
Le bouton play fonction, je vais essayer de modifier les inputs par le bouton option, comme Yan proposait.
12 lines
198 B
C#
12 lines
198 B
C#
using UnityEngine;
|
|
using System.Collections;
|
|
|
|
public class ChangeScene : MonoBehaviour {
|
|
|
|
|
|
public void ChangeToScene (string sceneToChangeTo) {
|
|
|
|
Application.LoadLevel (sceneToChangeTo);
|
|
}
|
|
}
|