Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -1883,10 +1883,10 @@ internal static class Styles

internal static GUIStyle TreeBoldLabel
{
get { return TreeView.DefaultStyles.boldLabel; }
get { return UnityEditor.IMGUI.Controls.TreeView.DefaultStyles.boldLabel; }
}

internal static GUIStyle TreeLabel = new GUIStyle(TreeView.DefaultStyles.label)
internal static GUIStyle TreeLabel = new GUIStyle(UnityEditor.IMGUI.Controls.TreeView.DefaultStyles.label)
{
richText = true,
normal = new GUIStyleState() {textColor = Color.white}
Expand Down
2 changes: 1 addition & 1 deletion GameTemplate/Assets/Plugins/Editor/SubAssetDragAndDrop.cs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ private static string GetFileExtention(UnityEngine.Object obj)
return "giparams";
else if (obj is GUISkin)
return "guiskin";
else if (obj is PhysicMaterial)
else if (obj is PhysicsMaterial)
return "physicMaterial";
else if (obj is PhysicsMaterial2D)
return "physicsMaterial2D";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,7 @@ string GetFileExtention(Object obj)
return "giparams";
else if (obj is GUISkin)
return "guiskin";
else if (obj is PhysicMaterial)
else if (obj is PhysicsMaterial)
return "physicMaterial";
else if (obj is UnityEngine.Audio.AudioMixer)
return "mixer";
Expand Down

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ void Die() {

Rigidbody2D objectRb = go.GetComponent<Rigidbody2D>();
if (objectRb) {
objectRb.velocity += rb.velocity;
objectRb.velocity += (Vector2)positions[usedPos].localPosition.normalized * dropForce.GetRandomValue();
objectRb.linearVelocity += rb.linearVelocity;
objectRb.linearVelocity += (Vector2)positions[usedPos].localPosition.normalized * dropForce.GetRandomValue();
objectRb.angularVelocity += rb.angularVelocity;
}

Expand Down
26 changes: 14 additions & 12 deletions GameTemplate/Packages/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,23 +25,24 @@
"com.teamon.screenshooter": "https://github.com/Team-on/UnityScreenShooter.git#main",
"com.unity.2d.sprite": "1.0.0",
"com.unity.2d.tilemap": "1.0.0",
"com.unity.ai.navigation": "2.0.12",
"com.unity.build-report-inspector": "0.2.2-preview",
"com.unity.cinemachine": "2.8.4",
"com.unity.ide.visualstudio": "2.0.12",
"com.unity.inputsystem": "1.2.0",
"com.unity.memoryprofiler": "0.4.4-preview.2",
"com.unity.performance.profile-analyzer": "1.1.1",
"com.unity.postprocessing": "3.2.0",
"com.unity.recorder": "3.0.3",
"com.unity.sysroot.linux-x86_64": "1.0.0",
"com.unity.textmeshpro": "3.0.6",
"com.unity.timeline": "1.6.3",
"com.unity.toolchain.win-x86_64-linux-x86_64": "1.0.0",
"com.unity.ugui": "1.0.0",
"com.unity.cinemachine": "2.10.7",
"com.unity.ide.visualstudio": "2.0.27",
"com.unity.inputsystem": "1.19.0",
"com.unity.memoryprofiler": "1.1.12",
"com.unity.multiplayer.center": "1.0.1",
"com.unity.performance.profile-analyzer": "1.3.4",
"com.unity.postprocessing": "3.5.4",
"com.unity.recorder": "5.1.6",
"com.unity.timeline": "1.8.12",
"com.unity.ugui": "2.0.0",
"com.unity.uiextensions": "https://github.com/JohannesDeml/unity-ui-extensions.git",
"com.yasirkula.ingamedebugconsole": "https://github.com/yasirkula/UnityIngameDebugConsole.git#master",
"st.one-line": "https://github.com/slavniyteo/one-line.git#master",
"st.rect-ex": "https://github.com/slavniyteo/rect-ex.git#master",
"com.unity.modules.accessibility": "1.0.0",
"com.unity.modules.adaptiveperformance": "1.0.0",
"com.unity.modules.androidjni": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.assetbundle": "1.0.0",
Expand All @@ -59,6 +60,7 @@
"com.unity.modules.uielements": "1.0.0",
"com.unity.modules.umbra": "1.0.0",
"com.unity.modules.unityanalytics": "1.0.0",
"com.unity.modules.vectorgraphics": "1.0.0",
"com.unity.modules.video": "1.0.0",
"com.unity.modules.vr": "1.0.0"
},
Expand Down
Loading