├── .gitignore ├── .gitmodules ├── LICENSE ├── README.md ├── changelog.txt ├── config.coffee ├── documentation ├── .gitignore └── doxyconf ├── jakefile.coffee ├── jakelib ├── core.jake.coffee ├── deploy.jake.coffee ├── documentation.jake.coffee ├── modules │ ├── doxygen.coffee │ ├── doxygen2sphinx │ │ ├── contentbuffer.coffee │ │ ├── doxygen2sphinx.coffee │ │ ├── internalbase.coffee │ │ ├── reader.coffee │ │ ├── writer.coffee │ │ ├── writers │ │ │ ├── classwriter.coffee │ │ │ └── enumwriter.coffee │ │ ├── writerutil.coffee │ │ └── xmlhelper.coffee │ ├── nugetproject.coffee │ ├── nugetrestore.coffee │ ├── nunit.coffee │ ├── s3.coffee │ ├── shell.coffee │ ├── unitypackage.coffee │ ├── utils.coffee │ └── xbuild.coffee ├── nuget.jake.coffee ├── repo.jake.coffee ├── tasks.coffee ├── test.jake.coffee ├── unity.jake.coffee └── wellfired.jake.coffee ├── package.json └── unity ├── .gitignore ├── Assets ├── Editor.meta ├── Editor │ ├── ExportUnityPackage.cs │ └── ExportUnityPackage.cs.meta ├── Resources.meta ├── Resources │ ├── BillingMode.json │ └── BillingMode.json.meta ├── Scenes.meta └── Scenes │ ├── Test.meta │ ├── Test.unity │ ├── Test.unity.meta │ └── Test │ ├── LightingData.asset │ ├── LightingData.asset.meta │ ├── ReflectionProbe-0.exr │ └── ReflectionProbe-0.exr.meta └── Packages ├── manifest.json └── packages-lock.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/.gitmodules -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/README.md -------------------------------------------------------------------------------- /changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/changelog.txt -------------------------------------------------------------------------------- /config.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/config.coffee -------------------------------------------------------------------------------- /documentation/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/documentation/.gitignore -------------------------------------------------------------------------------- /documentation/doxyconf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/documentation/doxyconf -------------------------------------------------------------------------------- /jakefile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakefile.coffee -------------------------------------------------------------------------------- /jakelib/core.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/core.jake.coffee -------------------------------------------------------------------------------- /jakelib/deploy.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/deploy.jake.coffee -------------------------------------------------------------------------------- /jakelib/documentation.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/documentation.jake.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/contentbuffer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/contentbuffer.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/doxygen2sphinx.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/doxygen2sphinx.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/internalbase.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/internalbase.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/reader.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/reader.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/writer.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/writer.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/writers/classwriter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/writers/classwriter.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/writers/enumwriter.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/writers/enumwriter.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/writerutil.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/writerutil.coffee -------------------------------------------------------------------------------- /jakelib/modules/doxygen2sphinx/xmlhelper.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/doxygen2sphinx/xmlhelper.coffee -------------------------------------------------------------------------------- /jakelib/modules/nugetproject.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/nugetproject.coffee -------------------------------------------------------------------------------- /jakelib/modules/nugetrestore.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/nugetrestore.coffee -------------------------------------------------------------------------------- /jakelib/modules/nunit.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/nunit.coffee -------------------------------------------------------------------------------- /jakelib/modules/s3.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/s3.coffee -------------------------------------------------------------------------------- /jakelib/modules/shell.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/shell.coffee -------------------------------------------------------------------------------- /jakelib/modules/unitypackage.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/unitypackage.coffee -------------------------------------------------------------------------------- /jakelib/modules/utils.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/utils.coffee -------------------------------------------------------------------------------- /jakelib/modules/xbuild.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/modules/xbuild.coffee -------------------------------------------------------------------------------- /jakelib/nuget.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/nuget.jake.coffee -------------------------------------------------------------------------------- /jakelib/repo.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/repo.jake.coffee -------------------------------------------------------------------------------- /jakelib/tasks.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/tasks.coffee -------------------------------------------------------------------------------- /jakelib/test.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/test.jake.coffee -------------------------------------------------------------------------------- /jakelib/unity.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/unity.jake.coffee -------------------------------------------------------------------------------- /jakelib/wellfired.jake.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/jakelib/wellfired.jake.coffee -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/package.json -------------------------------------------------------------------------------- /unity/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/.gitignore -------------------------------------------------------------------------------- /unity/Assets/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Editor.meta -------------------------------------------------------------------------------- /unity/Assets/Editor/ExportUnityPackage.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Editor/ExportUnityPackage.cs -------------------------------------------------------------------------------- /unity/Assets/Editor/ExportUnityPackage.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: f1582ab4c7fff4bb19a5b9ebc7bc0387 -------------------------------------------------------------------------------- /unity/Assets/Resources.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Resources.meta -------------------------------------------------------------------------------- /unity/Assets/Resources/BillingMode.json: -------------------------------------------------------------------------------- 1 | {"androidStore":"GooglePlay"} -------------------------------------------------------------------------------- /unity/Assets/Resources/BillingMode.json.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Resources/BillingMode.json.meta -------------------------------------------------------------------------------- /unity/Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes.meta -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test.meta -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test.unity -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test.unity.meta -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test/LightingData.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test/LightingData.asset -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test/LightingData.asset.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test/LightingData.asset.meta -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test/ReflectionProbe-0.exr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test/ReflectionProbe-0.exr -------------------------------------------------------------------------------- /unity/Assets/Scenes/Test/ReflectionProbe-0.exr.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Assets/Scenes/Test/ReflectionProbe-0.exr.meta -------------------------------------------------------------------------------- /unity/Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Packages/manifest.json -------------------------------------------------------------------------------- /unity/Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ArtOfSettling/UnityInGameConsole/HEAD/unity/Packages/packages-lock.json --------------------------------------------------------------------------------