-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathInitialModuleUI.cs
More file actions
401 lines (357 loc) · 22.2 KB
/
InitialModuleUI.cs
File metadata and controls
401 lines (357 loc) · 22.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
// Unity C# reference source
// Copyright (c) Unity Technologies. For terms of use, see
// https://unity3d.com/legal/licenses/Unity_Reference_Only_License
using UnityEngine;
using System.Linq;
namespace UnityEditor
{
internal class InitialModuleUI : ModuleUI
{
public SerializedProperty m_LengthInSec;
public SerializedProperty m_Looping;
public SerializedProperty m_Prewarm;
public SerializedMinMaxCurve m_StartDelay;
public SerializedProperty m_PlayOnAwake;
public SerializedProperty m_SimulationSpace;
public SerializedProperty m_CustomSimulationSpace;
public SerializedProperty m_SimulationSpeed;
public SerializedProperty m_UseUnscaledTime;
public SerializedProperty m_ScalingMode;
public SerializedMinMaxCurve m_LifeTime;
public SerializedMinMaxCurve m_Speed;
public SerializedMinMaxGradient m_Color;
public SerializedProperty m_Size3D;
public SerializedMinMaxCurve m_SizeX;
public SerializedMinMaxCurve m_SizeY;
public SerializedMinMaxCurve m_SizeZ;
public SerializedProperty m_Rotation3D;
public SerializedMinMaxCurve m_RotationX;
public SerializedMinMaxCurve m_RotationY;
public SerializedMinMaxCurve m_RotationZ;
public SerializedProperty m_RandomizeRotationDirection;
public SerializedProperty m_GravitySource;
public SerializedMinMaxCurve m_GravityModifier;
public SerializedProperty m_EmitterVelocity;
public SerializedProperty m_EmitterVelocityMode;
public SerializedProperty m_MaxNumParticles;
public SerializedProperty m_AutoRandomSeed;
public SerializedProperty m_RandomSeed;
public SerializedProperty m_StopAction;
public SerializedProperty m_CullingMode;
public SerializedProperty m_RingBufferMode;
public SerializedProperty m_RingBufferLoopRange;
class Texts
{
public GUIContent duration = EditorGUIUtility.TrTextContent("Duration", "The length of time the Particle System is emitting particles. If the system is looping, this indicates the length of one cycle.");
public GUIContent looping = EditorGUIUtility.TrTextContent("Looping", "If true, the emission cycle will repeat after the duration.");
public GUIContent prewarm = EditorGUIUtility.TrTextContent("Prewarm", "When played, a prewarmed system will be in a state as if it had emitted one loop cycle. Can only be used if the system is looping.");
public GUIContent startDelay = EditorGUIUtility.TrTextContent("Start Delay", "Delay in seconds that this Particle System will wait before emitting particles. Cannot be used together with a prewarmed looping system.");
public GUIContent maxParticles = EditorGUIUtility.TrTextContent("Max Particles", "The number of particles in the system will be limited by this number. Emission will be temporarily halted if this is reached.");
public GUIContent lifetime = EditorGUIUtility.TrTextContent("Start Lifetime", "Start lifetime in seconds, particle will die when its lifetime reaches 0.");
public GUIContent speed = EditorGUIUtility.TrTextContent("Start Speed", "The start speed of particles, applied in the starting direction.");
public GUIContent color = EditorGUIUtility.TrTextContent("Start Color", "The start color of particles.");
public GUIContent size3D = EditorGUIUtility.TrTextContent("3D Start Size", "If enabled, you can control the size separately for each axis.");
public GUIContent size = EditorGUIUtility.TrTextContent("Start Size", "The start size of particles.");
public GUIContent rotation3D = EditorGUIUtility.TrTextContent("3D Start Rotation", "If enabled, you can control the rotation separately for each axis.");
public GUIContent rotation = EditorGUIUtility.TrTextContent("Start Rotation", "The start rotation of particles in degrees.");
public GUIContent randomizeRotationDirection = EditorGUIUtility.TrTextContent("Flip Rotation", "Cause some particles to spin in the opposite direction. (Set between 0 and 1, where a higher value causes more to flip)");
public GUIContent autoplay = EditorGUIUtility.TrTextContent("Play On Awake*", "If enabled, the system will start playing automatically. Note that this setting is shared between all Particle Systems in the current particle effect.");
public GUIContent gravitySource = EditorGUIUtility.TrTextContent("Gravity Source", "Use 2D or 3D physics gravity");
public GUIContent gravity = EditorGUIUtility.TrTextContent("Gravity Modifier", "Scales the gravity defined in Physics Manager");
public GUIContent scalingMode = EditorGUIUtility.TrTextContent("Scaling Mode", "Use the combined scale from our entire hierarchy, just this local particle node, or only apply scale to the shape module.");
public GUIContent simulationSpace = EditorGUIUtility.TrTextContent("Simulation Space", "Makes particle positions simulate in world, local or custom space. In local space they stay relative to their own Transform, and in custom space they are relative to the custom Transform.");
public GUIContent customSimulationSpace = EditorGUIUtility.TrTextContent("Custom Simulation Space", "Makes particle positions simulate relative to a custom Transform component.");
public GUIContent simulationSpeed = EditorGUIUtility.TrTextContent("Simulation Speed", "Scale the playback speed of the Particle System.");
public GUIContent deltaTime = EditorGUIUtility.TrTextContent("Delta Time", "Use either the Delta Time or the Unscaled Delta Time. Useful for playing effects whilst paused.");
public GUIContent autoRandomSeed = EditorGUIUtility.TrTextContent("Auto Random Seed", "Simulate differently each time the effect is played.");
public GUIContent randomSeed = EditorGUIUtility.TrTextContent("Random Seed", "Randomize the look of the Particle System. Using the same seed will make the Particle System play identically each time. After changing this value, restart the Particle System to see the changes, or check the Resimulate box.");
public GUIContent emitterVelocity = EditorGUIUtility.TrTextContent("Custom Velocity", "An extra velocity value added to emitted particles when the Emitter Velocity Mode is Custom.");
public GUIContent emitterVelocityMode = EditorGUIUtility.TrTextContent("Emitter Velocity Mode", "How to determine the extra velocity imparted to particles by the Particle System. Use the Transform option to add the velocity calculated from the system's Transform. Use Rigidbody to add the velocity of the system's Rigidbody. Use Custom to add the velocity specified in the Custom Velocity property.");
public GUIContent stopAction = EditorGUIUtility.TrTextContent("Stop Action", "When the Particle System is stopped and all particles have died, should the GameObject automatically disable/destroy itself?");
public GUIContent cullingMode = EditorGUIUtility.TrTextContent("Culling Mode", "Choose whether to continue simulating the Particle System when offscreen. Catch-up mode pauses offscreen simulations but performs a large simulation step when they become visible, giving the appearance that they were never paused. Automatic uses Pause mode for looping systems, and AlwaysSimulate if not looping.");
public GUIContent ringBufferMode = EditorGUIUtility.TrTextContent("Ring Buffer Mode", "Rather than dying when their lifetime has elapsed, particles will remain alive until the Max Particles buffer is full, at which point new particles will replace the oldest.");
public GUIContent ringBufferLoopRange = EditorGUIUtility.TrTextContent("Loop Range", "Particle lifetimes may loop between a fade-in and fade-out time, in order to use curves for the entire time they are alive. Values are in the 0-1 range.");
public GUIContent prewarmingSubEmitterWarning = EditorGUIUtility.TrTextContent("Pre-warming a sub-emitter is not necessary and wastes resources. You only need to pre-warm the root Particle System component.");
public GUIContent x = EditorGUIUtility.TextContent("X");
public GUIContent y = EditorGUIUtility.TextContent("Y");
public GUIContent z = EditorGUIUtility.TextContent("Z");
public GUIContent[] simulationSpaces = new GUIContent[]
{
EditorGUIUtility.TrTextContent("Local"),
EditorGUIUtility.TrTextContent("World"),
EditorGUIUtility.TrTextContent("Custom")
};
public GUIContent[] scalingModes = new GUIContent[]
{
EditorGUIUtility.TrTextContent("Hierarchy"),
EditorGUIUtility.TrTextContent("Local"),
EditorGUIUtility.TrTextContent("Shape")
};
public GUIContent[] stopActions = new GUIContent[]
{
EditorGUIUtility.TrTextContent("None"),
EditorGUIUtility.TrTextContent("Disable"),
EditorGUIUtility.TrTextContent("Destroy"),
EditorGUIUtility.TrTextContent("Callback")
};
public GUIContent[] cullingModes = new GUIContent[]
{
EditorGUIUtility.TrTextContent("Automatic"),
EditorGUIUtility.TrTextContent("Pause and Catch-up"),
EditorGUIUtility.TrTextContent("Pause"),
EditorGUIUtility.TrTextContent("Always Simulate")
};
public GUIContent[] ringBufferModes = new GUIContent[]
{
EditorGUIUtility.TrTextContent("Disabled"),
EditorGUIUtility.TrTextContent("Pause Until Replaced"),
EditorGUIUtility.TrTextContent("Loop Until Replaced")
};
public GUIContent[] emitterVelocityModes = new GUIContent[]
{
EditorGUIUtility.TrTextContent("Transform"),
EditorGUIUtility.TrTextContent("Rigidbody"),
EditorGUIUtility.TrTextContent("Custom")
};
public GUIContent[] gravitySources = new GUIContent[]
{
EditorGUIUtility.TrTextContent("3D Physics"),
EditorGUIUtility.TrTextContent("2D Physics")
};
}
private static Texts s_Texts;
public InitialModuleUI(ParticleSystemUI owner, SerializedObject o, string displayName)
: base(owner, o, "InitialModule", displayName, VisibilityState.VisibleAndFoldedOut)
{
Init(); // Should always be initialized since it is used by other modules (see ShapeModule)
}
public override bool DrawHeader(Rect rect, GUIContent label)
{
// When displaying prefab overrides, the whole UI is disabled, but we still need to be able to expand the modules to see the settings - this doesn't modify the asset
bool wasEnabled = GUI.enabled;
GUI.enabled = true;
var toggleState = GUI.Toggle(rect, foldout, label, ParticleSystemStyles.Get().emitterHeaderStyle);
GUI.enabled = wasEnabled;
return toggleState;
}
public override float GetXAxisScalar()
{
return m_ParticleSystemUI.GetEmitterDuration();
}
protected override void Init()
{
// Already initialized?
if (m_LengthInSec != null)
return;
if (s_Texts == null)
s_Texts = new Texts();
// general emitter state
m_LengthInSec = GetProperty0("lengthInSec");
m_Looping = GetProperty0("looping");
m_Prewarm = GetProperty0("prewarm");
m_StartDelay = new SerializedMinMaxCurve(this, s_Texts.startDelay, "startDelay", false, true);
m_StartDelay.m_AllowCurves = false;
m_PlayOnAwake = GetProperty0("playOnAwake");
m_SimulationSpace = GetProperty0("moveWithTransform");
m_CustomSimulationSpace = GetProperty0("moveWithCustomTransform");
m_SimulationSpeed = GetProperty0("simulationSpeed");
m_UseUnscaledTime = GetProperty0("useUnscaledTime");
m_ScalingMode = GetProperty0("scalingMode");
m_EmitterVelocityMode = GetProperty0("emitterVelocityMode");
m_AutoRandomSeed = GetProperty0("autoRandomSeed");
m_RandomSeed = GetProperty0("randomSeed");
m_StopAction = GetProperty0("stopAction");
m_CullingMode = GetProperty0("cullingMode");
m_RingBufferMode = GetProperty0("ringBufferMode");
m_RingBufferLoopRange = GetProperty0("ringBufferLoopRange");
// module properties
m_EmitterVelocity = GetProperty("customEmitterVelocity");
m_LifeTime = new SerializedMinMaxCurve(this, s_Texts.lifetime, "startLifetime");
m_Speed = new SerializedMinMaxCurve(this, s_Texts.speed, "startSpeed", kUseSignedRange);
m_Color = new SerializedMinMaxGradient(this, "startColor");
m_Color.m_AllowRandomColor = true;
m_Size3D = GetProperty("size3D");
m_SizeX = new SerializedMinMaxCurve(this, s_Texts.x, "startSize");
m_SizeY = new SerializedMinMaxCurve(this, s_Texts.y, "startSizeY", false, false, m_Size3D.boolValue);
m_SizeZ = new SerializedMinMaxCurve(this, s_Texts.z, "startSizeZ", false, false, m_Size3D.boolValue);
m_Rotation3D = GetProperty("rotation3D");
m_RotationX = new SerializedMinMaxCurve(this, s_Texts.x, "startRotationX", kUseSignedRange, false, m_Rotation3D.boolValue);
m_RotationY = new SerializedMinMaxCurve(this, s_Texts.y, "startRotationY", kUseSignedRange, false, m_Rotation3D.boolValue);
m_RotationZ = new SerializedMinMaxCurve(this, s_Texts.z, "startRotation", kUseSignedRange);
m_RotationX.m_RemapValue = Mathf.Rad2Deg;
m_RotationY.m_RemapValue = Mathf.Rad2Deg;
m_RotationZ.m_RemapValue = Mathf.Rad2Deg;
m_RotationX.m_DefaultCurveScalar = Mathf.PI;
m_RotationY.m_DefaultCurveScalar = Mathf.PI;
m_RotationZ.m_DefaultCurveScalar = Mathf.PI;
m_RandomizeRotationDirection = GetProperty("randomizeRotationDirection");
m_GravitySource = GetProperty("gravitySource");
m_GravityModifier = new SerializedMinMaxCurve(this, s_Texts.gravity, "gravityModifier", kUseSignedRange);
m_MaxNumParticles = GetProperty("maxNumParticles");
}
override public void OnInspectorGUI(InitialModuleUI initial)
{
GUIFloat(s_Texts.duration, m_LengthInSec);
EditorGUI.BeginChangeCheck();
bool looping = GUIToggle(s_Texts.looping, m_Looping);
if (EditorGUI.EndChangeCheck() && looping)
{
foreach (ParticleSystem ps in m_ParticleSystemUI.m_ParticleSystems)
{
if (ps.time >= ps.main.duration)
ps.time = 0.0f;
}
}
bool allLooping = !m_Looping.hasMultipleDifferentValues && m_Looping.boolValue;
using (new EditorGUI.DisabledScope(!allLooping))
{
GUIToggle(s_Texts.prewarm, m_Prewarm);
}
if (m_ParticleSystemUI.m_ParticleEffectUI.m_SubEmitterSelected)
{
bool anyPrewarmed = m_Prewarm.hasMultipleDifferentValues || m_Prewarm.boolValue;
if (anyPrewarmed)
EditorGUILayout.HelpBox(s_Texts.prewarmingSubEmitterWarning.text, MessageType.Warning, true);
}
using (new EditorGUI.DisabledScope(m_Prewarm.boolValue && m_Looping.boolValue))
{
GUIMinMaxCurve(s_Texts.startDelay, m_StartDelay);
}
GUIMinMaxCurve(s_Texts.lifetime, m_LifeTime);
GUIMinMaxCurve(s_Texts.speed, m_Speed);
// Size
EditorGUI.BeginChangeCheck();
bool size3D = GUIToggle(s_Texts.size3D, m_Size3D);
if (EditorGUI.EndChangeCheck())
{
// Remove old curves from curve editor
if (!size3D)
{
m_SizeY.RemoveCurveFromEditor();
m_SizeZ.RemoveCurveFromEditor();
}
}
// Keep states in sync
if (!m_SizeX.stateHasMultipleDifferentValues)
{
m_SizeZ.SetMinMaxState(m_SizeX.state, size3D);
m_SizeY.SetMinMaxState(m_SizeX.state, size3D);
}
if (size3D)
{
m_SizeX.m_DisplayName = s_Texts.x;
GUITripleMinMaxCurve(GUIContent.none, s_Texts.x, m_SizeX, s_Texts.y, m_SizeY, s_Texts.z, m_SizeZ, null);
}
else
{
m_SizeX.m_DisplayName = s_Texts.size;
GUIMinMaxCurve(s_Texts.size, m_SizeX);
}
// Rotation
EditorGUI.BeginChangeCheck();
bool rotation3D = GUIToggle(s_Texts.rotation3D, m_Rotation3D);
if (EditorGUI.EndChangeCheck())
{
// Remove old curves from curve editor
if (!rotation3D)
{
m_RotationX.RemoveCurveFromEditor();
m_RotationY.RemoveCurveFromEditor();
}
}
// Keep states in sync
if (!m_RotationZ.stateHasMultipleDifferentValues)
{
m_RotationX.SetMinMaxState(m_RotationZ.state, rotation3D);
m_RotationY.SetMinMaxState(m_RotationZ.state, rotation3D);
}
if (rotation3D)
{
m_RotationZ.m_DisplayName = s_Texts.z;
GUITripleMinMaxCurve(GUIContent.none, s_Texts.x, m_RotationX, s_Texts.y, m_RotationY, s_Texts.z, m_RotationZ, null);
}
else
{
m_RotationZ.m_DisplayName = s_Texts.rotation;
GUIMinMaxCurve(s_Texts.rotation, m_RotationZ);
}
GUIFloat(s_Texts.randomizeRotationDirection, m_RandomizeRotationDirection);
GUIMinMaxGradient(s_Texts.color, m_Color, false);
GUIPopup(s_Texts.gravitySource, m_GravitySource, s_Texts.gravitySources);
GUIMinMaxCurve(s_Texts.gravity, m_GravityModifier);
int space = GUIPopup(s_Texts.simulationSpace, m_SimulationSpace, s_Texts.simulationSpaces);
if (space == 2 && m_CustomSimulationSpace != null)
GUIObject(s_Texts.customSimulationSpace, m_CustomSimulationSpace);
GUIFloat(s_Texts.simulationSpeed, m_SimulationSpeed);
GUIBoolAsPopup(s_Texts.deltaTime, m_UseUnscaledTime, new string[] { "Scaled", "Unscaled" });
GUIPopup(s_Texts.scalingMode, m_ScalingMode, s_Texts.scalingModes);
EditorGUI.BeginChangeCheck();
bool newPlayOnAwake = GUIToggle(s_Texts.autoplay, m_PlayOnAwake);
if (EditorGUI.EndChangeCheck())
{
m_ParticleSystemUI.m_ParticleEffectUI.PlayOnAwakeChanged(newPlayOnAwake);
}
GUIPopup(s_Texts.emitterVelocityMode, m_EmitterVelocityMode, s_Texts.emitterVelocityModes);
if (!m_EmitterVelocityMode.hasMultipleDifferentValues && m_EmitterVelocityMode.intValue == (int)ParticleSystemEmitterVelocityMode.Custom)
{
GUIVector3Field(s_Texts.emitterVelocity, m_EmitterVelocity);
}
GUIInt(s_Texts.maxParticles, m_MaxNumParticles);
bool autoRandomSeed = GUIToggle(s_Texts.autoRandomSeed, m_AutoRandomSeed);
if (!autoRandomSeed)
{
bool isInspectorView = m_ParticleSystemUI.m_ParticleEffectUI.m_Owner is ParticleSystemInspector;
if (isInspectorView)
{
GUILayout.BeginHorizontal();
GUIInt(s_Texts.randomSeed, m_RandomSeed);
if (!m_ParticleSystemUI.multiEdit && GUILayout.Button("Reseed", EditorStyles.miniButton, GUILayout.Width(60)))
m_RandomSeed.intValue = (int)m_ParticleSystemUI.m_ParticleSystems[0].GenerateRandomSeed();
GUILayout.EndHorizontal();
}
else
{
GUIInt(s_Texts.randomSeed, m_RandomSeed);
if (!m_ParticleSystemUI.multiEdit && GUILayout.Button("Reseed", EditorStyles.miniButton))
m_RandomSeed.intValue = (int)m_ParticleSystemUI.m_ParticleSystems[0].GenerateRandomSeed();
}
}
GUIPopup(s_Texts.stopAction, m_StopAction, s_Texts.stopActions);
GUIPopup(s_Texts.cullingMode, m_CullingMode, s_Texts.cullingModes);
ParticleSystemRingBufferMode ringBufferMode = (ParticleSystemRingBufferMode)GUIPopup(s_Texts.ringBufferMode, m_RingBufferMode, s_Texts.ringBufferModes);
if (!m_RingBufferMode.hasMultipleDifferentValues && ringBufferMode == ParticleSystemRingBufferMode.LoopUntilReplaced)
{
EditorGUI.indentLevel++;
GUIMinMaxRange(s_Texts.ringBufferLoopRange, m_RingBufferLoopRange);
EditorGUI.indentLevel--;
}
}
override public void UpdateCullingSupportedString(ref string text)
{
foreach (ParticleSystem ps in m_ParticleSystemUI.m_ParticleSystems)
{
if (ps.main.simulationSpace != ParticleSystemSimulationSpace.Local)
{
text += "\nLocal space simulation is not being used.";
break;
}
}
foreach (ParticleSystem ps in m_ParticleSystemUI.m_ParticleSystems)
{
if (ps.main.gravityModifier.mode != ParticleSystemCurveMode.Constant)
{
text += "\nGravity modifier is not constant.";
break;
}
}
foreach (ParticleSystem ps in m_ParticleSystemUI.m_ParticleSystems)
{
if (ps.main.stopAction != ParticleSystemStopAction.None)
{
text += "\nStop Action is being used.";
break;
}
}
}
}
} // namespace UnityEditor