com.amanotes.gdk 0.1.3

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.
Files changed (64) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/CHANGELOG.md.meta +7 -0
  3. package/Editor/AmaGDK.Editor.asmdef +18 -0
  4. package/Editor/AmaGDK.Editor.asmdef.meta +7 -0
  5. package/Editor/AmaGDKEditor.cs +210 -0
  6. package/Editor/AmaGDKEditor.cs.meta +11 -0
  7. package/Editor.meta +8 -0
  8. package/LICENSE.md +7 -0
  9. package/LICENSE.md.meta +7 -0
  10. package/Packages/AmaGDKConfig.unitypackage +0 -0
  11. package/Packages/AmaGDKConfig.unitypackage.meta +8 -0
  12. package/Packages/AppsflyerAdapter_v6.5.4.unitypackage +0 -0
  13. package/Packages/AppsflyerAdapter_v6.5.4.unitypackage.meta +7 -0
  14. package/Packages/FirebaseAnalyticsAdapter_v9.1.0.unitypackage +0 -0
  15. package/Packages/FirebaseAnalyticsAdapter_v9.1.0.unitypackage.meta +7 -0
  16. package/Packages.meta +8 -0
  17. package/README.md +44 -0
  18. package/README.md.meta +7 -0
  19. package/Runtime/AmaGDK.Adapters.cs +45 -0
  20. package/Runtime/AmaGDK.Adapters.cs.meta +11 -0
  21. package/Runtime/AmaGDK.Analytics.cs +454 -0
  22. package/Runtime/AmaGDK.Analytics.cs.meta +11 -0
  23. package/Runtime/AmaGDK.Config.cs +13 -0
  24. package/Runtime/AmaGDK.Config.cs.meta +11 -0
  25. package/Runtime/AmaGDK.Internal.cs +133 -0
  26. package/Runtime/AmaGDK.Internal.cs.meta +11 -0
  27. package/Runtime/AmaGDK.UserProfile.cs +41 -0
  28. package/Runtime/AmaGDK.UserProfile.cs.meta +11 -0
  29. package/Runtime/AmaGDK.Utils.cs +121 -0
  30. package/Runtime/AmaGDK.Utils.cs.meta +11 -0
  31. package/Runtime/AmaGDK.asmdef +14 -0
  32. package/Runtime/AmaGDK.asmdef.meta +7 -0
  33. package/Runtime/AmaGDK.cs +159 -0
  34. package/Runtime/AmaGDK.cs.meta +11 -0
  35. package/Runtime/AmaGDK.prefab +46 -0
  36. package/Runtime/AmaGDK.prefab.meta +8 -0
  37. package/Runtime/AssemblyInfo.cs +8 -0
  38. package/Runtime/AssemblyInfo.cs.meta +11 -0
  39. package/Runtime/Interfaces/Analytics/IAnalytics.cs +6 -0
  40. package/Runtime/Interfaces/Analytics/IAnalytics.cs.meta +11 -0
  41. package/Runtime/Interfaces/Analytics.meta +8 -0
  42. package/Runtime/Interfaces.meta +8 -0
  43. package/Runtime.meta +8 -0
  44. package/Tests/Editor/AmaGDK.Editor.Test.asmdef +23 -0
  45. package/Tests/Editor/AmaGDK.Editor.Test.asmdef.meta +7 -0
  46. package/Tests/Editor.meta +8 -0
  47. package/Tests/Runtime/AmaGDK.Test.asmdef +20 -0
  48. package/Tests/Runtime/AmaGDK.Test.asmdef.meta +7 -0
  49. package/Tests/Runtime/AmaGDKCoreTest.cs +229 -0
  50. package/Tests/Runtime/AmaGDKCoreTest.cs.meta +11 -0
  51. package/Tests/Runtime/MigrationTest.cs +165 -0
  52. package/Tests/Runtime/MigrationTest.cs.meta +11 -0
  53. package/Tests/Runtime.meta +8 -0
  54. package/Tests/TestScene00.unity +125 -0
  55. package/Tests/TestScene00.unity.meta +7 -0
  56. package/Tests/TestScene01.unity +199 -0
  57. package/Tests/TestScene01.unity.meta +7 -0
  58. package/Tests/TestScene02.unity +209 -0
  59. package/Tests/TestScene02.unity.meta +7 -0
  60. package/Tests/TestScene03.unity +599 -0
  61. package/Tests/TestScene03.unity.meta +7 -0
  62. package/Tests.meta +8 -0
  63. package/package.json +18 -0
  64. package/package.json.meta +7 -0
@@ -0,0 +1,199 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!29 &1
4
+ OcclusionCullingSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_OcclusionBakeSettings:
8
+ smallestOccluder: 5
9
+ smallestHole: 0.25
10
+ backfaceThreshold: 100
11
+ m_SceneGUID: 00000000000000000000000000000000
12
+ m_OcclusionCullingData: {fileID: 0}
13
+ --- !u!104 &2
14
+ RenderSettings:
15
+ m_ObjectHideFlags: 0
16
+ serializedVersion: 9
17
+ m_Fog: 0
18
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19
+ m_FogMode: 3
20
+ m_FogDensity: 0.01
21
+ m_LinearFogStart: 0
22
+ m_LinearFogEnd: 300
23
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
24
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26
+ m_AmbientIntensity: 1
27
+ m_AmbientMode: 0
28
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29
+ m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
30
+ m_HaloStrength: 0.5
31
+ m_FlareStrength: 1
32
+ m_FlareFadeSpeed: 3
33
+ m_HaloTexture: {fileID: 0}
34
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35
+ m_DefaultReflectionMode: 0
36
+ m_DefaultReflectionResolution: 128
37
+ m_ReflectionBounces: 1
38
+ m_ReflectionIntensity: 1
39
+ m_CustomReflection: {fileID: 0}
40
+ m_Sun: {fileID: 0}
41
+ m_IndirectSpecularColor: {r: 0.37325686, g: 0.38087192, b: 0.3588578, a: 1}
42
+ m_UseRadianceAmbientProbe: 0
43
+ --- !u!157 &3
44
+ LightmapSettings:
45
+ m_ObjectHideFlags: 0
46
+ serializedVersion: 12
47
+ m_GIWorkflowMode: 1
48
+ m_GISettings:
49
+ serializedVersion: 2
50
+ m_BounceScale: 1
51
+ m_IndirectOutputScale: 1
52
+ m_AlbedoBoost: 1
53
+ m_EnvironmentLightingMode: 0
54
+ m_EnableBakedLightmaps: 1
55
+ m_EnableRealtimeLightmaps: 0
56
+ m_LightmapEditorSettings:
57
+ serializedVersion: 12
58
+ m_Resolution: 2
59
+ m_BakeResolution: 40
60
+ m_AtlasSize: 1024
61
+ m_AO: 0
62
+ m_AOMaxDistance: 1
63
+ m_CompAOExponent: 1
64
+ m_CompAOExponentDirect: 0
65
+ m_ExtractAmbientOcclusion: 0
66
+ m_Padding: 2
67
+ m_LightmapParameters: {fileID: 0}
68
+ m_LightmapsBakeMode: 1
69
+ m_TextureCompression: 1
70
+ m_FinalGather: 0
71
+ m_FinalGatherFiltering: 1
72
+ m_FinalGatherRayCount: 256
73
+ m_ReflectionCompression: 2
74
+ m_MixedBakeMode: 2
75
+ m_BakeBackend: 1
76
+ m_PVRSampling: 1
77
+ m_PVRDirectSampleCount: 32
78
+ m_PVRSampleCount: 512
79
+ m_PVRBounces: 2
80
+ m_PVREnvironmentSampleCount: 256
81
+ m_PVREnvironmentReferencePointCount: 2048
82
+ m_PVRFilteringMode: 1
83
+ m_PVRDenoiserTypeDirect: 1
84
+ m_PVRDenoiserTypeIndirect: 1
85
+ m_PVRDenoiserTypeAO: 1
86
+ m_PVRFilterTypeDirect: 0
87
+ m_PVRFilterTypeIndirect: 0
88
+ m_PVRFilterTypeAO: 0
89
+ m_PVREnvironmentMIS: 1
90
+ m_PVRCulling: 1
91
+ m_PVRFilteringGaussRadiusDirect: 1
92
+ m_PVRFilteringGaussRadiusIndirect: 5
93
+ m_PVRFilteringGaussRadiusAO: 2
94
+ m_PVRFilteringAtrousPositionSigmaDirect: 0.5
95
+ m_PVRFilteringAtrousPositionSigmaIndirect: 2
96
+ m_PVRFilteringAtrousPositionSigmaAO: 1
97
+ m_ExportTrainingData: 0
98
+ m_TrainingDataDestination: TrainingData
99
+ m_LightProbeSampleCountMultiplier: 4
100
+ m_LightingDataAsset: {fileID: 0}
101
+ m_LightingSettings: {fileID: 0}
102
+ --- !u!196 &4
103
+ NavMeshSettings:
104
+ serializedVersion: 2
105
+ m_ObjectHideFlags: 0
106
+ m_BuildSettings:
107
+ serializedVersion: 2
108
+ agentTypeID: 0
109
+ agentRadius: 0.5
110
+ agentHeight: 2
111
+ agentSlope: 45
112
+ agentClimb: 0.4
113
+ ledgeDropHeight: 0
114
+ maxJumpAcrossDistance: 0
115
+ minRegionArea: 2
116
+ manualCellSize: 0
117
+ cellSize: 0.16666667
118
+ manualTileSize: 0
119
+ tileSize: 256
120
+ accuratePlacement: 0
121
+ maxJobWorkers: 0
122
+ preserveTilesOutsideBounds: 0
123
+ debug:
124
+ m_Flags: 0
125
+ m_NavMeshData: {fileID: 0}
126
+ --- !u!1001 &1532963377
127
+ PrefabInstance:
128
+ m_ObjectHideFlags: 0
129
+ serializedVersion: 2
130
+ m_Modification:
131
+ m_TransformParent: {fileID: 0}
132
+ m_Modifications:
133
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
134
+ type: 3}
135
+ propertyPath: m_RootOrder
136
+ value: 0
137
+ objectReference: {fileID: 0}
138
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
139
+ type: 3}
140
+ propertyPath: m_LocalPosition.x
141
+ value: 0
142
+ objectReference: {fileID: 0}
143
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
144
+ type: 3}
145
+ propertyPath: m_LocalPosition.y
146
+ value: 0
147
+ objectReference: {fileID: 0}
148
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
149
+ type: 3}
150
+ propertyPath: m_LocalPosition.z
151
+ value: 0
152
+ objectReference: {fileID: 0}
153
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
154
+ type: 3}
155
+ propertyPath: m_LocalRotation.w
156
+ value: 1
157
+ objectReference: {fileID: 0}
158
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
159
+ type: 3}
160
+ propertyPath: m_LocalRotation.x
161
+ value: 0
162
+ objectReference: {fileID: 0}
163
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
164
+ type: 3}
165
+ propertyPath: m_LocalRotation.y
166
+ value: 0
167
+ objectReference: {fileID: 0}
168
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
169
+ type: 3}
170
+ propertyPath: m_LocalRotation.z
171
+ value: 0
172
+ objectReference: {fileID: 0}
173
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
174
+ type: 3}
175
+ propertyPath: m_LocalEulerAnglesHint.x
176
+ value: 0
177
+ objectReference: {fileID: 0}
178
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
179
+ type: 3}
180
+ propertyPath: m_LocalEulerAnglesHint.y
181
+ value: 0
182
+ objectReference: {fileID: 0}
183
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
184
+ type: 3}
185
+ propertyPath: m_LocalEulerAnglesHint.z
186
+ value: 0
187
+ objectReference: {fileID: 0}
188
+ - target: {fileID: 6540055444683718090, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
189
+ type: 3}
190
+ propertyPath: m_Name
191
+ value: AmaSDK5-scene01
192
+ objectReference: {fileID: 0}
193
+ - target: {fileID: 6540055444683718090, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
194
+ type: 3}
195
+ propertyPath: m_IsActive
196
+ value: 1
197
+ objectReference: {fileID: 0}
198
+ m_RemovedComponents: []
199
+ m_SourcePrefab: {fileID: 100100000, guid: 43c132c3f4fe3438487d2fb2e40aaa5c, type: 3}
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: f33fe98542e284f8eb443dc1acab5da9
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant:
@@ -0,0 +1,209 @@
1
+ %YAML 1.1
2
+ %TAG !u! tag:unity3d.com,2011:
3
+ --- !u!29 &1
4
+ OcclusionCullingSettings:
5
+ m_ObjectHideFlags: 0
6
+ serializedVersion: 2
7
+ m_OcclusionBakeSettings:
8
+ smallestOccluder: 5
9
+ smallestHole: 0.25
10
+ backfaceThreshold: 100
11
+ m_SceneGUID: 00000000000000000000000000000000
12
+ m_OcclusionCullingData: {fileID: 0}
13
+ --- !u!104 &2
14
+ RenderSettings:
15
+ m_ObjectHideFlags: 0
16
+ serializedVersion: 9
17
+ m_Fog: 0
18
+ m_FogColor: {r: 0.5, g: 0.5, b: 0.5, a: 1}
19
+ m_FogMode: 3
20
+ m_FogDensity: 0.01
21
+ m_LinearFogStart: 0
22
+ m_LinearFogEnd: 300
23
+ m_AmbientSkyColor: {r: 0.212, g: 0.227, b: 0.259, a: 1}
24
+ m_AmbientEquatorColor: {r: 0.114, g: 0.125, b: 0.133, a: 1}
25
+ m_AmbientGroundColor: {r: 0.047, g: 0.043, b: 0.035, a: 1}
26
+ m_AmbientIntensity: 1
27
+ m_AmbientMode: 0
28
+ m_SubtractiveShadowColor: {r: 0.42, g: 0.478, b: 0.627, a: 1}
29
+ m_SkyboxMaterial: {fileID: 10304, guid: 0000000000000000f000000000000000, type: 0}
30
+ m_HaloStrength: 0.5
31
+ m_FlareStrength: 1
32
+ m_FlareFadeSpeed: 3
33
+ m_HaloTexture: {fileID: 0}
34
+ m_SpotCookie: {fileID: 10001, guid: 0000000000000000e000000000000000, type: 0}
35
+ m_DefaultReflectionMode: 0
36
+ m_DefaultReflectionResolution: 128
37
+ m_ReflectionBounces: 1
38
+ m_ReflectionIntensity: 1
39
+ m_CustomReflection: {fileID: 0}
40
+ m_Sun: {fileID: 0}
41
+ m_IndirectSpecularColor: {r: 0.37325686, g: 0.38087192, b: 0.3588578, a: 1}
42
+ m_UseRadianceAmbientProbe: 0
43
+ --- !u!157 &3
44
+ LightmapSettings:
45
+ m_ObjectHideFlags: 0
46
+ serializedVersion: 12
47
+ m_GIWorkflowMode: 1
48
+ m_GISettings:
49
+ serializedVersion: 2
50
+ m_BounceScale: 1
51
+ m_IndirectOutputScale: 1
52
+ m_AlbedoBoost: 1
53
+ m_EnvironmentLightingMode: 0
54
+ m_EnableBakedLightmaps: 1
55
+ m_EnableRealtimeLightmaps: 0
56
+ m_LightmapEditorSettings:
57
+ serializedVersion: 12
58
+ m_Resolution: 2
59
+ m_BakeResolution: 40
60
+ m_AtlasSize: 1024
61
+ m_AO: 0
62
+ m_AOMaxDistance: 1
63
+ m_CompAOExponent: 1
64
+ m_CompAOExponentDirect: 0
65
+ m_ExtractAmbientOcclusion: 0
66
+ m_Padding: 2
67
+ m_LightmapParameters: {fileID: 0}
68
+ m_LightmapsBakeMode: 1
69
+ m_TextureCompression: 1
70
+ m_FinalGather: 0
71
+ m_FinalGatherFiltering: 1
72
+ m_FinalGatherRayCount: 256
73
+ m_ReflectionCompression: 2
74
+ m_MixedBakeMode: 2
75
+ m_BakeBackend: 1
76
+ m_PVRSampling: 1
77
+ m_PVRDirectSampleCount: 32
78
+ m_PVRSampleCount: 512
79
+ m_PVRBounces: 2
80
+ m_PVREnvironmentSampleCount: 256
81
+ m_PVREnvironmentReferencePointCount: 2048
82
+ m_PVRFilteringMode: 1
83
+ m_PVRDenoiserTypeDirect: 1
84
+ m_PVRDenoiserTypeIndirect: 1
85
+ m_PVRDenoiserTypeAO: 1
86
+ m_PVRFilterTypeDirect: 0
87
+ m_PVRFilterTypeIndirect: 0
88
+ m_PVRFilterTypeAO: 0
89
+ m_PVREnvironmentMIS: 1
90
+ m_PVRCulling: 1
91
+ m_PVRFilteringGaussRadiusDirect: 1
92
+ m_PVRFilteringGaussRadiusIndirect: 5
93
+ m_PVRFilteringGaussRadiusAO: 2
94
+ m_PVRFilteringAtrousPositionSigmaDirect: 0.5
95
+ m_PVRFilteringAtrousPositionSigmaIndirect: 2
96
+ m_PVRFilteringAtrousPositionSigmaAO: 1
97
+ m_ExportTrainingData: 0
98
+ m_TrainingDataDestination: TrainingData
99
+ m_LightProbeSampleCountMultiplier: 4
100
+ m_LightingDataAsset: {fileID: 0}
101
+ m_LightingSettings: {fileID: 0}
102
+ --- !u!196 &4
103
+ NavMeshSettings:
104
+ serializedVersion: 2
105
+ m_ObjectHideFlags: 0
106
+ m_BuildSettings:
107
+ serializedVersion: 2
108
+ agentTypeID: 0
109
+ agentRadius: 0.5
110
+ agentHeight: 2
111
+ agentSlope: 45
112
+ agentClimb: 0.4
113
+ ledgeDropHeight: 0
114
+ maxJumpAcrossDistance: 0
115
+ minRegionArea: 2
116
+ manualCellSize: 0
117
+ cellSize: 0.16666667
118
+ manualTileSize: 0
119
+ tileSize: 256
120
+ accuratePlacement: 0
121
+ maxJobWorkers: 0
122
+ preserveTilesOutsideBounds: 0
123
+ debug:
124
+ m_Flags: 0
125
+ m_NavMeshData: {fileID: 0}
126
+ --- !u!1001 &1028994678
127
+ PrefabInstance:
128
+ m_ObjectHideFlags: 0
129
+ serializedVersion: 2
130
+ m_Modification:
131
+ m_TransformParent: {fileID: 0}
132
+ m_Modifications:
133
+ - target: {fileID: 1352151185728716944, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
134
+ type: 3}
135
+ propertyPath: autoInit
136
+ value: 0
137
+ objectReference: {fileID: 0}
138
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
139
+ type: 3}
140
+ propertyPath: m_RootOrder
141
+ value: 0
142
+ objectReference: {fileID: 0}
143
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
144
+ type: 3}
145
+ propertyPath: m_LocalPosition.x
146
+ value: 0
147
+ objectReference: {fileID: 0}
148
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
149
+ type: 3}
150
+ propertyPath: m_LocalPosition.y
151
+ value: 0
152
+ objectReference: {fileID: 0}
153
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
154
+ type: 3}
155
+ propertyPath: m_LocalPosition.z
156
+ value: 0
157
+ objectReference: {fileID: 0}
158
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
159
+ type: 3}
160
+ propertyPath: m_LocalRotation.w
161
+ value: 1
162
+ objectReference: {fileID: 0}
163
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
164
+ type: 3}
165
+ propertyPath: m_LocalRotation.x
166
+ value: 0
167
+ objectReference: {fileID: 0}
168
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
169
+ type: 3}
170
+ propertyPath: m_LocalRotation.y
171
+ value: 0
172
+ objectReference: {fileID: 0}
173
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
174
+ type: 3}
175
+ propertyPath: m_LocalRotation.z
176
+ value: 0
177
+ objectReference: {fileID: 0}
178
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
179
+ type: 3}
180
+ propertyPath: m_LocalEulerAnglesHint.x
181
+ value: 0
182
+ objectReference: {fileID: 0}
183
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
184
+ type: 3}
185
+ propertyPath: m_LocalEulerAnglesHint.y
186
+ value: 0
187
+ objectReference: {fileID: 0}
188
+ - target: {fileID: 6540055444683718088, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
189
+ type: 3}
190
+ propertyPath: m_LocalEulerAnglesHint.z
191
+ value: 0
192
+ objectReference: {fileID: 0}
193
+ - target: {fileID: 6540055444683718090, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
194
+ type: 3}
195
+ propertyPath: m_Name
196
+ value: AmaSDK5-scene02
197
+ objectReference: {fileID: 0}
198
+ - target: {fileID: 6540055444683718090, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
199
+ type: 3}
200
+ propertyPath: m_IsActive
201
+ value: 1
202
+ objectReference: {fileID: 0}
203
+ - target: {fileID: 6540055444683718091, guid: 43c132c3f4fe3438487d2fb2e40aaa5c,
204
+ type: 3}
205
+ propertyPath: autoInit
206
+ value: 0
207
+ objectReference: {fileID: 0}
208
+ m_RemovedComponents: []
209
+ m_SourcePrefab: {fileID: 100100000, guid: 43c132c3f4fe3438487d2fb2e40aaa5c, type: 3}
@@ -0,0 +1,7 @@
1
+ fileFormatVersion: 2
2
+ guid: 49ce62139381642bf9b932b5524c7ce6
3
+ DefaultImporter:
4
+ externalObjects: {}
5
+ userData:
6
+ assetBundleName:
7
+ assetBundleVariant: