Slight changes (Mostly script cleaning)

This commit is contained in:
Nicklas 2024-03-19 16:54:26 +01:00
parent 35770e2874
commit 9a720eb7b3
9 changed files with 193 additions and 105 deletions

@ -97,17 +97,8 @@ public class BoundAirScript : MonoBehaviour
windObjectToCollect.SetActive(true); windObjectToCollect.SetActive(true);
audioSource.PlayOneShot(narrationClipTwo); audioSource.PlayOneShot(narrationClipTwo);
//StartCoroutine(SecondNarration());
} }
/*IEnumerator SecondNarration()
{
yield return new WaitForSeconds(narrationClipTwo.length);
}*/
IEnumerator ResetParticleSpeed(float delay) IEnumerator ResetParticleSpeed(float delay)
{ {
@ -135,24 +126,13 @@ public class BoundAirScript : MonoBehaviour
moreSpirals.SetActive(false); moreSpirals.SetActive(false);
//isWindActive = false;
//canActivateAir = false;
} }
//Method to remove the boundary when station has been completed.
//Start through Unity event wrapper for when item to collect is selected.
public void stationCompleted() public void stationCompleted()
{ {
StartCoroutine(RemoveCollectedItem());
windObjectToCollect.SetActive(false); windObjectToCollect.SetActive(false);
//boundControl.ReactivateBoundary(); //boundControl.ReactivateBoundary();
boundControl.RemoveBoundary("Air"); boundControl.RemoveBoundary("Air");
} }
IEnumerator RemoveCollectedItem()
{
yield return new WaitForSeconds(2.0f);
}
} }

@ -27,7 +27,6 @@ public class BoundEarthScript : MonoBehaviour
if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) // if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) //
{ {
//Removing other bounds temporarily //Removing other bounds temporarily
boundControl.TempRemoveBoundary("Earth"); boundControl.TempRemoveBoundary("Earth");
@ -50,30 +49,17 @@ public class BoundEarthScript : MonoBehaviour
public void collectForce() { public void collectForce() {
if (narrationHasFinished && !seedHasAppeared) if (narrationHasFinished && !seedHasAppeared)
{ {
//Force sensor
// if (ConnectUnityWithSensors.isForceDetected)
// {
//}
earthObjectToCollect.SetActive(true); earthObjectToCollect.SetActive(true);
audioSource.PlayOneShot(narrationClipTwo); audioSource.PlayOneShot(narrationClipTwo);
seedHasAppeared = true; seedHasAppeared = true;
} }
} }
//Method to remove the boundary when station has been completed.
//Start through Unity event wrapper for when item to collect is selected.
public void stationCompleted() public void stationCompleted()
{ {
StartCoroutine(RemoveCollectedItem());
earthObjectToCollect.SetActive(false); earthObjectToCollect.SetActive(false);
//boundControl.ReactivateBoundary(); //boundControl.ReactivateBoundary();
boundControl.RemoveBoundary("Earth"); boundControl.RemoveBoundary("Earth");
} }
IEnumerator RemoveCollectedItem()
{
yield return new WaitForSeconds(2.0f);
}
} }

@ -24,7 +24,6 @@ public class BoundFireScript : MonoBehaviour
public BoundaryControlScript boundControl; public BoundaryControlScript boundControl;
//Use Yield return to like not make it start instantly????
public void OnTriggerEnter(Collider other) public void OnTriggerEnter(Collider other)
{ {
if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) // if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) //
@ -51,9 +50,7 @@ public class BoundFireScript : MonoBehaviour
public void CollectFireObject() public void CollectFireObject()
{ {
StartCoroutine(SecondNarrationAndObject()); StartCoroutine(SecondNarrationAndObject());
//audioSource.PlayOneShot(narrationClipTwo);
fireObjectToCollect.SetActive(true); fireObjectToCollect.SetActive(true);
} }
IEnumerator SecondNarrationAndObject() IEnumerator SecondNarrationAndObject()
@ -61,25 +58,12 @@ public class BoundFireScript : MonoBehaviour
audioSource.PlayOneShot(narrationClipTwo); audioSource.PlayOneShot(narrationClipTwo);
fireObjectToCollect.SetActive(true); fireObjectToCollect.SetActive(true);
yield return new WaitForSeconds(narrationClipTwo.length); yield return new WaitForSeconds(narrationClipTwo.length);
} }
//Method to remove the boundary when station has been completed.
//Start through Unity event wrapper for when item to collect is selected.
//Method for controlling when the item is grabbed
public void stationCompleted() public void stationCompleted()
{ {
StartCoroutine(RemoveCollectedItem());
fireObjectToCollect.SetActive(false); fireObjectToCollect.SetActive(false);
//boundControl.ReactivateBoundary(); //boundControl.ReactivateBoundary();
boundControl.RemoveBoundary("Fire"); boundControl.RemoveBoundary("Fire");
} }
IEnumerator RemoveCollectedItem()
{
yield return new WaitForSeconds(2.0f);
}
} }

@ -21,7 +21,6 @@ public class BoundWaterScript : MonoBehaviour
public BoundaryControlScript boundControl; public BoundaryControlScript boundControl;
//Use Yield return to like not make it start instantly????
public void OnTriggerEnter(Collider other) public void OnTriggerEnter(Collider other)
{ {
if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) // if (other.CompareTag("BoundHMD") && !narrationHasFinished && !narrationHasStarted) //
@ -61,19 +60,11 @@ public class BoundWaterScript : MonoBehaviour
} }
//Method to remove the boundary when station has been completed.
//Start through Unity event wrapper for when item to collect is selected.
public void stationCompleted() public void stationCompleted()
{ {
StartCoroutine(RemoveCollectedItem());
waterObjectToCollect.SetActive(false); waterObjectToCollect.SetActive(false);
//boundControl.ReactivateBoundary(); //boundControl.ReactivateBoundary();
boundControl.RemoveBoundary("Water"); boundControl.RemoveBoundary("Water");
} }
IEnumerator RemoveCollectedItem()
{
yield return new WaitForSeconds(2.0f);
}
} }

@ -40,9 +40,9 @@ public class BoundaryControlScript : MonoBehaviour
// Add references for the AudioSource and narration clips // Add references for the AudioSource and narration clips
public AudioSource narrationSource; public AudioSource narrationSource;
public AudioClip[] narrationClips; // Ensure this array is populated in the Inspector with your narration clips public AudioClip[] narrationClips;
//Removes other boundries when an elemental boundary has been entered.
public void TempRemoveBoundary(string bound) public void TempRemoveBoundary(string bound)
{ {
if (bound == "Air") if (bound == "Air")
@ -76,6 +76,7 @@ public class BoundaryControlScript : MonoBehaviour
} }
} }
//Reactivate boundries when station has been finished.
public void ReactivateBoundary() public void ReactivateBoundary()
{ {
if (!airFinished) if (!airFinished)
@ -99,6 +100,7 @@ public class BoundaryControlScript : MonoBehaviour
} }
} }
//Things to happen when an elemental station has been completed.
public void RemoveBoundary(string bound) public void RemoveBoundary(string bound)
{ {
if (bound == "Air" && !airHasBeenCollected) if (bound == "Air" && !airHasBeenCollected)
@ -149,6 +151,7 @@ public class BoundaryControlScript : MonoBehaviour
fireBoundary.SetActive(false); fireBoundary.SetActive(false);
} }
} }
//Collection counter audio.
IEnumerator PlayCollectionNarration() IEnumerator PlayCollectionNarration()
{ {
if (collectionCounter > 0 && collectionCounter <= narrationClips.Length) if (collectionCounter > 0 && collectionCounter <= narrationClips.Length)
@ -159,9 +162,5 @@ public class BoundaryControlScript : MonoBehaviour
yield return new WaitForSeconds(narrationClips[collectionCounter - 1].length); yield return new WaitForSeconds(narrationClips[collectionCounter - 1].length);
ReactivateBoundary(); ReactivateBoundary();
} }
} }
//ADD functionality for detecting when all elements have been collected (eg when collectionCounter
//is 4)
} }

@ -31,8 +31,6 @@ public class FireCollisionAudioScript : MonoBehaviour
resetParticles(); resetParticles();
isFireBigger = true; isFireBigger = true;
boundFireScript.CollectFireObject(); boundFireScript.CollectFireObject();
} }
} }

@ -28,16 +28,9 @@ public class GameManagerScript : MonoBehaviour
Debug.Log("Hello World Hello World"); Debug.Log("Hello World Hello World");
videoPlayerObject.Prepare(); videoPlayerObject.Prepare();
}
// Update is called once per frame
void Update()
{
} }
//Trigger introduction to when passing boundary
public void OnTriggerEnter(Collider other) public void OnTriggerEnter(Collider other)
{ {
if (other.CompareTag("BoundHMD") && !introHasBeenEntered) if (other.CompareTag("BoundHMD") && !introHasBeenEntered)
@ -46,10 +39,10 @@ public class GameManagerScript : MonoBehaviour
//Play introduction //Play introduction
StartCoroutine(IntroductionNarration()); StartCoroutine(IntroductionNarration());
} }
} }
//Starting introduction
IEnumerator IntroductionNarration() IEnumerator IntroductionNarration()
{ {
//audioSource.PlayOneShot(introductionClip); //audioSource.PlayOneShot(introductionClip);
@ -60,6 +53,7 @@ public class GameManagerScript : MonoBehaviour
ActivateBoundries(); ActivateBoundries();
} }
//Activate all the boundaries when introduction is finished, and inactivate the ones for introduction.
private void ActivateBoundries() private void ActivateBoundries()
{ {
fireBoundary.SetActive(true); fireBoundary.SetActive(true);
@ -69,6 +63,4 @@ public class GameManagerScript : MonoBehaviour
introBound.SetActive(false); introBound.SetActive(false);
introCanvas.SetActive(false); introCanvas.SetActive(false);
} }
} }

@ -5,18 +5,7 @@ using UnityEngine.SceneManagement;
public class RestartExperienceScript : MonoBehaviour public class RestartExperienceScript : MonoBehaviour
{ {
// Start is called before the first frame update //Entering this boundary restarts the scene
void Start()
{
}
// Update is called once per frame
void Update()
{
}
public void OnTriggerEnter(Collider other) public void OnTriggerEnter(Collider other)
{ {
if (other.CompareTag("BoundHMD")) if (other.CompareTag("BoundHMD"))

@ -8024,17 +8024,17 @@ PrefabInstance:
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
value: 2.913 value: 3.088
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
propertyPath: m_LocalPosition.y propertyPath: m_LocalPosition.y
value: -3.54 value: -2.849
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -6.024 value: -6.144
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
@ -8449,6 +8449,16 @@ PrefabInstance:
propertyPath: m_AnchoredPosition.y propertyPath: m_AnchoredPosition.y
value: -51.09 value: -51.09
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5783925343848829909, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Collect
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468848, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Use your hand to grab the flower.
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34, - target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3} type: 3}
propertyPath: m_AnchorMax.y propertyPath: m_AnchorMax.y
@ -10429,6 +10439,16 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 2011523864} m_TransformParent: {fileID: 2011523864}
m_Modifications: m_Modifications:
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.x
value: 0
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 13.99
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -10479,6 +10499,11 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8097010771710804114, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -13648,6 +13673,16 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 13.92
objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.13
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -13702,6 +13737,16 @@ PrefabInstance:
propertyPath: m_AnchoredPosition.y propertyPath: m_AnchoredPosition.y
value: -51.09 value: -51.09
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5783925343848829909, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Collect
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468848, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Use your hand to grab the air.
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34, - target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3} type: 3}
propertyPath: m_AnchorMax.y propertyPath: m_AnchorMax.y
@ -18064,6 +18109,11 @@ PrefabInstance:
propertyPath: m_Name propertyPath: m_Name
value: SymbolsUI value: SymbolsUI
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 1675196582151221979, guid: d50782591935947058c65576b54409c4,
type: 3}
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 1675196582151221983, guid: d50782591935947058c65576b54409c4, - target: {fileID: 1675196582151221983, guid: d50782591935947058c65576b54409c4,
type: 3} type: 3}
propertyPath: m_Color.a propertyPath: m_Color.a
@ -19473,10 +19523,15 @@ PrefabInstance:
propertyPath: m_AnchoredPosition.y propertyPath: m_AnchoredPosition.y
value: -51.09 value: -51.09
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5783925343848829909, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Collect
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468848, guid: 6fde24dee2fae4649aa80e118b805e34, - target: {fileID: 5783925344654468848, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3} type: 3}
propertyPath: m_text propertyPath: m_text
value: Use your hands to grab the flame. value: Use your hand to grab the flame.
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34, - target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3} type: 3}
@ -20316,7 +20371,7 @@ PrefabInstance:
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
propertyPath: m_LocalPosition.z propertyPath: m_LocalPosition.z
value: -0.58 value: -0.32
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736015259, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
@ -20366,7 +20421,7 @@ PrefabInstance:
- target: {fileID: 7809210389736380859, guid: 3a9b7854188d4405280e2aee6b228fc7, - target: {fileID: 7809210389736380859, guid: 3a9b7854188d4405280e2aee6b228fc7,
type: 3} type: 3}
propertyPath: m_IsActive propertyPath: m_IsActive
value: 0 value: 1
objectReference: {fileID: 0} objectReference: {fileID: 0}
m_RemovedComponents: [] m_RemovedComponents: []
m_RemovedGameObjects: [] m_RemovedGameObjects: []
@ -20772,7 +20827,7 @@ Transform:
m_GameObject: {fileID: 1158165588} m_GameObject: {fileID: 1158165588}
serializedVersion: 2 serializedVersion: 2
m_LocalRotation: {x: 0, y: 0, z: 0, w: 1} m_LocalRotation: {x: 0, y: 0, z: 0, w: 1}
m_LocalPosition: {x: 0.03, y: 14.07, z: -0.24} m_LocalPosition: {x: 0.03, y: 13.92, z: -0.19}
m_LocalScale: {x: 0.3, y: 0.3, z: 0.3} m_LocalScale: {x: 0.3, y: 0.3, z: 0.3}
m_ConstrainProportionsScale: 1 m_ConstrainProportionsScale: 1
m_Children: [] m_Children: []
@ -20982,8 +21037,8 @@ BoxCollider:
m_ProvidesContacts: 0 m_ProvidesContacts: 0
m_Enabled: 1 m_Enabled: 1
serializedVersion: 3 serializedVersion: 3
m_Size: {x: 0.9521153, y: 2.6310592, z: 4.5547028} m_Size: {x: 1.1961064, y: 2.6310592, z: 3.5652711}
m_Center: {x: -0.39272606, y: 0.8155296, z: -0.21766186} m_Center: {x: -0.15194008, y: 0.8155296, z: 0.9430082}
--- !u!54 &1166565592 --- !u!54 &1166565592
Rigidbody: Rigidbody:
m_ObjectHideFlags: 0 m_ObjectHideFlags: 0
@ -21149,6 +21204,21 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 2011523864} m_TransformParent: {fileID: 2011523864}
m_Modifications: m_Modifications:
- target: {fileID: 254805342014116847, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 13.97
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.22
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -21199,6 +21269,26 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalScale.x
value: 0.3
objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalScale.z
value: 0.31
objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 14.03
objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.02
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -26114,6 +26204,11 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 725491099} m_TransformParent: {fileID: 725491099}
m_Modifications: m_Modifications:
- target: {fileID: 255706003311227525, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -26164,6 +26259,11 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 8096187072467362296, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -35589,6 +35689,11 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 2011523864} m_TransformParent: {fileID: 2011523864}
m_Modifications: m_Modifications:
- target: {fileID: 254805342014116847, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 1
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -36522,8 +36627,7 @@ MeshRenderer:
m_RayTraceProcedural: 0 m_RayTraceProcedural: 0
m_RenderingLayerMask: 1 m_RenderingLayerMask: 1
m_RendererPriority: 0 m_RendererPriority: 0
m_Materials: m_Materials: []
- {fileID: 2100000, guid: 610d8eab62248e145a08551da327c921, type: 2}
m_StaticBatchInfo: m_StaticBatchInfo:
firstSubMesh: 0 firstSubMesh: 0
subMeshCount: 0 subMeshCount: 0
@ -39166,7 +39270,7 @@ PrefabInstance:
- target: {fileID: 2381686859592504023, guid: 95e4f970cffc348e1937878ecd30a6eb, - target: {fileID: 2381686859592504023, guid: 95e4f970cffc348e1937878ecd30a6eb,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
value: ExCanvasPrefab Variant Variant value: Introduction Video Screen
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 2381686859592504023, guid: 95e4f970cffc348e1937878ecd30a6eb, - target: {fileID: 2381686859592504023, guid: 95e4f970cffc348e1937878ecd30a6eb,
type: 3} type: 3}
@ -44873,6 +44977,21 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 2011523864} m_TransformParent: {fileID: 2011523864}
m_Modifications: m_Modifications:
- target: {fileID: 254805342014116847, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_IsActive
value: 0
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 14
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.18
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -45116,8 +45235,7 @@ MeshRenderer:
m_RayTraceProcedural: 0 m_RayTraceProcedural: 0
m_RenderingLayerMask: 1 m_RenderingLayerMask: 1
m_RendererPriority: 0 m_RendererPriority: 0
m_Materials: m_Materials: []
- {fileID: 2100000, guid: 610d8eab62248e145a08551da327c921, type: 2}
m_StaticBatchInfo: m_StaticBatchInfo:
firstSubMesh: 0 firstSubMesh: 0
subMeshCount: 0 subMeshCount: 0
@ -46706,6 +46824,16 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 725491099} m_TransformParent: {fileID: 725491099}
m_Modifications: m_Modifications:
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 13.96
objectReference: {fileID: 0}
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.2
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalScale.x propertyPath: m_LocalScale.x
@ -46761,6 +46889,16 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 13.99
objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.z
value: -0.08
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -46938,7 +47076,7 @@ AudioSource:
OutputAudioMixerGroup: {fileID: 0} OutputAudioMixerGroup: {fileID: 0}
m_audioClip: {fileID: 8300000, guid: 5b0d294ed2dfc4c37a41f98cb9c8951a, type: 3} m_audioClip: {fileID: 8300000, guid: 5b0d294ed2dfc4c37a41f98cb9c8951a, type: 3}
m_PlayOnAwake: 1 m_PlayOnAwake: 1
m_Volume: 0.2 m_Volume: 0.25
m_Pitch: 1 m_Pitch: 1
Loop: 1 Loop: 1
Mute: 0 Mute: 0
@ -47496,6 +47634,11 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 570330952} m_TransformParent: {fileID: 570330952}
m_Modifications: m_Modifications:
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 14
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -48547,6 +48690,11 @@ PrefabInstance:
serializedVersion: 3 serializedVersion: 3
m_TransformParent: {fileID: 570330952} m_TransformParent: {fileID: 570330952}
m_Modifications: m_Modifications:
- target: {fileID: 2334973955583471343, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 14
objectReference: {fileID: 0}
- target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 4522539280823768701, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_LocalPosition.x propertyPath: m_LocalPosition.x
@ -48597,6 +48745,11 @@ PrefabInstance:
propertyPath: m_LocalEulerAnglesHint.z propertyPath: m_LocalEulerAnglesHint.z
value: 0 value: 0
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 6803299175986173597, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3}
propertyPath: m_LocalPosition.y
value: 14
objectReference: {fileID: 0}
- target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0, - target: {fileID: 8280929046561396919, guid: 327cf65127c86414a83ad3b0a2bc55b0,
type: 3} type: 3}
propertyPath: m_Name propertyPath: m_Name
@ -49256,6 +49409,16 @@ PrefabInstance:
propertyPath: m_AnchoredPosition.y propertyPath: m_AnchoredPosition.y
value: -51.09 value: -51.09
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 5783925343848829909, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Collect
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468848, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3}
propertyPath: m_text
value: Use your hand to grab the drop of water.
objectReference: {fileID: 0}
- target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34, - target: {fileID: 5783925344654468849, guid: 6fde24dee2fae4649aa80e118b805e34,
type: 3} type: 3}
propertyPath: m_AnchorMax.y propertyPath: m_AnchorMax.y
@ -49470,6 +49633,12 @@ PrefabInstance:
propertyPath: m_AnchoredPosition.y propertyPath: m_AnchoredPosition.y
value: -51.09 value: -51.09
objectReference: {fileID: 0} objectReference: {fileID: 0}
- target: {fileID: 4503316873577180350, guid: ee63e9e4a907044968ed60ecbfaf78d6,
type: 3}
propertyPath: m_text
value: Use your hand to pick up the piece of firewood before you and put it
into the fire.
objectReference: {fileID: 0}
- target: {fileID: 4503316873577180351, guid: ee63e9e4a907044968ed60ecbfaf78d6, - target: {fileID: 4503316873577180351, guid: ee63e9e4a907044968ed60ecbfaf78d6,
type: 3} type: 3}
propertyPath: m_AnchorMax.y propertyPath: m_AnchorMax.y