// 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 UnityEditorInternal; namespace UnityEditor { class UVModuleUI : ModuleUI { // Keep in sync with enum in UVModule.h enum AnimationMode { Grid = 0, Sprites = 1 }; enum AnimationType { WholeSheet = 0, SingleRow = 1 }; SerializedProperty m_Mode; SerializedMinMaxCurve m_FrameOverTime; SerializedMinMaxCurve m_StartFrame; SerializedProperty m_TilesX; SerializedProperty m_TilesY; SerializedProperty m_AnimationType; SerializedProperty m_RandomRow; SerializedProperty m_RowIndex; SerializedProperty m_Sprites; SerializedProperty m_Cycles; SerializedProperty m_UVChannelMask; SerializedProperty m_FlipU; SerializedProperty m_FlipV; class Texts { public GUIContent mode = EditorGUIUtility.TrTextContent("Mode", "Animation frames can either be specified on a regular grid texture, or as a list of Sprites."); public GUIContent frameOverTime = EditorGUIUtility.TrTextContent("Frame over Time", "Controls the uv animation frame of each particle over its lifetime. On the horisontal axis you will find the lifetime. On the vertical axis you will find the sheet index."); public GUIContent startFrame = EditorGUIUtility.TrTextContent("Start Frame", "Phase the animation, so it starts on a frame other than 0."); public GUIContent tiles = EditorGUIUtility.TrTextContent("Tiles", "Defines the tiling of the texture."); public GUIContent tilesX = EditorGUIUtility.TextContent("X"); public GUIContent tilesY = EditorGUIUtility.TextContent("Y"); public GUIContent animation = EditorGUIUtility.TrTextContent("Animation", "Specifies the animation type: Whole Sheet or Single Row. Whole Sheet will animate over the whole texture sheet from left to right, top to bottom. Single Row will animate a single row in the sheet from left to right."); public GUIContent randomRow = EditorGUIUtility.TrTextContent("Random Row", "If enabled, the animated row will be chosen randomly."); public GUIContent row = EditorGUIUtility.TrTextContent("Row", "The row in the sheet which will be played."); public GUIContent sprites = EditorGUIUtility.TrTextContent("Sprites", "The list of Sprites to be played."); public GUIContent frame = EditorGUIUtility.TrTextContent("Frame", "The frame in the sheet which will be used."); public GUIContent cycles = EditorGUIUtility.TrTextContent("Cycles", "Specifies how many times the animation will loop during the lifetime of the particle."); public GUIContent uvChannelMask = EditorGUIUtility.TrTextContent("Enabled UV Channels", "Specifies which UV channels will be animated."); public GUIContent flipU = EditorGUIUtility.TrTextContent("Flip U", "Cause some particle texture mapping to be flipped horizontally. (Set between 0 and 1, where a higher value causes more to flip)"); public GUIContent flipV = EditorGUIUtility.TrTextContent("Flip V", "Cause some particle texture mapping to be flipped vertically. (Set between 0 and 1, where a higher value causes more to flip)"); public GUIContent[] modes = new GUIContent[] { EditorGUIUtility.TrTextContent("Grid"), EditorGUIUtility.TrTextContent("Sprites") }; public GUIContent[] types = new GUIContent[] { EditorGUIUtility.TrTextContent("Whole Sheet"), EditorGUIUtility.TrTextContent("Single Row") }; } private static Texts s_Texts; public UVModuleUI(ParticleSystemUI owner, SerializedObject o, string displayName) : base(owner, o, "UVModule", displayName) { m_ToolTip = "Particle UV animation. This allows you to specify a texture sheet (a texture with multiple tiles/sub frames) and animate or randomize over it per particle."; } protected override void Init() { // Already initialized? if (m_TilesX != null) return; if (s_Texts == null) s_Texts = new Texts(); m_Mode = GetProperty("mode"); m_FrameOverTime = new SerializedMinMaxCurve(this, s_Texts.frameOverTime, "frameOverTime"); m_StartFrame = new SerializedMinMaxCurve(this, s_Texts.startFrame, "startFrame"); m_StartFrame.m_AllowCurves = false; m_TilesX = GetProperty("tilesX"); m_TilesY = GetProperty("tilesY"); m_AnimationType = GetProperty("animationType"); m_RandomRow = GetProperty("randomRow"); m_RowIndex = GetProperty("rowIndex"); m_Sprites = GetProperty("sprites"); m_Cycles = GetProperty("cycles"); m_UVChannelMask = GetProperty("uvChannelMask"); m_FlipU = GetProperty("flipU"); m_FlipV = GetProperty("flipV"); } override public void OnInspectorGUI(InitialModuleUI initial) { int mode = GUIPopup(s_Texts.mode, m_Mode, s_Texts.modes); if (!m_Mode.hasMultipleDifferentValues) { if (mode == (int)AnimationMode.Grid) { GUIIntDraggableX2(s_Texts.tiles, s_Texts.tilesX, m_TilesX, s_Texts.tilesY, m_TilesY); int type = GUIPopup(s_Texts.animation, m_AnimationType, s_Texts.types); if (type == (int)AnimationType.SingleRow) { GUIToggle(s_Texts.randomRow, m_RandomRow); if (!m_RandomRow.boolValue) GUIInt(s_Texts.row, m_RowIndex); m_FrameOverTime.m_RemapValue = (float)(m_TilesX.intValue); m_StartFrame.m_RemapValue = (float)(m_TilesX.intValue); } else { m_FrameOverTime.m_RemapValue = (float)(m_TilesX.intValue * m_TilesY.intValue); m_StartFrame.m_RemapValue = (float)(m_TilesX.intValue * m_TilesY.intValue); } } else { DoListOfSpritesGUI(); ValidateSpriteList(); m_FrameOverTime.m_RemapValue = (float)(m_Sprites.arraySize); m_StartFrame.m_RemapValue = (float)(m_Sprites.arraySize); } GUIMinMaxCurve(s_Texts.frameOverTime, m_FrameOverTime); GUIMinMaxCurve(s_Texts.startFrame, m_StartFrame); } GUIFloat(s_Texts.cycles, m_Cycles); bool disableFlipping = false; foreach (ParticleSystem ps in m_ParticleSystemUI.m_ParticleSystems) { ParticleSystemRenderer renderer = ps.GetComponent(); if ((renderer != null) && (renderer.renderMode == ParticleSystemRenderMode.Mesh)) { disableFlipping = true; break; } } using (new EditorGUI.DisabledScope(disableFlipping)) { GUIFloat(s_Texts.flipU, m_FlipU); GUIFloat(s_Texts.flipV, m_FlipV); } GUIEnumMaskUVChannelFlags(s_Texts.uvChannelMask, m_UVChannelMask); } private void DoListOfSpritesGUI() { for (int i = 0; i < m_Sprites.arraySize; i++) { GUILayout.BeginHorizontal(); SerializedProperty spriteData = m_Sprites.GetArrayElementAtIndex(i); SerializedProperty sprite = spriteData.FindPropertyRelative("sprite"); GUIObject(new GUIContent(" "), sprite, typeof(Sprite)); // add plus button to first element if (i == 0) { if (GUILayout.Button(GUIContent.none, new GUIStyle("OL Plus"), GUILayout.Width(16))) { m_Sprites.InsertArrayElementAtIndex(m_Sprites.arraySize); SerializedProperty newSpriteData = m_Sprites.GetArrayElementAtIndex(m_Sprites.arraySize - 1); SerializedProperty newSprite = newSpriteData.FindPropertyRelative("sprite"); newSprite.objectReferenceValue = null; } } // add minus button to all other elements else { if (GUILayout.Button(GUIContent.none, new GUIStyle("OL Minus"), GUILayout.Width(16))) m_Sprites.DeleteArrayElementAtIndex(i); } GUILayout.EndHorizontal(); } } private void ValidateSpriteList() { if (m_Sprites.arraySize <= 1) return; Texture texture = null; for (int i = 0; i < m_Sprites.arraySize; i++) { SerializedProperty spriteData = m_Sprites.GetArrayElementAtIndex(i); SerializedProperty prop = spriteData.FindPropertyRelative("sprite"); Sprite sprite = prop.objectReferenceValue as Sprite; if (sprite != null) { if (texture == null) { texture = sprite.GetTextureForPlayMode(); } else if (texture != sprite.GetTextureForPlayMode()) { EditorGUILayout.HelpBox("All Sprites must share the same texture. Either pack all Sprites into one Texture by setting the Packing Tag, or use a Multiple Mode Sprite.", MessageType.Error, true); break; } else if (sprite.border != Vector4.zero) { EditorGUILayout.HelpBox("Sprite borders are not supported. They will be ignored.", MessageType.Warning, true); break; } } } } } } // namespace UnityEditor