From 4ca09d419773a8e75135e04ff4487c3007193796 Mon Sep 17 00:00:00 2001 From: Stacey <4108756+Yecats@users.noreply.github.com> Date: Wed, 5 Jan 2022 12:56:53 -0800 Subject: [PATCH 1/6] Create FUNDING.yml --- .github/FUNDING.yml | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 .github/FUNDING.yml diff --git a/.github/FUNDING.yml b/.github/FUNDING.yml new file mode 100644 index 0000000..1fbeff3 --- /dev/null +++ b/.github/FUNDING.yml @@ -0,0 +1,4 @@ +# These are supported funding model platforms + +github: [yecats] +custom: ['https://www.buymeacoffee.com/gamedev'] From d7ea243bbd5021a0ac6151b0f6ea25eca717ca25 Mon Sep 17 00:00:00 2001 From: yecats Date: Sun, 13 Feb 2022 08:57:25 -0800 Subject: [PATCH 2/6] Upgraded to 2019 LTS --- .../projects/finishedProject/.vsconfig | 6 + .../Samples/Input System/1.0.0-preview.1.meta | 8 - .../finishedProject/Logs/Packages-Update.log | 19 + .../finishedProject/Packages/manifest.json | 18 +- .../Packages/packages-lock.json | 335 ++++++++++++++++++ .../ProjectSettings/AudioManager.asset | Bin 4144 -> 446 bytes .../ProjectSettings/ClusterInputManager.asset | Bin 4104 -> 114 bytes .../ProjectSettings/EditorBuildSettings.asset | Bin 4108 -> 160 bytes .../ProjectSettings/EditorSettings.asset | Bin 4208 -> 1106 bytes .../ProjectSettings/GraphicsSettings.asset | Bin 4406 -> 2230 bytes .../ProjectSettings/InputManager.asset | Bin 5520 -> 5793 bytes .../ProjectSettings/NavMeshAreas.asset | Bin 4464 -> 1308 bytes .../PackageManagerSettings.asset | 38 ++ .../ProjectSettings/PresetManager.asset | Bin 4104 -> 146 bytes .../ProjectSettings/ProjectVersion.txt | 4 +- .../ProjectSettings/TagManager.asset | Bin 4308 -> 378 bytes .../ProjectSettings/TimeManager.asset | Bin 4116 -> 202 bytes .../UnityConnectSettings.asset | Bin 4328 -> 853 bytes .../ProjectSettings/VFXManager.asset | Bin 4116 -> 308 bytes 19 files changed, 409 insertions(+), 19 deletions(-) create mode 100644 tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/.vsconfig delete mode 100644 tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Assets/Samples/Input System/1.0.0-preview.1.meta create mode 100644 tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/packages-lock.json create mode 100644 tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PackageManagerSettings.asset diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/.vsconfig b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/.vsconfig new file mode 100644 index 0000000..d70cd98 --- /dev/null +++ b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/.vsconfig @@ -0,0 +1,6 @@ +{ + "version": "1.0", + "components": [ + "Microsoft.VisualStudio.Workload.ManagedGame" + ] +} diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Assets/Samples/Input System/1.0.0-preview.1.meta b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Assets/Samples/Input System/1.0.0-preview.1.meta deleted file mode 100644 index d00b457..0000000 --- a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Assets/Samples/Input System/1.0.0-preview.1.meta +++ /dev/null @@ -1,8 +0,0 @@ -fileFormatVersion: 2 -guid: a6d83ae87f076744296d3dd4544a01a6 -folderAsset: yes -DefaultImporter: - externalObjects: {} - userData: - assetBundleName: - assetBundleVariant: diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Logs/Packages-Update.log b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Logs/Packages-Update.log index 9f701d0..4eef28b 100644 --- a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Logs/Packages-Update.log +++ b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Logs/Packages-Update.log @@ -16,3 +16,22 @@ The following packages were updated: com.unity.collab-proxy from version 1.2.9 to 1.2.16 com.unity.textmeshpro from version 2.0.0 to 2.0.1 com.unity.timeline from version 0.0.0-builtin to 1.1.0 + +=== Sun Feb 13 08:53:38 2022 + +Packages were changed. +Update Mode: updateDependencies + +The following packages were added: + com.unity.ide.visualstudio@2.0.12 +The following packages were updated: + com.unity.collab-proxy from version 1.2.16 to 1.14.9 + com.unity.ext.nunit from version 1.0.0 to 1.0.6 + com.unity.ide.rider from version 1.1.0 to 1.2.1 + com.unity.ide.vscode from version 1.1.0 to 1.2.4 + com.unity.inputsystem from version 1.0.0-preview.1 to 1.2.0 + com.unity.test-framework from version 1.0.13 to 1.1.29 + com.unity.textmeshpro from version 2.0.1 to 2.1.4 + com.unity.timeline from version 1.1.0 to 1.2.18 +The following packages were removed: + com.unity.package-manager-ui@2.2.0 diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/manifest.json b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/manifest.json index 2a1d87f..c9e0bb8 100644 --- a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/manifest.json +++ b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/manifest.json @@ -1,14 +1,14 @@ { "dependencies": { - "com.unity.collab-proxy": "1.2.16", - "com.unity.ext.nunit": "1.0.0", - "com.unity.ide.rider": "1.1.0", - "com.unity.ide.vscode": "1.1.0", - "com.unity.inputsystem": "1.0.0-preview.1", - "com.unity.package-manager-ui": "2.2.0", - "com.unity.test-framework": "1.0.13", - "com.unity.textmeshpro": "2.0.1", - "com.unity.timeline": "1.1.0", + "com.unity.collab-proxy": "1.14.9", + "com.unity.ext.nunit": "1.0.6", + "com.unity.ide.rider": "1.2.1", + "com.unity.ide.visualstudio": "2.0.12", + "com.unity.ide.vscode": "1.2.4", + "com.unity.inputsystem": "1.2.0", + "com.unity.test-framework": "1.1.29", + "com.unity.textmeshpro": "2.1.4", + "com.unity.timeline": "1.2.18", "com.unity.ugui": "1.0.0", "com.unity.modules.ai": "1.0.0", "com.unity.modules.androidjni": "1.0.0", diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/packages-lock.json b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/packages-lock.json new file mode 100644 index 0000000..1dba2bb --- /dev/null +++ b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/Packages/packages-lock.json @@ -0,0 +1,335 @@ +{ + "dependencies": { + "com.unity.collab-proxy": { + "version": "1.14.9", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ext.nunit": { + "version": "1.0.6", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.ide.rider": { + "version": "1.2.1", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.1" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.visualstudio": { + "version": "2.0.12", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.test-framework": "1.1.9" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ide.vscode": { + "version": "1.2.4", + "depth": 0, + "source": "registry", + "dependencies": {}, + "url": "https://packages.unity.com" + }, + "com.unity.inputsystem": { + "version": "1.2.0", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.uielements": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.test-framework": { + "version": "1.1.29", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ext.nunit": "1.0.6", + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.textmeshpro": { + "version": "2.1.4", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.ugui": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.timeline": { + "version": "1.2.18", + "depth": 0, + "source": "registry", + "dependencies": { + "com.unity.modules.director": "1.0.0", + "com.unity.modules.animation": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.particlesystem": "1.0.0" + }, + "url": "https://packages.unity.com" + }, + "com.unity.ugui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.imgui": "1.0.0" + } + }, + "com.unity.modules.ai": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.androidjni": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.animation": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.assetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.audio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.cloth": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.director": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.animation": "1.0.0" + } + }, + "com.unity.modules.imageconversion": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.imgui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.jsonserialize": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.particlesystem": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.physics2d": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.screencapture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.subsystems": { + "version": "1.0.0", + "depth": 1, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.terrain": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.terrainphysics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.terrain": "1.0.0" + } + }, + "com.unity.modules.tilemap": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics2d": "1.0.0" + } + }, + "com.unity.modules.ui": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.uielements": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.imgui": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.umbra": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unityanalytics": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0" + } + }, + "com.unity.modules.unitywebrequest": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.unitywebrequestassetbundle": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestaudio": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.audio": "1.0.0" + } + }, + "com.unity.modules.unitywebrequesttexture": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.unitywebrequestwww": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.unitywebrequest": "1.0.0", + "com.unity.modules.unitywebrequestassetbundle": "1.0.0", + "com.unity.modules.unitywebrequestaudio": "1.0.0", + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.assetbundle": "1.0.0", + "com.unity.modules.imageconversion": "1.0.0" + } + }, + "com.unity.modules.vehicles": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0" + } + }, + "com.unity.modules.video": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.audio": "1.0.0", + "com.unity.modules.ui": "1.0.0", + "com.unity.modules.unitywebrequest": "1.0.0" + } + }, + "com.unity.modules.vr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.xr": "1.0.0" + } + }, + "com.unity.modules.wind": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": {} + }, + "com.unity.modules.xr": { + "version": "1.0.0", + "depth": 0, + "source": "builtin", + "dependencies": { + "com.unity.modules.physics": "1.0.0", + "com.unity.modules.jsonserialize": "1.0.0", + "com.unity.modules.subsystems": "1.0.0" + } + } + } +} diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/AudioManager.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/AudioManager.asset index 79a0b3284c1558fec0163d0a0e2e683ca28e4735..6321f1edaef0f0ba7eeb08ba2f258ea0266b034c 100644 GIT binary patch literal 446 zcmZutyH3L}6y5U`?ocLL)h#UE0%>6&Y89hMOx3M(6B+ynehl#SI57;B81Fep=W&;B zW&J|vnik8~@`)_sf&>^?G%|ecy0x(ScDtdJ6|2>1Vkspzv?yaIZ4CwnbgUpmpO2S! z6yaHRcu+8SMm7od=p-olja`e*OKTX}&g#~xsF4wxuEr{5`<`$C>KCf)I4X4H03ukI zWfk@iRUmvs_()uByQI!`9CXq*5E3%w>T|_U53%pj@syqnHru-#EM178S}O%U+GqkJ z_cWU{c#ZEeyf<)Bc#L6;fk!{0$wQ{<`picNd7?Y1ILNec#!G#X-Wn+?6shPnSxG;6 d&QJU++~#7b?LO5OA$>3>H24|O2kicv^aC*ejZ6Rl literal 4144 zcmeH~zi!k(5XQ%GAQ1i}1O!M>TtOXOhy-+8h(Re5DV)W%XydG-C40Ar&n`&iIu8*< zlOh$O;Q^5H3=st{kUT*O%=h_Xf*?&fpTCJzZ=4S$4~oK7SEf%-+nWS0nG4PQY_ewh%~@HdFb zrwCyU*NDll5W*V%0WtYiLKyi9=GsNfd8Y|W@`+#p5uKc}1s(FRe$NNk!#>x^YY*i$ zYTv<`Q;#tp_uoU#J~y#m)PIKcoqzlDLtfM$-}ra`RdoD%md|0OaW3-1Iu^N2*b!MO zHjP_T1GS|y>A&qcTlBSbowY7aTXCYSmdFiMS-p%zGxw3uSxGBzoBugB+}@{{rz)Tj5l z8<-^03C=lx5SfwMu)2Q#^8>K=C5}zN<)zt;b8X21@ zs2OrO=ad$gq!xMR6_l3vCgvrkrxsapDJbN|`zK|kCYN|*rlh*%B&HWzDHwo-!3u%A H=vXcQ9j+l} literal 4104 zcmeH^yGjE=6o$`iZfd-1C%%A1NEC0~LM#+f5D`mRWDq3@vblhj3${LkrH!4PT^_(T zg^f>OVQJ<1|2s=yNouPzFr1xl&is>nBjVkO%uk5O0xF8gdbPGw*{D>5E%}Y(*ch-c zZp3lFy!-z2GdR5OeVjjjZ@w*q)-l<_u`LqeNSrJpawE?XzQak+<$ebu z7c4!N8%RO|UNtgU^3R#cwd=z};H_Mj07^nP%%{ zW46%@p5tGZWu8Yi=JPAd>Q7&_|4yI$_%rqEaOL!9af0-KUZKlg0ESmGTNuFO=cEer z-GfmFwaVSY1^ENkI&bgW^A)ef9&+(2f5(~bRPmE+f_KzME)$<*-0Ytp5H#XG7Mayq zYF>?w`JBIJk7<_bKPYa*2TF5q5PS3DwbI-naqBgF=1t92J$%W1oRc+KOU#>e8T(ru z=9ufhOK(}hUo#iKEl4Z)0(0>@g0zBvWG+4;NR!UL0mEI|ciBZ6@v@$yI&67a&wJuD z>G`aZzf1bu7c}BNq}wqoaqTVVW!=VzuhQ+Ixb?Dbk1n~7Z=5^K8Peu4U8eVH?-6so z_laf3@&?Z)thKB0K3@pqbbI&Be%uR}qcn|^?jE+*mpf4s?ZE~_Nzm>^A$EfFE4uq} zh%iWl)#h3rTm3lGkF#rR(AiEl;_gy=GwP&j_%7~6AKo(g#3oGiwETfK;a9QXqIS_K b;1qBQI0c*nP64NYQ@|=BQwA1cn=M6fNXn09`tKzrKjgaY zO#&8+#R9zj)*X*nbQiU5U%M~tro3SeR&l9>+duNVoQjVR_fZtL+U<78MxUS9hp3fs z;mBm@oKPzpw-_tlri<^GyDx&{K!OjldmpxF1W54{`ByYnkc!z;g-&)3jRJWH_eeQI zGAp$v<6`D%I4U+q2W%iD+Nvl!uz~YTW8xUIhbl1=3KPYHm;spyZnNA7?YxLO-^V4C z(mmrEHiArD8uS%!sqwkR3|FNDlc5CIA2c literal 4208 zcmeH~O>fgc5Qf)H`G)dUJ`1P^&ZPwj5V=GRDXr8-0Rx93fwuOfxY)badP4)JAP$^3 za^ir5P=5dtNF4bYAjFM3H^c$LypG*AH2eZQ(P$^n%)ZIKjv`x#;a@@=h=mXbdF4fj z^OIATCoW7(%8TN6x7&3bX0Oobc0VuHpXwJQFTcI}{$%a!j}K>X=m}imw zz8zZUJ^d@0{$b{W^hYsY>FI2~E=R!A?AJfK&U^ZIGW}!B2k9Tjd}XWt3Gg)g^-r#I zN3?n1IVa}EI5T}Q&()iZp8~I7#!316jGxYU%@3?LE?FC>QpVW3U6 z!HrE|sUf`wGzc}M53z<`C4;YIy_?jwEkjiu#fFkZn_RH3JtGslG1AwnYZJ-vAI)j{ zYhT0Y74qygQe@JD&M7Z!`Q*bL1z&KsEmJqNwsjd%5=#%h+)Bt~8sulwZmZc0+M=q% zP%dq8e;^JN?_I{ZYf3JK^Khq diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/GraphicsSettings.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/GraphicsSettings.asset index ec445795c4b6a0d0ac67d9ad3e62b9f83c90d4da..2d1712ccf0f3f329906c7105e7977add3b53ad3f 100644 GIT binary patch literal 2230 zcmbtWU2obj6n*DcxDVYER7qKj#v6iupuvV3+G(05WRgqb&9N=p8BMGG_gy={C}mof z@qmRaBJeW>Mcow!!=Ytz^Qk)P=(|#eCExXBCEc5nx5QhC$r_*uXZb06I zts6~M#$pqJwM?X@-y$Smd|ZBm*xs@Pt~o^`3D9gnGs@W$BoCkslcG<;u0KA46=)5K zd)d7{l?kA8^Au$?0o^ChE5>0w>XXZNZITu&!LSFv)xmR{*ivDr;O7gRJ6Lhd4^!~@ z)`0B2Z3r2~8bCyf#^CCZ>$-@SO%W%M(zyKBmUbJ~Hv(m|4^rop*RJfmA=Xs7kv-t# zq^=9ryJ!eDVQFS>DVH@bWf(L@0%34XG}K0F+Q0!{)6$GZ%!>q)YOj1FJHMB!*Qj56 z0m6$gXm)oGf;8*rL6FP;E+^<+G+U1SOoCo7Xp~95m}%e=8E`i*^5v^%vq))X!QiIT zg4-#zo?rKPGQ`yDPr|e93%VQ@#>)H-1k&$}Dd0>Xm+okIL#lI4g;98YMO;Qw+lss$ z;pdA(-{6s<7(72BBezNE|DTZPckJv6sqj!sX4Gbt3gnAzk#dO|aP-8Sf!>MGwncu4 zbE+b%nNk=NA$?-kGJRzm3uCE>@zg8VHqLthHRF^y>GE;*9V4cPGGAhoP??UnOF?rM z|M~UG|CcD0h)k*ZehecjmR3_#wjUe)%okXx%X)%oQ54ZCuZ{8QQN6aDZ%qTfghWPb zYU6AyRuU(-xp}^7b8n!EIu;fw3_laL-QD?zl1n{@T!E&xK!)42eRRf1m1?&MGcDcsg-i4oQ`>*s literal 4406 zcmZ{nON@MerAaPeR~nczti5qbWi4}Tx85}nUH(SaLUS@EbRcA`+T4~6ET_6uSRp-%r* zgfQ~Qa6N`XE%wnoc+meT)X4@k>u5d*-Dl8Vi?TZBMpvRu-8CpQSC?aGuI@Dk_vl`$ zeS3AU%em2AK%2VRe!05WqmSn5-e7Q#?t1Opt4j@RIf~JJ2W>L$InCAGXt3tReZDE@ z-TQpAj?t@oOU{k%M`%;`Rur16dz-;My0_=NTlWqfqgVINoEzOw(WdSu6q>8M+29`C zyK>&G%k($Ykh%-7nCl?iLi9tGm_U9^Gv@@7CR}WAv`~-kclVZ_uXheJC_n zcZb0}y1f5r?tOH>X1%%(6nsqcU?*E>goB8~KHg)&ndbRmrURRwDpEoqlhYzo8KKnK8 zozKJCw|72|hL!#FXi0mzG?Ze z=0=y#?e{GoDRAc1WpJM3D0zqe-FY=eeudoJFIirVlfwqUzeWt6<5sl!-Y{`YUVUeE zkCVf)eEZe%69#MkJD7(T6rV{G1#=-VgL7IV|JbEI(;*&i7hA>F|S=mkS&| zos-~@7pEM4!E)vijk@%I%kqlBIe*vk(+mIE#tc^f7W2lx!w{u_vf6$XDolt;i2WvJN#|S zUvT&*mcQumuPmQ+_|KNVqfn4e^KHIoj-Y;<0 zogp~$eRKguh%M+F5SPFYf-_El;uZKI%bN~AYu0rKsc%9 zWo;=N05GOnY2#EBH)X*7a>U_h5haSXzdzqdPskwBW5eWFAY+C4aIhekl8LYuwCk#F z=0^WYtbzy&%TZw!XJzcmFddBoJ4?N+R_v!L!Hi@(NXs%+a0(DlHMX@Aa#TXmh#KIYH<5qAvs$xgo&KbXOI9-kA zEKjgLBjb6Maz^kJ{BciuyzXNc;gKJ5lFG0yW4k%0+cNOeC4seIjoG{!^;oYdRuXB_ zRL3VqD`(Cma$bpcf@x+)T#2Kq8i^KhJ#P;EYW)FXBQm>Aj7{+}rc&t#=ETdgMKmgt zT6Sj90$?IqF|%?1(1@R!;!A$O>Tz9P*Ao>Zz;38Wtuf{~5+@o3bnB0qTV z6urlmLfQ0dR~=-!{(o$??Bs$Ibh=$lV~N}B73L#Wz&T7pUGl7Ldwj9g)fhr+IH;<6 zG`%3xT4N%dixS}yf$1tyivpxgEapX3NYV7e$u@qlFVK^Vg@##cawbtmej-d&m@uX6 zHn0n~TNKZzW=q8~ZR6(ULyIM|9fd}rD#ZHC1J_t3Q9G`wWKTPUz--k##AekZ_F~14 z<5{wgsjR*7kz@Kxc1YH5J_b!6nfYj3X|H??8OE0hEgP?2QfRNXY~`PG0Dj5Bv~Qu_ fSEzftR(v+vdN!u7&^BJ~Z|7(>54Xq5EbsUa?jYG^ diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/InputManager.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/InputManager.asset index d439ece43e2101c9c0515c723f3b04b57e79c97b..17c8f538e2152c0a0310b4870979eeecece2153c 100644 GIT binary patch literal 5793 zcmd^@!E)0u5Qgu03iVJNfVhc@ zr@ij3Z28l_t6iU7O{O1MI0^@+pC@nGNp->uPoqi-vl=I(xX53g1z{KshQnd)4ae+7 zICv+^%1pWBDX3_`SpNOv{2F3&Ard&xc&Z~7ShEHtcqZ;3`2tFdLPqQiqbIkZ>vh9j zA!F;PA35VWMC_ta;;xW}XJ}49$4Zn&EP?!6R!F(ym5u3jWlX(?41O3~Ru)>+v8_Xi zbU_}TnVGYS;}Yxmc7|orP{hd_-_baU*e4F1V_sy>3&}t;3~ugN`0jI~NM* zP>!Lsow#ZNve+n+^bW2430huM8X94&(S<=kQu(Xq)=?xoTH!@@HNZN}8S@L!a%(xc zx!T%Y(Gfp7-Cpx+i^$={4pF%IiUQON(bU1t3Z&!hEy4FyP6f%E0CmY@XjQha`Y^t? z(56^hzTqalaXSpzMw!D$ZCtB??PBV(^REg=Q3qVCgzD;un4wS&y|aDbd`wz_Q^+SggR?p&Wwf9n#YlYVer>mxzW9j;5T z$(yI5LH`}D3y{w1$w=_Bn&*P%M{mup0#hmaVbXz{3!a*i-d4lM01487YA=g@r>);3 cT5s9C;WGB!5!?TzyzD%xx+0_t=zoCx1tJE>g8%>k literal 5520 zcmeI0%Wl&^6ow~FTkcQ_Fk{i-x^8R`$z77n9a6QYEW zvNB3Sr0`oyi_&^Zlv*JY71WgY4V_r}t9a$#k{SSmm3kWE;wNL$;t#ZL#E`?vlE&{K z+WCqtE%%)SM^r$0mL`3TT#!TvT)y0=krMYEJc)1e~&)(a}-gi--kb9 z)O_ca8tH2l{Q`9((D@vFfl1CqR2FimucJ@>5=E3y|BgQOUWzDp?LyI?Fl}>Ix+4E# zcu9JJHoRncA}hU&YZZKJK~9=^so8SYtm<~f7%BR`V~c|0SsbgFX3n3~9iTkWeP&&A z!Sa_egP9ecv=xAYXPX6K*$dM3g}+>o!sNo{o#n}5US$dwky4iu{8?51IckKYn`9u# zK$3wZ14#yw3?vyyGLU58Kg|FSe>}jBJFd0j*uI&IE|f3*IXUC=_1Lv$=X|t$Z#FA! z7A;N|hST}_2HVMCsaP3Y7ue9uZ@kH)NAi&6#pzPMAK^H zLk2%S1oKa2Tql=%GACttue9Jgqn4#U6k)vCeys~t=JU5Bw{W(-O(TqFKW=YQuP@bj zTnOXC>k0Qw{a)mC;-u+e)4%MQR%cta10!zpdlWM3_hKAVpLc6!{eFyN>hm^d#_h*A zo<3)D9zW1c6{qu7<+%uRMctKt(X|65ZVo=(o9+8%Z01_pKE7ZCg?98jZNAn!rk$zZ VyqpJLK1_UVP$h1y18Sr>`yV$gn%4jT diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/NavMeshAreas.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/NavMeshAreas.asset index 2b8697abbad84bbaedd569d175a7d4f6176013b5..3b0b7c3d183abdd300112f56965916ef11667f54 100644 GIT binary patch literal 1308 zcmeHHO;5r=5WV+TEC)PULMvbCt$`>SKm$bMi45CGS>5e6-K`OSy|aZv6Jxx2Vo%*S zZ{DPD^QQe8&u1*?1YUa`-?3KNViwY<%!J+FBpt5Rb=VDp$n$;QRfBNAt^#iXA9FOj zr$WCWw=1+(WT}Zf#?#(Uv@KyqWtV^)LLVy%sm^@=)gw7%s5)1`G)#kGd6h`a? zK`wz)jH${L|=*C;#J#+RVV%IK|Aa_c`8A zBIb`q!(J~O^oR5aYSRpt|67hINlgitxFfWLM3gRso&Fh|qDXfXEfZzXk3`Rg@U zV=2_ubq)`p#3aQ@q4T=^Fh;?r%UsM0ZOlX%3mGS+V^L&FOeya%CA}V~AS*$RQOXr< zgqq6F_f9aVj&p!KsOW1Uu}Qb5d)OZw{)6+f0Ej2(~<^ik$B(It5-$< literal 4464 zcmeH~OHUI~6vxj%3%=hkKn0%*6A2ITv5^)U1)~Ik#JDn-_NENZv`uGf)P))MvUiCw zaiI$n`2eytu8AAt(zr8z0qXyMXQt`&8))Xh?LFr==iZ+4zjx6Q$xetItO-6u4qy@) z8yUSmJU%?4uF7_^*|aRM7ktoc-v0P`?bpNaU4Pc6b??Nht&5=Zc;3awuxla#mNZQe zh*&s-vfsVro8-xU_mRW8z?U$y9-N!(Ck&XMG2d$=WIf?QhMaXa zB91dQ#(eUZ5kJ(y*CKwngTIdWkq-Vg;zv99M#PVG@GlYP`P1V1zrknyCkSD2oj>7| z_YuP4{NM1&`w3w&--b^AvU}ZY#ams<}OJMc_HF+>d8Ir zt<2Y}tGehfYTvgjWlvOHD^H?_c?1RJE2$_~OR?(t;y${oJU?I76@TejP0toUT8pD) zQw`fGwV-OtHU5Gs*$sRX`HZ&9D}LxNI@OvE-D$^mm&MVgvM$uCwJ6I~PwzC`TE1AX zdS1cyd{rrGaqY^2F5A@#s})yO8p@g0j}b4+O!5VFuIdl9vkVx2qGQToz=FyDeIDHC|JwFbpZ(@Uu1sNy bdN&GyiF|l}>86R=7SN@(GY!0>RPEAV9`-Qm diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PackageManagerSettings.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PackageManagerSettings.asset new file mode 100644 index 0000000..6920e3a --- /dev/null +++ b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PackageManagerSettings.asset @@ -0,0 +1,38 @@ +%YAML 1.1 +%TAG !u! tag:unity3d.com,2011: +--- !u!114 &1 +MonoBehaviour: + m_ObjectHideFlags: 61 + m_CorrespondingSourceObject: {fileID: 0} + m_PrefabInstance: {fileID: 0} + m_PrefabAsset: {fileID: 0} + m_GameObject: {fileID: 0} + m_Enabled: 1 + m_EditorHideFlags: 0 + m_Script: {fileID: 13964, guid: 0000000000000000e000000000000000, type: 0} + m_Name: + m_EditorClassIdentifier: + m_ScopedRegistriesSettingsExpanded: 1 + oneTimeWarningShown: 0 + m_Registries: + - m_Id: main + m_Name: + m_Url: https://packages.unity.com + m_Scopes: [] + m_IsDefault: 1 + m_UserSelectedRegistryName: + m_UserAddingNewScopedRegistry: 0 + m_RegistryInfoDraft: + m_ErrorMessage: + m_Original: + m_Id: + m_Name: + m_Url: + m_Scopes: [] + m_IsDefault: 0 + m_Modified: 0 + m_Name: + m_Url: + m_Scopes: + - + m_SelectedScopeIndex: 0 diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PresetManager.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/PresetManager.asset index 889a54159a97142fd66c6c2af4f4b11e8373b655..67a94daefe2e6bce3ec73546ad7cda94f702ad22 100644 GIT binary patch literal 146 zcmY$5boBL6Fw`^TQVnr*S5PcfR47SIw<^ucEU7e3(M!(H)iE+KG_>N<)zt;b8X8-e znOGW{nOiET8FB>_r52}__$KBhrl%HJaVaR|#``B_r6!knWTvFL* mG81z$t5Q?KQj3Z+^Yg3}jKHd0QqvMkb4noQ02No)asdFNTr08w literal 4104 zcmeH_yGlbr5Qb-S^?uhzL41LD11})KA_T z))uxtipT%oJrUy@2s^0<70jbaby&}rmjh(}R>l2DT;B!hGj&N(SW%adkK7A0q-$ze*8 zQi_S*K;8wX9yBE>(_ci+{&vH(;Thbegqpn_KRhWb;Ag0LZYQEWH`Veko}rdGKi%@K zZgS&k*}_h~i#2t!JYjUZLCyKSh|#-R=9?dKnS1R0o4WP0A4YzM$oag>03nR`sUtqZ z$p_&yg;!GlrVc}fX~Tc(FdXs1xnJ{x4e!J|^v~tEnDY<3i)yf5t_2e1w#5*e?p&Sv z67X|e-1LI-rBAY&Lum)?vn~_@4$POUcB$Y6rN2FSuUg&p_A0V(kG1n_ttSg7E!m|k qCfW=yG8P4sH~$QF#eJOuP64NYQ@|K=V2wAO(BH9F!bSPg>8W#S5#XjFzmhXn= zWu5^`STrn_8yK_$a42}Ir0Zr?QtDw)|9@f}-rQeNVMR#m#7jR)v*(VxOZhZ<&DwH+^TkJ}--=)AG(UA#g opN97D(%g31IH^ST<4s{h{Kp}H5AxMgy5cbLANwS9`Jk$wKKn^k?f?J) literal 4308 zcmeHKyG{Z@6urQL4}3rHRcL2NKoiu)P~d|EO;n6_W`gSmg++Ilf^K8ykMILlc6@}k z{)3h#vfeWbgf-MQ&Lx+bd*;raGiSEBMB#6usaGPJ=8*@YjZ}I&xtUCf47EMa3xyav z#)9WPKRw2qU+tH2V)--kv6^4%EQPVmwngOf7EcB)QHXzU5pv@U07og3csP{i863FW z-$H(b-WglrJsPJ**kQmA8N2P|W6iIl1?ohRn?-&!P$vdldX!FhC+Z*`>ft_52mn6A zJPzVH0=(t(>E}5Lob5MH+TzZh_L=X3QE^rKpgke)fG<3_R>eX4za>}Mr@Z9Ra)v?PFk?M^s&qb>bD7wiS>3_F(q literal 4116 zcmZQzV02_)5D;NtU=Re-K#GCE$iUD-&sfhO(Tw5W|Ns9P8G&M~Ac_C~Z$B!ZwoE@N zB8Kt!6}j#g_t=1Vogp^xuDM~342vlgLo{+IO!Bt{Mwu4Hm{(EhQiiAhG+2fs^ z*;)7Bli3tSLFDyU$r$zO9@03EYtHn3NCP6u`-edk#h&l`_H`Hy&|T!c+V_#*9Ee_m z){N&W_7E!9^Ua6Bo*9Lw0viww46HyhT(B>oZy*&DJVueLPC4EbK%1&^y#l3Yg2LZD z-2vD0g1*WkMq8~b6^9|NSWpujkV4cnXgLjcQ3#fyn%?%&1WSOBdmUn3mx~%Dx ztnG@_3mY_9*w)|-u~`3iHs z)L81eYWYg&?VeXV*!EqwPEe>ZE@5K+*dd;TQz;ldL7S@y>HFtU*D6?;^$1yFPT=}d HkHh~0sy7m8 literal 4328 zcmeHKNpI9J6n3VRvQze@Kv~KTGfZ13yHcvMNJTBQJt2gmBr^@nB%>sQC|vv}IC1C3 zg(FAc3O|4YXC#CW;=l=p_t`Ox6UZHDp5$le`~2Q#KReTuv6Z(N>;J?U+e|%mj18Zv zo+}TRM{8B~tJCQi24QF5I-RROr~AL&dGjv*^8MA*`uo?H2^}K}ENqN1P9Yufz=api zpc&757=LLnzKjseS236Xeu`r65)ZrtFlCD0LKyfSa3-8I@YgB-UV4N+G#H1IX0Vb` zB?Jw8FTsYHkQh_OkHig74#X}On9ft3_}#QCZEZ3N6E2T%Ii`E3Gbf{|vBYWn=>E@#%iOsk)|M@#V~?fz{AVJa56 zO5*-LAPD>0wnT{$c--G7^n|)?2WoP7Vc7pu8lmBC?*Pi-q^Wpy|92`P!>e@<05=no zI^=&rJz5X7UDS&5?*^YTrLXeuNpTn|{;e1@HVDv!lLq|{G(^Ms?gh-@q^WqdzkQ0x z@GAfQfADI32f&+4laL?p|7U`rKLm<%cwyQ5bC6KOG$W5z;r(S{vFQoQvV0x z&_6HuTR_mNRF5KtLP3ue-v4@ z_38Sj5nrHxCYN8=r@wQV^~v+!kktPy@r=Vs%icfyP8a=tod=)9qRXEDg&c3NofLqE zxQhtlaMH5x-zC7NSvQV7zaFvXy*W3EZw8J_!^wxPA5S-&`LLm$ zsFv!fo=u573fyrf2jaIC>P?m z6`ikCtd>`9+g90b1Z}6>#;3uEQ?`R<_yAV(ZKqW@cPKqqd@cMvJ!*vy abCtJ6e|k?!y?lO5Ce!~>PQHF5rTO1C4WZKj diff --git a/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/VFXManager.asset b/tutorials/Unity/How-to-make-a-configurable-camera-with-the-new-Input-System/projects/finishedProject/ProjectSettings/VFXManager.asset index df893d2cfaa24899022374a8ffb1a5fc1137f014..3a95c98bec50cf72538061fd26eee95398f72128 100644 GIT binary patch literal 308 zcmZ{e!EVAZ5Jd0(ise90O%xL~1>a~VySEI3PRdW`Q#dvMC@d3z_(m{pa+O)V{1^gHJbMLNCLtUdEGi2{a+mgI- zJEs-lSp5TS7~U9%5{Zm$&KpH10dc)F7t~wRp(J$Sr!?b5ym`cxx~#Azbu%J;VE@eu BUiSb1 literal 4116 zcmeH^O-chn5QVE9<8KxU?y~R(!$iR-h=>WnEQHYk5nM=Pnq(vy!`QkDv`g_G9>8O` z*QHr{i?pwLJcFw$cvSV*)m8ACNWBnkY!T5WG7`~F(%g@C<3#V#+svx=*0h+8;XL=I1UI5_5t-Xe1EirgX~_f=A~j(QuaLkkdxLiLRq z32N?-0&{`Km~(*h%HJJEf-5=&KLO*tHDqA!S4~tb=1aipn0XZDH}Hn%FEbB{=p4Ow z5TAJm=gaQZnJ)Cel$55nJZ#^OCy&--L)|y!5shzpML#dit*r<^Hy@c^2SuvwFccT2 zKy#W;OlGXji@^h5h4IxA> Date: Wed, 6 Apr 2022 09:52:29 -0700 Subject: [PATCH 3/6] Update README.md --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index cc536c7..78d7f9e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ ![twitter](https://img.shields.io/twitter/follow/yecats131?style=social) ![Twitter](https://img.shields.io/twitter/follow/whatupgames?style=social) +> # Tutorials are moving! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) + > Web friendly versions of the tutorials can be found here: https://gamedev-resources.com/ # Game Dev Tutorials & Resources From fec4f7a802cc423424305cf41fb3829716cfa5cb Mon Sep 17 00:00:00 2001 From: Stacey <4108756+Yecats@users.noreply.github.com> Date: Fri, 15 Apr 2022 12:44:57 -0700 Subject: [PATCH 4/6] Update README.md --- README.md | 29 ++--------------------------- 1 file changed, 2 insertions(+), 27 deletions(-) diff --git a/README.md b/README.md index 78d7f9e..79a3aa6 100644 --- a/README.md +++ b/README.md @@ -1,30 +1,5 @@ ![twitter](https://img.shields.io/twitter/follow/yecats131?style=social) ![Twitter](https://img.shields.io/twitter/follow/whatupgames?style=social) -> # Tutorials are moving! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) +> # All tutorials have moved! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) -> Web friendly versions of the tutorials can be found here: https://gamedev-resources.com/ - -# Game Dev Tutorials & Resources -This repository will house various game development tutorials and/or cover helpful tips/tricks. Whenever possible, each tutorial will have a starter and finished project so that you can follow along. - -## Latest Tutorials -View the complete list of tutorials [here](./tutorials/). - -1. **[November 2021]** [Create a map system with UI Toolkit](./tutorials/Unity/create-a-map-system-with-ui-toolkit): Learn advanced UI Toolkit techniques such as complex selectors, animations, and more, while creating a full and mini map system. -2. **[November 2021]** [Create a compass with uGUI](./tutorials/Unity/create-a-compass-with-ugui): Keep players engaged with a compass that features key objectives around the world for them to complete. -3. **[September 2021]** [Code the grid based inventory system](./tutorials/Unity/ui-toolkit-spatial-inventory-pt2): Learn the basics of interacting with UI Toolkit from C#, including creating elements, registering mouse events, and more. - -## How to find out when new content is posted -The best way to get notified is to [sign up for the newsletter](https://gamedev-resources.com). Two other options are to follow me on Twitter ([@yecats131](https://twitter.com/yecats131)) or watch this repository. - -## How this repository is organized -Any artifacts relating to a tutorial will be available in the *Tutorials* folder. Artifacts will typically be code samples or full projects. - -You can find the list of tutorials organized by engine and topic [here](./tutorials/readme.md). - -## Feedback and topic requests -Have a topic you'd like to see covered? A great resource that should be listed? Or perhaps just some general feedback? Great! You can send it via: - -1. A [GitHub Issue](https://github.com/yecats/GameDevTutorials/issues) and/or Pull Request -2. Twitter at [@yecats131](https://twitter.com/yecats131) -3. Email [stacey@whatupgames.com](mailto:stacey@whatupgames.com) +Web friendly versions of the tutorials can be found here: https://gamedev-resources.com/ From 7b586c711eff133bd64e42633785f24e0b452d4e Mon Sep 17 00:00:00 2001 From: Stacey <4108756+Yecats@users.noreply.github.com> Date: Sun, 24 Apr 2022 12:34:19 -0700 Subject: [PATCH 5/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 79a3aa6..9bb5d24 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ![twitter](https://img.shields.io/twitter/follow/yecats131?style=social) ![Twitter](https://img.shields.io/twitter/follow/whatupgames?style=social) -> # All tutorials have moved! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) +# All tutorials have moved! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) Web friendly versions of the tutorials can be found here: https://gamedev-resources.com/ From c3015b43109908b0bc8edd75914a495602079fad Mon Sep 17 00:00:00 2001 From: Stacey <4108756+Yecats@users.noreply.github.com> Date: Sun, 24 Apr 2022 12:34:30 -0700 Subject: [PATCH 6/6] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9bb5d24..4aa95cb 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ ![twitter](https://img.shields.io/twitter/follow/yecats131?style=social) ![Twitter](https://img.shields.io/twitter/follow/whatupgames?style=social) -# All tutorials have moved! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources) +# All tutorials have moved! They're now broken into their own repo and can be found [here](https://github.com/gamedev-resources). Web friendly versions of the tutorials can be found here: https://gamedev-resources.com/