Skip to content

Commit

Permalink
remove reference to music for content demo in welcome window
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelday008 committed Jan 30, 2023
1 parent f44fbf6 commit 67de312
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 96 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -262,97 +262,3 @@ PrefabInstance:
objectReference: {fileID: 0}
m_RemovedComponents: []
m_SourcePrefab: {fileID: 100100000, guid: 165f681089fa3c649992a914b1e45853, type: 3}
--- !u!1 &1956200742
GameObject:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
serializedVersion: 6
m_Component:
- component: {fileID: 1956200744}
- component: {fileID: 1956200743}
m_Layer: 0
m_Name: Directional Light
m_TagString: Untagged
m_Icon: {fileID: 0}
m_NavMeshLayer: 0
m_StaticEditorFlags: 0
m_IsActive: 1
--- !u!108 &1956200743
Light:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1956200742}
m_Enabled: 1
serializedVersion: 10
m_Type: 1
m_Shape: 0
m_Color: {r: 1, g: 1, b: 1, a: 1}
m_Intensity: 1
m_Range: 10
m_SpotAngle: 30
m_InnerSpotAngle: 21.80208
m_CookieSize: 10
m_Shadows:
m_Type: 0
m_Resolution: -1
m_CustomResolution: -1
m_Strength: 1
m_Bias: 0.05
m_NormalBias: 0.4
m_NearPlane: 0.2
m_CullingMatrixOverride:
e00: 1
e01: 0
e02: 0
e03: 0
e10: 0
e11: 1
e12: 0
e13: 0
e20: 0
e21: 0
e22: 1
e23: 0
e30: 0
e31: 0
e32: 0
e33: 1
m_UseCullingMatrixOverride: 0
m_Cookie: {fileID: 0}
m_DrawHalo: 0
m_Flare: {fileID: 0}
m_RenderMode: 0
m_CullingMask:
serializedVersion: 2
m_Bits: 4294967295
m_RenderingLayerMask: 1
m_Lightmapping: 4
m_LightShadowCasterMode: 0
m_AreaSize: {x: 1, y: 1}
m_BounceIntensity: 1
m_ColorTemperature: 6570
m_UseColorTemperature: 0
m_BoundingSphereOverride: {x: 0, y: 0, z: 0, w: 0}
m_UseBoundingSphereOverride: 0
m_UseViewFrustumForShadowCasterCull: 1
m_ShadowRadius: 0
m_ShadowAngle: 0
--- !u!4 &1956200744
Transform:
m_ObjectHideFlags: 0
m_CorrespondingSourceObject: {fileID: 0}
m_PrefabInstance: {fileID: 0}
m_PrefabAsset: {fileID: 0}
m_GameObject: {fileID: 1956200742}
m_LocalRotation: {x: 0.40821788, y: -0.23456968, z: 0.10938163, w: 0.8754261}
m_LocalPosition: {x: 0, y: 0, z: 0}
m_LocalScale: {x: 1, y: 1, z: 1}
m_ConstrainProportionsScale: 0
m_Children: []
m_Father: {fileID: 0}
m_RootOrder: 2
m_LocalEulerAnglesHint: {x: 50, y: -30, z: 0}
4 changes: 2 additions & 2 deletions Assets/AnyRPG/Core/System/Scripts/Editor/WelcomeWindow.cs
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static implicit operator string(ToolBar tool) {
};
#endregion

public const string installedVersion = "0.15a";
public const string installedVersion = "0.15";

public const string _projectSettingsPath = "Assets/AnyRPG/Basic Locomotion/Resources/ProjectSettings.unitypackage";

Expand Down Expand Up @@ -167,7 +167,7 @@ public static void DemoGamesTabContent() {
if (GUILayout.Button("Content Demo Game")) {
EditorSceneManager.OpenScene("Assets" + contentDemoGameScenePath);
}
EditorGUILayout.HelpBox("A simple demo of all 3d and audio content including\n -Music\n -Clothing\n -Characters\n -Buildings\n -Props\n -Weapons", MessageType.None);
EditorGUILayout.HelpBox("A simple demo of all 3d and audio content including\n -Clothing\n -Characters\n -Buildings\n -Props\n -Weapons", MessageType.None);
GUILayout.EndVertical();
GUILayout.Space(10);
}
Expand Down

0 comments on commit 67de312

Please sign in to comment.