fr.jeanf.eventsystem 0.3.0 → 0.3.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.attestation.p7m +0 -0
- package/Editor/EventSystemDebuggerWindow.cs +4 -4
- package/package.json +2 -2
- package/Samples~/PlayerChannels/ChangedControlSchemeChannelSO.asset +0 -16
- package/Samples~/PlayerChannels/ChangedControlSchemeChannelSO.asset.meta +0 -8
- package/Samples~/PlayerChannels/GeneralPause.asset +0 -16
- package/Samples~/PlayerChannels/GeneralPause.asset.meta +0 -8
- package/Samples~/PlayerChannels/GloveState Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/GloveState Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/Grab/GrabCount Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/Grab/GrabCount Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/HMDState Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/HMDState Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/MainMenuState Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/MainMenuState Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/MouseLookCameraReset Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/MouseLookCameraReset Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/MouseLookState Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/MouseLookState Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/ObjectDroppedChannelSO.asset +0 -16
- package/Samples~/PlayerChannels/ObjectDroppedChannelSO.asset.meta +0 -8
- package/Samples~/PlayerChannels/PoseEvent/LeftHandIsPointingEventChannel SO.asset +0 -16
- package/Samples~/PlayerChannels/PoseEvent/LeftHandIsPointingEventChannel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/PoseEvent/RightHandIsPointingEventChannel SO.asset +0 -16
- package/Samples~/PlayerChannels/PoseEvent/RightHandIsPointingEventChannel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/PrimaryItemState Event Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/PrimaryItemState Event Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/PrimaryItemState Event VR_Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/PrimaryItemState Event VR_Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/PrimaryItemStateWithUsedHandChannelSO.asset +0 -16
- package/Samples~/PlayerChannels/PrimaryItemStateWithUsedHandChannelSO.asset.meta +0 -8
- package/Samples~/PlayerChannels/SceneIsLoading EventChannel SO.asset +0 -16
- package/Samples~/PlayerChannels/SceneIsLoading EventChannel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/Teleport Event Object Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/Teleport Event Object Channel SO.asset.meta +0 -8
- package/Samples~/PlayerChannels/Teleport Event Player Channel SO.asset +0 -16
- package/Samples~/PlayerChannels/Teleport Event Player Channel SO.asset.meta +0 -8
package/.attestation.p7m
CHANGED
|
Binary file
|
|
@@ -237,7 +237,7 @@ namespace jeanf.EventSystem.EditorTools
|
|
|
237
237
|
GUILayout.Space(16);
|
|
238
238
|
GUILayout.Label(isCanonical ? "[CANONICAL]" : "[duplicate]",
|
|
239
239
|
isCanonical ? EditorStyles.miniBoldLabel : EditorStyles.miniLabel, GUILayout.Width(86));
|
|
240
|
-
GUILayout.Label($"id {so.
|
|
240
|
+
GUILayout.Label($"id {so.GetEntityId()}", EditorStyles.miniLabel, GUILayout.Width(96));
|
|
241
241
|
GUILayout.Label($"thread {rec.firstSeenThreadId}" + (rec.seenOffMainThread ? " ⚠" : ""),
|
|
242
242
|
EditorStyles.miniLabel, GUILayout.Width(90));
|
|
243
243
|
if (GUILayout.Button("Ping asset", EditorStyles.miniButton, GUILayout.Width(74)))
|
|
@@ -341,14 +341,14 @@ namespace jeanf.EventSystem.EditorTools
|
|
|
341
341
|
List<PubInfo> GetPublishers(Group g)
|
|
342
342
|
{
|
|
343
343
|
var list = new List<PubInfo>();
|
|
344
|
-
var seen = new HashSet<
|
|
344
|
+
var seen = new HashSet<EntityId>();
|
|
345
345
|
|
|
346
346
|
foreach (var pr in EventDiagnostics.SnapshotPublishers(g.groupKey))
|
|
347
347
|
{
|
|
348
348
|
Component c = null;
|
|
349
349
|
pr.component?.TryGetTarget(out c);
|
|
350
350
|
if (c == null) continue;
|
|
351
|
-
if (!seen.Add(c.
|
|
351
|
+
if (!seen.Add(c.GetEntityId())) continue;
|
|
352
352
|
list.Add(new PubInfo { comp = c, label = pr.typeName });
|
|
353
353
|
}
|
|
354
354
|
|
|
@@ -357,7 +357,7 @@ namespace jeanf.EventSystem.EditorTools
|
|
|
357
357
|
foreach (var c in scanned)
|
|
358
358
|
{
|
|
359
359
|
if (c == null) continue;
|
|
360
|
-
if (!seen.Add(c.
|
|
360
|
+
if (!seen.Add(c.GetEntityId())) continue;
|
|
361
361
|
list.Add(new PubInfo { comp = c, label = c.GetType().Name });
|
|
362
362
|
}
|
|
363
363
|
}
|
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "fr.jeanf.eventsystem",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.2",
|
|
4
4
|
"displayName": "Event System",
|
|
5
5
|
"description": "This package contains a basic Event System based on Scriptable Objects as communication medium",
|
|
6
6
|
"unity": "2021.3",
|
|
7
7
|
"repository": {
|
|
8
8
|
"url": "https://github.com/lejeanf/EventSystem",
|
|
9
9
|
"type": "git",
|
|
10
|
-
"revision": "
|
|
10
|
+
"revision": "6bccfa21afba2ac213ddd5e1e6e86d375f7f6808"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
13
|
"jeanf",
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: d84ad29ba75bd634eb5eda8abf406faf, type: 3}
|
|
13
|
-
m_Name: ChangedControlSchemeChannelSO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: GeneralPause
|
|
14
|
-
m_EditorClassIdentifier: jeanf.eventsystem::jeanf.EventSystem.BoolEventChannelSO
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: GloveState Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: 915737b55ba9fa344b3172aac9107aea, type: 3}
|
|
13
|
-
m_Name: GrabCount Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: HMDState Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: MainMenuState Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: d84ad29ba75bd634eb5eda8abf406faf, type: 3}
|
|
13
|
-
m_Name: MouseLookCameraReset Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: MouseLookState Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: da72c923835d3574bb0b2c98541984c3, type: 3}
|
|
13
|
-
m_Name: ObjectDroppedChannelSO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: LeftHandIsPointingEventChannel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: RightHandIsPointingEventChannel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: PrimaryItemState Event Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: PrimaryItemState Event VR_Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: b842bdeec62cc754093c6a5120ac1107, type: 3}
|
|
13
|
-
m_Name: PrimaryItemStateWithUsedHandChannelSO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: e0ed7a8546959a8479bb135ed3cf5fc1, type: 3}
|
|
13
|
-
m_Name: SceneIsLoading EventChannel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: 1934f43c6c0f2644a91b0c2f8506674b, type: 3}
|
|
13
|
-
m_Name: Teleport Event Object Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
%YAML 1.1
|
|
2
|
-
%TAG !u! tag:unity3d.com,2011:
|
|
3
|
-
--- !u!114 &11400000
|
|
4
|
-
MonoBehaviour:
|
|
5
|
-
m_ObjectHideFlags: 0
|
|
6
|
-
m_CorrespondingSourceObject: {fileID: 0}
|
|
7
|
-
m_PrefabInstance: {fileID: 0}
|
|
8
|
-
m_PrefabAsset: {fileID: 0}
|
|
9
|
-
m_GameObject: {fileID: 0}
|
|
10
|
-
m_Enabled: 1
|
|
11
|
-
m_EditorHideFlags: 0
|
|
12
|
-
m_Script: {fileID: 11500000, guid: 1934f43c6c0f2644a91b0c2f8506674b, type: 3}
|
|
13
|
-
m_Name: Teleport Event Player Channel SO
|
|
14
|
-
m_EditorClassIdentifier:
|
|
15
|
-
_guid:
|
|
16
|
-
description:
|