├── .gitignore ├── Assets ├── PrefabApplyProtection.meta └── PrefabApplyProtection │ ├── Code.meta │ ├── Code │ ├── KeyboardMover.cs │ ├── KeyboardMover.cs.meta │ ├── Portal.cs │ └── Portal.cs.meta │ ├── Player.prefab │ ├── Player.prefab.meta │ ├── Portal.prefab │ ├── Portal.prefab.meta │ ├── PrefabApplyProtectionA.unity │ ├── PrefabApplyProtectionA.unity.meta │ ├── PrefabApplyProtectionB.unity │ ├── PrefabApplyProtectionB.unity.meta │ ├── PrefabApplyProtectionC.unity │ └── PrefabApplyProtectionC.unity.meta ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Code.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Code.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Code/KeyboardMover.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Code/KeyboardMover.cs -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Code/KeyboardMover.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Code/KeyboardMover.cs.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Code/Portal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Code/Portal.cs -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Code/Portal.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Code/Portal.cs.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Player.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Player.prefab -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Player.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Player.prefab.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Portal.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Portal.prefab -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/Portal.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/Portal.prefab.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionA.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionA.unity -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionA.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionA.unity.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionB.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionB.unity -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionB.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionB.unity.meta -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionC.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionC.unity -------------------------------------------------------------------------------- /Assets/PrefabApplyProtection/PrefabApplyProtectionC.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/Assets/PrefabApplyProtection/PrefabApplyProtectionC.unity.meta -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2017.1.1f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/roboryantron/UnityQuickTips/HEAD/README.md --------------------------------------------------------------------------------