├── .gitignore ├── Assets ├── GameObjectBrush.meta └── GameObjectBrush │ ├── Brushes.meta │ ├── Brushes │ ├── Cube BrushCollection.asset │ ├── Cube BrushCollection.asset.meta │ ├── Sphere BrushCollection.asset │ └── Sphere BrushCollection.asset.meta │ ├── Demo.unity │ ├── Demo.unity.meta │ ├── GameObject Brush v3.3.pdf │ ├── GameObject Brush v3.3.pdf.meta │ ├── GameObjectBrush.Editor.asmdef │ ├── GameObjectBrush.Editor.asmdef.meta │ ├── Materials.meta │ ├── Materials │ ├── Blue.mat │ ├── Blue.mat.meta │ ├── Default.mat │ ├── Default.mat.meta │ ├── Green.mat │ ├── Green.mat.meta │ ├── Red.mat │ ├── Red.mat.meta │ ├── Yellow.mat │ └── Yellow.mat.meta │ ├── Prefabs.meta │ ├── Prefabs │ ├── Cube Blue.prefab │ ├── Cube Blue.prefab.meta │ ├── Cube Green.prefab │ ├── Cube Green.prefab.meta │ ├── Cube Red.prefab │ ├── Cube Red.prefab.meta │ ├── Cube Yellow.prefab │ ├── Cube Yellow.prefab.meta │ ├── Multi Object Prefab.prefab │ ├── Multi Object Prefab.prefab.meta │ ├── Sphere Blue.prefab │ ├── Sphere Blue.prefab.meta │ ├── Sphere Green.prefab │ ├── Sphere Green.prefab.meta │ ├── Sphere Red.prefab │ ├── Sphere Red.prefab.meta │ ├── Sphere Yellow.prefab │ └── Sphere Yellow.prefab.meta │ ├── Scripts.meta │ ├── Scripts │ ├── Editor.meta │ └── Editor │ │ ├── AddObjectPopup.cs │ │ ├── AddObjectPopup.cs.meta │ │ ├── BrushCollection.cs │ │ ├── BrushCollection.cs.meta │ │ ├── BrushObject.cs │ │ ├── BrushObject.cs.meta │ │ ├── GameObjectBrushEditor.cs │ │ ├── GameObjectBrushEditor.cs.meta │ │ ├── StringPopupDialog.cs │ │ └── StringPopupDialog.cs.meta │ ├── package.json │ └── package.json.meta ├── GameObject Brush v3.docx ├── Images ├── Align to Surface.PNG ├── Brush Details.PNG ├── BrushCollections.PNG ├── Filter by Slope.PNG ├── GO Brush 1.PNG ├── GO Brush Window.PNG ├── Intercollision.PNG ├── Key Features.PNG ├── Multi Brush Painting.PNG └── Offset from Pivot.PNG ├── LICENSE ├── Packages └── manifest.json ├── Preview.pptx ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset └── UnityConnectSettings.asset ├── README.md └── _config.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/GameObjectBrush.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Brushes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Brushes.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Brushes/Cube BrushCollection.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Brushes/Cube BrushCollection.asset -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Brushes/Cube BrushCollection.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Brushes/Cube BrushCollection.asset.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Brushes/Sphere BrushCollection.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Brushes/Sphere BrushCollection.asset -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Brushes/Sphere BrushCollection.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Brushes/Sphere BrushCollection.asset.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Demo.unity -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/GameObject Brush v3.3.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/GameObject Brush v3.3.pdf -------------------------------------------------------------------------------- /Assets/GameObjectBrush/GameObject Brush v3.3.pdf.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/GameObject Brush v3.3.pdf.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/GameObjectBrush.Editor.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/GameObjectBrush.Editor.asmdef -------------------------------------------------------------------------------- /Assets/GameObjectBrush/GameObjectBrush.Editor.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/GameObjectBrush.Editor.asmdef.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Blue.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Blue.mat -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Blue.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Blue.mat.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Default.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Default.mat -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Default.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Default.mat.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Green.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Green.mat -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Green.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Green.mat.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Red.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Red.mat -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Red.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Red.mat.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Yellow.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Yellow.mat -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Materials/Yellow.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Materials/Yellow.mat.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Blue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Blue.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Blue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Blue.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Green.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Green.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Green.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Green.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Red.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Red.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Red.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Red.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Yellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Yellow.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Cube Yellow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Cube Yellow.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Multi Object Prefab.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Multi Object Prefab.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Multi Object Prefab.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Multi Object Prefab.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Blue.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Blue.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Blue.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Blue.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Green.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Green.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Green.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Green.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Red.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Red.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Red.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Red.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Yellow.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Yellow.prefab -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Prefabs/Sphere Yellow.prefab.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Prefabs/Sphere Yellow.prefab.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/AddObjectPopup.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/AddObjectPopup.cs -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/AddObjectPopup.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/AddObjectPopup.cs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/BrushCollection.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/BrushCollection.cs -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/BrushCollection.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/BrushCollection.cs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/BrushObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/BrushObject.cs -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/BrushObject.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/BrushObject.cs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/GameObjectBrushEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/GameObjectBrushEditor.cs -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/GameObjectBrushEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/GameObjectBrushEditor.cs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/StringPopupDialog.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/StringPopupDialog.cs -------------------------------------------------------------------------------- /Assets/GameObjectBrush/Scripts/Editor/StringPopupDialog.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/Scripts/Editor/StringPopupDialog.cs.meta -------------------------------------------------------------------------------- /Assets/GameObjectBrush/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/package.json -------------------------------------------------------------------------------- /Assets/GameObjectBrush/package.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Assets/GameObjectBrush/package.json.meta -------------------------------------------------------------------------------- /GameObject Brush v3.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/GameObject Brush v3.docx -------------------------------------------------------------------------------- /Images/Align to Surface.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Align to Surface.PNG -------------------------------------------------------------------------------- /Images/Brush Details.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Brush Details.PNG -------------------------------------------------------------------------------- /Images/BrushCollections.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/BrushCollections.PNG -------------------------------------------------------------------------------- /Images/Filter by Slope.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Filter by Slope.PNG -------------------------------------------------------------------------------- /Images/GO Brush 1.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/GO Brush 1.PNG -------------------------------------------------------------------------------- /Images/GO Brush Window.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/GO Brush Window.PNG -------------------------------------------------------------------------------- /Images/Intercollision.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Intercollision.PNG -------------------------------------------------------------------------------- /Images/Key Features.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Key Features.PNG -------------------------------------------------------------------------------- /Images/Multi Brush Painting.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Multi Brush Painting.PNG -------------------------------------------------------------------------------- /Images/Offset from Pivot.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Images/Offset from Pivot.PNG -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Preview.pptx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/Preview.pptx -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- 1 | m_EditorVersion: 2018.2.14f1 2 | -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Kellojo/GameObject-Brush/HEAD/_config.yml --------------------------------------------------------------------------------