Browse Source

Renamed FungusBindings to LuaBindings

master
chrisgregan 9 years ago
parent
commit
6f886b3f0c
  1. 9
      Assets/Fungus/FungusScript/ExampleScenes.meta
  2. 2
      Assets/Fungus/FungusScript/Resources/Prefabs/LuaBindings.prefab
  3. 0
      Assets/Fungus/FungusScript/Resources/Prefabs/LuaBindings.prefab.meta
  4. 30
      Assets/Fungus/FungusScript/Scripts/Editor/LuaBindingsEditor.cs
  5. 0
      Assets/Fungus/FungusScript/Scripts/Editor/LuaBindingsEditor.cs.meta
  6. 6
      Assets/Fungus/FungusScript/Scripts/Editor/MenuItems.cs
  7. 4
      Assets/Fungus/FungusScript/Scripts/FungusScript.cs
  8. 2
      Assets/Fungus/FungusScript/Scripts/LuaBindings.cs
  9. 0
      Assets/Fungus/FungusScript/Scripts/LuaBindings.cs.meta
  10. 0
      Assets/FungusExamples/FungusScript/Narrative.unity
  11. 0
      Assets/FungusExamples/FungusScript/Narrative.unity.meta
  12. 0
      Assets/FungusExamples/FungusScript/Trigger.unity
  13. 0
      Assets/FungusExamples/FungusScript/Trigger.unity.meta
  14. 174
      Assets/FungusExamples/Sherlock/TheExperiment.unity

9
Assets/Fungus/FungusScript/ExampleScenes.meta

@ -1,9 +0,0 @@
fileFormatVersion: 2
guid: b08784ce29a474b758098629a00fb6c4
folderAsset: yes
timeCreated: 1454684130
licenseType: Free
DefaultImporter:
userData:
assetBundleName:
assetBundleVariant:

2
Assets/Fungus/FungusScript/Resources/Prefabs/FungusBindings.prefab → Assets/Fungus/FungusScript/Resources/Prefabs/LuaBindings.prefab

@ -10,7 +10,7 @@ GameObject:
- 4: {fileID: 403334} - 4: {fileID: 403334}
- 114: {fileID: 11414792} - 114: {fileID: 11414792}
m_Layer: 0 m_Layer: 0
m_Name: FungusBindings m_Name: LuaBindings
m_TagString: Untagged m_TagString: Untagged
m_Icon: {fileID: 0} m_Icon: {fileID: 0}
m_NavMeshLayer: 0 m_NavMeshLayer: 0

0
Assets/Fungus/FungusScript/Resources/Prefabs/FungusBindings.prefab.meta → Assets/Fungus/FungusScript/Resources/Prefabs/LuaBindings.prefab.meta

30
Assets/Fungus/FungusScript/Scripts/Editor/FungusBindingsEditor.cs → Assets/Fungus/FungusScript/Scripts/Editor/LuaBindingsEditor.cs

@ -11,8 +11,8 @@ using System.IO;
namespace Fungus namespace Fungus
{ {
[CustomEditor (typeof(FungusBindings))] [CustomEditor (typeof(LuaBindings))]
public class FungusBindingsEditor : Editor public class LuaBindingsEditor : Editor
{ {
protected ReorderableList boundObjectsList; protected ReorderableList boundObjectsList;
@ -54,8 +54,8 @@ namespace Fungus
if (EditorGUI.EndChangeCheck()) if (EditorGUI.EndChangeCheck())
{ {
// Force the key to be a valid Lua variable name // Force the key to be a valid Lua variable name
FungusBindings fungusBindings = target as FungusBindings; LuaBindings luaBindings = target as LuaBindings;
keyProp.stringValue = GetUniqueKey(fungusBindings, keyProp.stringValue, index); keyProp.stringValue = GetUniqueKey(luaBindings, keyProp.stringValue, index);
} }
EditorGUI.BeginChangeCheck(); EditorGUI.BeginChangeCheck();
@ -68,8 +68,8 @@ namespace Fungus
{ {
// Use the object name as the key // Use the object name as the key
string keyName = objectProp.objectReferenceValue.name; string keyName = objectProp.objectReferenceValue.name;
FungusBindings fungusBindings = target as FungusBindings; LuaBindings luaBindings = target as LuaBindings;
element.FindPropertyRelative("key").stringValue = GetUniqueKey(fungusBindings, keyName.ToLower(), index); element.FindPropertyRelative("key").stringValue = GetUniqueKey(luaBindings, keyName.ToLower(), index);
} }
if (objectProp.objectReferenceValue != null) if (objectProp.objectReferenceValue != null)
@ -165,8 +165,8 @@ namespace Fungus
List<string> details = new List<string>(); List<string> details = new List<string>();
details.Add(""); details.Add("");
FungusBindings fungusBindings = target as FungusBindings; LuaBindings luaBindings = target as LuaBindings;
foreach (FungusBindings.BoundObject boundObject in fungusBindings.boundObjects) foreach (LuaBindings.BoundObject boundObject in luaBindings.boundObjects)
{ {
UnityEngine.Object inspectObject = boundObject.obj; UnityEngine.Object inspectObject = boundObject.obj;
if (boundObject.component != null) if (boundObject.component != null)
@ -301,7 +301,7 @@ namespace Fungus
/// Returns a new binding key that is guaranteed to be a valid Lua variable name and /// Returns a new binding key that is guaranteed to be a valid Lua variable name and
/// not to clash with any existing binding in the list. /// not to clash with any existing binding in the list.
/// </summary> /// </summary>
protected virtual string GetUniqueKey(FungusBindings fungusBindings, string originalKey, int ignoreIndex = -1) protected virtual string GetUniqueKey(LuaBindings luaBindings, string originalKey, int ignoreIndex = -1)
{ {
string baseKey = originalKey; string baseKey = originalKey;
@ -320,14 +320,14 @@ namespace Fungus
// Build a hash of all keys currently in use // Build a hash of all keys currently in use
HashSet<string> keyhash = new HashSet<string>(); HashSet<string> keyhash = new HashSet<string>();
for (int i = 0; i < fungusBindings.boundObjects.Count; ++i) for (int i = 0; i < luaBindings.boundObjects.Count; ++i)
{ {
if (i == ignoreIndex) if (i == ignoreIndex)
{ {
continue; continue;
} }
keyhash.Add(fungusBindings.boundObjects[i].key); keyhash.Add(luaBindings.boundObjects[i].key);
} }
// Append a suffix to make the key unique // Append a suffix to make the key unique
@ -343,16 +343,16 @@ namespace Fungus
} }
/// <summary> /// <summary>
/// Update the list of bound types on the FungusBindings object. /// Update the list of bound types on the LuaBindings object.
/// </summary> /// </summary>
protected virtual void PopulateBoundTypes() protected virtual void PopulateBoundTypes()
{ {
FungusBindings fungusBindings = target as FungusBindings; LuaBindings luaBindings = target as LuaBindings;
// Use a temp HashSet to store the list of types. // Use a temp HashSet to store the list of types.
// The final list is stored as a list of type strings. // The final list is stored as a list of type strings.
HashSet<System.Type> typeSet = new HashSet<System.Type>(); HashSet<System.Type> typeSet = new HashSet<System.Type>();
foreach (FungusBindings.BoundObject boundObject in fungusBindings.boundObjects) foreach (LuaBindings.BoundObject boundObject in luaBindings.boundObjects)
{ {
if (boundObject.obj == null) if (boundObject.obj == null)
{ {
@ -367,7 +367,7 @@ namespace Fungus
} }
} }
// Store the final list of types in the fungusBindings object // Store the final list of types in the luaBindings object
SerializedProperty boundTypesProp = serializedObject.FindProperty("boundTypes"); SerializedProperty boundTypesProp = serializedObject.FindProperty("boundTypes");
boundTypesProp.ClearArray(); boundTypesProp.ClearArray();
int index = 0; int index = 0;

0
Assets/Fungus/FungusScript/Scripts/Editor/FungusBindingsEditor.cs.meta → Assets/Fungus/FungusScript/Scripts/Editor/LuaBindingsEditor.cs.meta

6
Assets/Fungus/FungusScript/Scripts/Editor/MenuItems.cs

@ -14,10 +14,10 @@ namespace Fungus
SpawnPrefab("Prefabs/FungusScript", false); SpawnPrefab("Prefabs/FungusScript", false);
} }
[MenuItem("Tools/Fungus/Create/Fungus Bindings", false, 2001)] [MenuItem("Tools/Fungus/Create/Lua Bindings", false, 2001)]
static void CreateFungusBindings() static void CreateLuaBindings()
{ {
SpawnPrefab("Prefabs/FungusBindings", false); SpawnPrefab("Prefabs/LuaBindings", false);
} }
[MenuItem("Tools/Fungus/Create/Fungus Invoke", false, 2002)] [MenuItem("Tools/Fungus/Create/Fungus Invoke", false, 2002)]

4
Assets/Fungus/FungusScript/Scripts/FungusScript.cs

@ -245,8 +245,8 @@ namespace Fungus
/// </summary> /// </summary>
protected virtual void RegisterBindings() protected virtual void RegisterBindings()
{ {
FungusBindings[] bindings = GameObject.FindObjectsOfType<FungusBindings>(); LuaBindings[] bindings = GameObject.FindObjectsOfType<LuaBindings>();
foreach (FungusBindings binding in bindings) foreach (LuaBindings binding in bindings)
{ {
binding.AddBindings(interpreter.Globals); binding.AddBindings(interpreter.Globals);
} }

2
Assets/Fungus/FungusScript/Scripts/FungusBindings.cs → Assets/Fungus/FungusScript/Scripts/LuaBindings.cs

@ -13,7 +13,7 @@ namespace Fungus
/// Component which manages a list of bound objects to be accessed in Lua scripts. /// Component which manages a list of bound objects to be accessed in Lua scripts.
/// </summary> /// </summary>
[ExecuteInEditMode] [ExecuteInEditMode]
public class FungusBindings : MonoBehaviour public class LuaBindings : MonoBehaviour
{ {
/// <summary> /// <summary>
/// Represents a single Unity object (+ optional component) bound to a string key. /// Represents a single Unity object (+ optional component) bound to a string key.

0
Assets/Fungus/FungusScript/Scripts/FungusBindings.cs.meta → Assets/Fungus/FungusScript/Scripts/LuaBindings.cs.meta

0
Assets/Fungus/FungusScript/ExampleScenes/Narrative.unity → Assets/FungusExamples/FungusScript/Narrative.unity

0
Assets/Fungus/FungusScript/ExampleScenes/Narrative.unity.meta → Assets/FungusExamples/FungusScript/Narrative.unity.meta

0
Assets/Fungus/FungusScript/ExampleScenes/Trigger.unity → Assets/FungusExamples/FungusScript/Trigger.unity

0
Assets/Fungus/FungusScript/ExampleScenes/Trigger.unity.meta → Assets/FungusExamples/FungusScript/Trigger.unity.meta

174
Assets/FungusExamples/Sherlock/TheExperiment.unity

@ -3415,12 +3415,12 @@ MonoBehaviour:
m_Script: {fileID: 11500000, guid: 7a334fe2ffb574b3583ff3b18b4792d3, type: 3} m_Script: {fileID: 11500000, guid: 7a334fe2ffb574b3583ff3b18b4792d3, type: 3}
m_Name: m_Name:
m_EditorClassIdentifier: m_EditorClassIdentifier:
version: 1.0 version: 1
scrollPos: {x: 2985.3325, y: 1207.838} scrollPos: {x: 2985.3325, y: 1207.838}
variablesScrollPos: {x: 0, y: 0} variablesScrollPos: {x: 0, y: 0}
variablesExpanded: 1 variablesExpanded: 1
blockViewHeight: 280 blockViewHeight: 280
zoom: 0.98599917 zoom: 1
scrollViewRect: scrollViewRect:
serializedVersion: 2 serializedVersion: 2
x: -4071.385 x: -4071.385
@ -3428,8 +3428,7 @@ MonoBehaviour:
width: 5969.446 width: 5969.446
height: 2818.8503 height: 2818.8503
selectedBlock: {fileID: 1390555440} selectedBlock: {fileID: 1390555440}
selectedCommands: selectedCommands: []
- {fileID: 1390555300}
variables: variables:
- {fileID: 1390555396} - {fileID: 1390555396}
description: 'Example scene from Sherlock: The Game Is On' description: 'Example scene from Sherlock: The Game Is On'
@ -3438,6 +3437,7 @@ MonoBehaviour:
hideComponents: 1 hideComponents: 1
saveSelection: 1 saveSelection: 1
localizationId: localizationId:
showLineNumbers: 0
hideCommands: [] hideCommands: []
--- !u!4 &1390555296 --- !u!4 &1390555296
Transform: Transform:
@ -3476,6 +3476,7 @@ MonoBehaviour:
extendPrevious: 1 extendPrevious: 1
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555298 --- !u!114 &1390555298
MonoBehaviour: MonoBehaviour:
@ -3581,6 +3582,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 0 fadeWhenDone: 0
waitForClick: 0 waitForClick: 0
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555301 --- !u!114 &1390555301
MonoBehaviour: MonoBehaviour:
@ -3619,7 +3621,7 @@ MonoBehaviour:
nodeRect: nodeRect:
serializedVersion: 2 serializedVersion: 2
x: -2429.3325 x: -2429.3325
y: -947.838 y: -948.8522
width: 120 width: 120
height: 40 height: 40
itemId: 95 itemId: 95
@ -3668,7 +3670,7 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
nodeRect: nodeRect:
serializedVersion: 2 serializedVersion: 2
x: -2430.3325 x: -2429.3184
y: -879.838 y: -879.838
width: 120 width: 120
height: 40 height: 40
@ -3728,6 +3730,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 0 waitForClick: 0
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555307 --- !u!114 &1390555307
MonoBehaviour: MonoBehaviour:
@ -3857,6 +3860,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 0 waitForClick: 0
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555312 --- !u!114 &1390555312
MonoBehaviour: MonoBehaviour:
@ -3928,6 +3932,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555314 --- !u!114 &1390555314
MonoBehaviour: MonoBehaviour:
@ -3954,6 +3959,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555315 --- !u!114 &1390555315
MonoBehaviour: MonoBehaviour:
@ -3980,6 +3986,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555316 --- !u!114 &1390555316
MonoBehaviour: MonoBehaviour:
@ -4006,6 +4013,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555317 --- !u!114 &1390555317
MonoBehaviour: MonoBehaviour:
@ -4032,6 +4040,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555318 --- !u!114 &1390555318
MonoBehaviour: MonoBehaviour:
@ -4098,6 +4107,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555321 --- !u!114 &1390555321
MonoBehaviour: MonoBehaviour:
@ -4124,6 +4134,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555322 --- !u!114 &1390555322
MonoBehaviour: MonoBehaviour:
@ -4150,6 +4161,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555323 --- !u!114 &1390555323
MonoBehaviour: MonoBehaviour:
@ -4176,6 +4188,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555324 --- !u!114 &1390555324
MonoBehaviour: MonoBehaviour:
@ -4203,6 +4216,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555325 --- !u!114 &1390555325
MonoBehaviour: MonoBehaviour:
@ -4240,6 +4254,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555327 --- !u!114 &1390555327
MonoBehaviour: MonoBehaviour:
@ -4266,6 +4281,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555328 --- !u!114 &1390555328
MonoBehaviour: MonoBehaviour:
@ -4292,6 +4308,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555329 --- !u!114 &1390555329
MonoBehaviour: MonoBehaviour:
@ -4318,6 +4335,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555330 --- !u!114 &1390555330
MonoBehaviour: MonoBehaviour:
@ -4344,6 +4362,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555331 --- !u!114 &1390555331
MonoBehaviour: MonoBehaviour:
@ -4370,6 +4389,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555332 --- !u!114 &1390555332
MonoBehaviour: MonoBehaviour:
@ -4396,6 +4416,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555333 --- !u!114 &1390555333
MonoBehaviour: MonoBehaviour:
@ -4423,6 +4444,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555334 --- !u!114 &1390555334
MonoBehaviour: MonoBehaviour:
@ -4449,6 +4471,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555335 --- !u!114 &1390555335
MonoBehaviour: MonoBehaviour:
@ -4563,9 +4586,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 1789234734} spriteRenderer: {fileID: 1789234734}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 0} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 0}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555340 --- !u!114 &1390555340
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -4582,9 +4611,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 1789234734} spriteRenderer: {fileID: 1789234734}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 1} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 1}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555341 --- !u!114 &1390555341
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -4693,11 +4728,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 2 control: 2
audioSource: {fileID: 236204401} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 236204401}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 1 fadeDuration: 1
waitUntilFinished: 0 waitUntilFinished: 0
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555345 --- !u!114 &1390555345
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -4878,6 +4916,7 @@ MonoBehaviour:
extendPrevious: 1 extendPrevious: 1
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555351 --- !u!114 &1390555351
MonoBehaviour: MonoBehaviour:
@ -5025,6 +5064,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555356 --- !u!114 &1390555356
MonoBehaviour: MonoBehaviour:
@ -5071,9 +5111,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 1612042692} spriteRenderer: {fileID: 1612042692}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 1} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 1}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555358 --- !u!114 &1390555358
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5117,9 +5163,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 884427801} spriteRenderer: {fileID: 884427801}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 1} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 1}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555360 --- !u!114 &1390555360
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5134,7 +5186,10 @@ MonoBehaviour:
itemId: 83 itemId: 83
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
duration: 3 _duration:
floatRef: {fileID: 0}
floatVal: 3
durationOLD: 0
--- !u!114 &1390555361 --- !u!114 &1390555361
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5150,9 +5205,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 1612042692} spriteRenderer: {fileID: 1612042692}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 0} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 0}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555362 --- !u!114 &1390555362
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5284,6 +5345,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555367 --- !u!114 &1390555367
MonoBehaviour: MonoBehaviour:
@ -5319,11 +5381,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 2 control: 2
audioSource: {fileID: 236204401} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 236204401}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 1 fadeDuration: 1
waitUntilFinished: 0 waitUntilFinished: 0
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555369 --- !u!114 &1390555369
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5348,6 +5413,7 @@ MonoBehaviour:
extendPrevious: 0 extendPrevious: 0
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555370 --- !u!114 &1390555370
MonoBehaviour: MonoBehaviour:
@ -5691,6 +5757,7 @@ MonoBehaviour:
extendPrevious: 1 extendPrevious: 1
fadeWhenDone: 1 fadeWhenDone: 1
waitForClick: 1 waitForClick: 1
stopVoiceover: 1
setSayDialog: {fileID: 0} setSayDialog: {fileID: 0}
--- !u!114 &1390555382 --- !u!114 &1390555382
MonoBehaviour: MonoBehaviour:
@ -5827,9 +5894,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 31336594} spriteRenderer: {fileID: 31336594}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 1} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 1}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555387 --- !u!114 &1390555387
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5845,9 +5918,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 884427801} spriteRenderer: {fileID: 884427801}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 0} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 0}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555388 --- !u!114 &1390555388
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5863,9 +5942,15 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 31336594} spriteRenderer: {fileID: 31336594}
duration: 1 _duration:
targetColor: {r: 1, g: 1, b: 1, a: 0} floatRef: {fileID: 0}
floatVal: 1
_targetColor:
colorRef: {fileID: 0}
colorVal: {r: 1, g: 1, b: 1, a: 0}
waitUntilFinished: 0 waitUntilFinished: 0
durationOLD: 0
targetColorOLD: {r: 0, g: 0, b: 0, a: 0}
--- !u!114 &1390555389 --- !u!114 &1390555389
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5881,11 +5966,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 1 control: 1
audioSource: {fileID: 236204401} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 236204401}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 1 fadeDuration: 1
waitUntilFinished: 0 waitUntilFinished: 0
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555390 --- !u!114 &1390555390
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5901,11 +5989,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 0 control: 0
audioSource: {fileID: 720879693} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 720879693}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 0 fadeDuration: 0
waitUntilFinished: 1 waitUntilFinished: 1
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555391 --- !u!114 &1390555391
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5921,11 +6012,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 2 control: 2
audioSource: {fileID: 236204401} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 236204401}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 1 fadeDuration: 1
waitUntilFinished: 1 waitUntilFinished: 1
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555392 --- !u!114 &1390555392
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5941,11 +6035,14 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
control: 1 control: 1
audioSource: {fileID: 236204401} _audioSource:
audioSourceRef: {fileID: 0}
audioSourceVal: {fileID: 236204401}
startVolume: 1 startVolume: 1
endVolume: 1 endVolume: 1
fadeDuration: 0 fadeDuration: 0
waitUntilFinished: 0 waitUntilFinished: 0
audioSourceOLD: {fileID: 0}
--- !u!114 &1390555393 --- !u!114 &1390555393
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5961,8 +6058,11 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 884427801} spriteRenderer: {fileID: 884427801}
visible: 0 _visible:
booleanRef: {fileID: 0}
booleanVal: 0
affectChildren: 1 affectChildren: 1
visibleOLD: 0
--- !u!114 &1390555394 --- !u!114 &1390555394
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5978,8 +6078,11 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 31336594} spriteRenderer: {fileID: 31336594}
visible: 0 _visible:
booleanRef: {fileID: 0}
booleanVal: 0
affectChildren: 1 affectChildren: 1
visibleOLD: 0
--- !u!114 &1390555395 --- !u!114 &1390555395
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -5995,8 +6098,11 @@ MonoBehaviour:
errorMessage: errorMessage:
indentLevel: 0 indentLevel: 0
spriteRenderer: {fileID: 1612042692} spriteRenderer: {fileID: 1612042692}
visible: 0 _visible:
booleanRef: {fileID: 0}
booleanVal: 0
affectChildren: 1 affectChildren: 1
visibleOLD: 0
--- !u!114 &1390555396 --- !u!114 &1390555396
MonoBehaviour: MonoBehaviour:
m_ObjectHideFlags: 2 m_ObjectHideFlags: 2
@ -6025,8 +6131,8 @@ MonoBehaviour:
m_EditorClassIdentifier: m_EditorClassIdentifier:
nodeRect: nodeRect:
serializedVersion: 2 serializedVersion: 2
x: -2599.42 x: -2598.4058
y: -1010.35046 y: -1009.3363
width: 142 width: 142
height: 40 height: 40
itemId: 93 itemId: 93

Loading…
Cancel
Save