Skip to content

Commit

Permalink
Upgrade for 2018.2
Browse files Browse the repository at this point in the history
  • Loading branch information
terrehbyte committed Apr 12, 2019
1 parent f0198d4 commit 182746c
Show file tree
Hide file tree
Showing 11 changed files with 90 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state)
// Draw
if (state.showNonEditableHandles)
{
if (e.type == EventType.repaint)
if (e.type == EventType.Repaint)
{
var selectedColor = (isCurrentlySelectedCurve && isCurrentlySelectedKeyframe)
? settings.selectionColor
Expand Down Expand Up @@ -422,7 +422,7 @@ void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state)
}

// Keyframe selection & context menu
if (e.type == EventType.mouseDown && rect.Contains(e.mousePosition))
if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition))
{
if (hitRect.Contains(e.mousePosition))
{
Expand Down Expand Up @@ -453,7 +453,7 @@ void OnCurveGUI(Rect rect, SerializedProperty curve, CurveState state)
}

// Tangent selection & edit mode
if (e.type == EventType.mouseDown && rect.Contains(e.mousePosition))
if (e.type == EventType.MouseDown && rect.Contains(e.mousePosition))
{
if (inTangentHitRect.Contains(e.mousePosition) && (k > 0 || state.loopInBounds))
{
Expand Down Expand Up @@ -499,7 +499,7 @@ void OnGeneralUI(Rect rect)
var e = Event.current;

// Selection
if (e.type == EventType.mouseDown)
if (e.type == EventType.MouseDown)
{
GUI.FocusControl(null);
m_SelectedCurve = null;
Expand Down Expand Up @@ -582,7 +582,7 @@ void OnGeneralUI(Rect rect)
}

// Delete selected key(s)
if (e.type == EventType.keyDown && (e.keyCode == KeyCode.Delete || e.keyCode == KeyCode.Backspace))
if (e.type == EventType.KeyDown && (e.keyCode == KeyCode.Delete || e.keyCode == KeyCode.Backspace))
{
if (m_SelectedKeyframeIndex != -1 && m_SelectedCurve != null)
{
Expand Down
9 changes: 0 additions & 9 deletions Assets/SurvivalShooter/TutorialInfo.meta

This file was deleted.

Binary file modified Assets/SurvivalShooter/_Complete-Game/LightingData.asset
Binary file not shown.

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

Binary file modified Assets/SurvivalShooter/_Complete-Game/ReflectionProbe-0.exr
Binary file not shown.
24 changes: 19 additions & 5 deletions Assets/SurvivalShooter/_Complete-Game/ReflectionProbe-0.exr.meta

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

Binary file modified Assets/SurvivalShooter/_Complete-Game/ReflectionProbe-1.exr
Binary file not shown.
24 changes: 19 additions & 5 deletions Assets/SurvivalShooter/_Complete-Game/ReflectionProbe-1.exr.meta

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

39 changes: 39 additions & 0 deletions Packages/manifest.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"dependencies": {
"com.unity.ads": "2.0.8",
"com.unity.analytics": "2.0.16",
"com.unity.package-manager-ui": "1.9.11",
"com.unity.purchasing": "2.0.3",
"com.unity.textmeshpro": "1.2.4",
"com.unity.modules.ai": "1.0.0",
"com.unity.modules.animation": "1.0.0",
"com.unity.modules.assetbundle": "1.0.0",
"com.unity.modules.audio": "1.0.0",
"com.unity.modules.cloth": "1.0.0",
"com.unity.modules.director": "1.0.0",
"com.unity.modules.imageconversion": "1.0.0",
"com.unity.modules.imgui": "1.0.0",
"com.unity.modules.jsonserialize": "1.0.0",
"com.unity.modules.particlesystem": "1.0.0",
"com.unity.modules.physics": "1.0.0",
"com.unity.modules.physics2d": "1.0.0",
"com.unity.modules.screencapture": "1.0.0",
"com.unity.modules.terrain": "1.0.0",
"com.unity.modules.terrainphysics": "1.0.0",
"com.unity.modules.tilemap": "1.0.0",
"com.unity.modules.ui": "1.0.0",
"com.unity.modules.uielements": "1.0.0",
"com.unity.modules.umbra": "1.0.0",
"com.unity.modules.unityanalytics": "1.0.0",
"com.unity.modules.unitywebrequest": "1.0.0",
"com.unity.modules.unitywebrequestassetbundle": "1.0.0",
"com.unity.modules.unitywebrequestaudio": "1.0.0",
"com.unity.modules.unitywebrequesttexture": "1.0.0",
"com.unity.modules.unitywebrequestwww": "1.0.0",
"com.unity.modules.vehicles": "1.0.0",
"com.unity.modules.video": "1.0.0",
"com.unity.modules.vr": "1.0.0",
"com.unity.modules.wind": "1.0.0",
"com.unity.modules.xr": "1.0.0"
}
}
6 changes: 6 additions & 0 deletions ProjectSettings/PresetManager.asset
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
%YAML 1.1
%TAG !u! tag:unity3d.com,2011:
--- !u!1386491679 &1
PresetManager:
m_ObjectHideFlags: 0
m_DefaultList: []
2 changes: 1 addition & 1 deletion ProjectSettings/ProjectVersion.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
m_EditorVersion: 2017.1.0f3
m_EditorVersion: 2018.2.12f1

0 comments on commit 182746c

Please sign in to comment.