├── ClassTemplate.cs ├── LICENSE.md ├── README.md ├── application ├── AndroidUtils.cs └── ApplicationChrome.cs ├── camera └── GazeWatcher.cs ├── data ├── Editor │ └── PersistentDataTests.cs ├── ObjectPool.cs ├── PersistentData.cs ├── ValueList.cs └── serialization │ └── json │ ├── Editor │ └── JSONTests.cs │ ├── JSON.cs │ ├── JSONArray.cs │ ├── JSONDictUtils.cs │ ├── JSONEncoder.cs │ ├── JSONLiteral.cs │ ├── JSONNumber.cs │ ├── JSONObject.cs │ ├── JSONParser.cs │ ├── JSONString.cs │ ├── JSONStringifyOptions.cs │ └── JSONValue.cs ├── game ├── Editor │ └── GlobalConfigEditor.cs ├── GameLooper.cs ├── GameManager.cs ├── GlobalConfigGO.cs ├── SceneManager.cs ├── TrackingManager.cs ├── navigation │ ├── NavigatorManager.cs │ └── NavigatorScene.cs └── services │ └── ServiceLocator.cs ├── geometry ├── FlatMesh.cs ├── GeomUtils.cs └── objects │ ├── Circle.cs │ ├── CustomMeshObject.cs │ ├── Editor │ └── RoundedCubeEditor.cs │ ├── LineQuad.cs │ ├── RoundedCube.cs │ └── UVLine.cs ├── localization └── ValueListManager.cs ├── logging └── D.cs ├── net ├── kongregate │ ├── KongregateAPI.cs │ └── README.md └── newgrounds │ ├── API.cs │ ├── GameObjectSurrogate.cs │ ├── README.md │ ├── data │ └── Medal.cs │ └── services │ ├── BasicService.cs │ ├── PostScoreService.cs │ └── UnlockMedalService.cs ├── objects ├── MeshColliderCreator.cs ├── ModelResizer.cs ├── SimpleButton.cs ├── TextMeshSharpener.cs └── layout │ ├── AutoAligner.cs │ ├── AutoLayoutElement.cs │ └── AutoResizer.cs ├── overlays ├── FPSDisplay.cs └── HoloLensStatusDisplay.cs ├── textures └── Texture2DUtils.cs ├── transitions ├── Easing.cs ├── ZTween.cs └── ZTweenSurrogate.cs └── utils ├── ByteUtils.cs ├── Editor └── MathUtilsTests.cs ├── GameObjectUtils.cs ├── JSONUtils.cs ├── MathUtils.cs └── StringUtils.cs /ClassTemplate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/ClassTemplate.cs -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/README.md -------------------------------------------------------------------------------- /application/AndroidUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/application/AndroidUtils.cs -------------------------------------------------------------------------------- /application/ApplicationChrome.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/application/ApplicationChrome.cs -------------------------------------------------------------------------------- /camera/GazeWatcher.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/camera/GazeWatcher.cs -------------------------------------------------------------------------------- /data/Editor/PersistentDataTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/Editor/PersistentDataTests.cs -------------------------------------------------------------------------------- /data/ObjectPool.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/ObjectPool.cs -------------------------------------------------------------------------------- /data/PersistentData.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/PersistentData.cs -------------------------------------------------------------------------------- /data/ValueList.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/ValueList.cs -------------------------------------------------------------------------------- /data/serialization/json/Editor/JSONTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/Editor/JSONTests.cs -------------------------------------------------------------------------------- /data/serialization/json/JSON.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSON.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONArray.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONArray.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONDictUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONDictUtils.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONEncoder.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONLiteral.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONLiteral.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONNumber.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONNumber.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONObject.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONParser.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONParser.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONString.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONString.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONStringifyOptions.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONStringifyOptions.cs -------------------------------------------------------------------------------- /data/serialization/json/JSONValue.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/data/serialization/json/JSONValue.cs -------------------------------------------------------------------------------- /game/Editor/GlobalConfigEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/Editor/GlobalConfigEditor.cs -------------------------------------------------------------------------------- /game/GameLooper.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/GameLooper.cs -------------------------------------------------------------------------------- /game/GameManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/GameManager.cs -------------------------------------------------------------------------------- /game/GlobalConfigGO.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/GlobalConfigGO.cs -------------------------------------------------------------------------------- /game/SceneManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/SceneManager.cs -------------------------------------------------------------------------------- /game/TrackingManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/TrackingManager.cs -------------------------------------------------------------------------------- /game/navigation/NavigatorManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/navigation/NavigatorManager.cs -------------------------------------------------------------------------------- /game/navigation/NavigatorScene.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/navigation/NavigatorScene.cs -------------------------------------------------------------------------------- /game/services/ServiceLocator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/game/services/ServiceLocator.cs -------------------------------------------------------------------------------- /geometry/FlatMesh.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/FlatMesh.cs -------------------------------------------------------------------------------- /geometry/GeomUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/GeomUtils.cs -------------------------------------------------------------------------------- /geometry/objects/Circle.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/Circle.cs -------------------------------------------------------------------------------- /geometry/objects/CustomMeshObject.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/CustomMeshObject.cs -------------------------------------------------------------------------------- /geometry/objects/Editor/RoundedCubeEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/Editor/RoundedCubeEditor.cs -------------------------------------------------------------------------------- /geometry/objects/LineQuad.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/LineQuad.cs -------------------------------------------------------------------------------- /geometry/objects/RoundedCube.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/RoundedCube.cs -------------------------------------------------------------------------------- /geometry/objects/UVLine.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/geometry/objects/UVLine.cs -------------------------------------------------------------------------------- /localization/ValueListManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/localization/ValueListManager.cs -------------------------------------------------------------------------------- /logging/D.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/logging/D.cs -------------------------------------------------------------------------------- /net/kongregate/KongregateAPI.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/kongregate/KongregateAPI.cs -------------------------------------------------------------------------------- /net/kongregate/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/kongregate/README.md -------------------------------------------------------------------------------- /net/newgrounds/API.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/API.cs -------------------------------------------------------------------------------- /net/newgrounds/GameObjectSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/GameObjectSurrogate.cs -------------------------------------------------------------------------------- /net/newgrounds/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/README.md -------------------------------------------------------------------------------- /net/newgrounds/data/Medal.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/data/Medal.cs -------------------------------------------------------------------------------- /net/newgrounds/services/BasicService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/services/BasicService.cs -------------------------------------------------------------------------------- /net/newgrounds/services/PostScoreService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/services/PostScoreService.cs -------------------------------------------------------------------------------- /net/newgrounds/services/UnlockMedalService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/net/newgrounds/services/UnlockMedalService.cs -------------------------------------------------------------------------------- /objects/MeshColliderCreator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/MeshColliderCreator.cs -------------------------------------------------------------------------------- /objects/ModelResizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/ModelResizer.cs -------------------------------------------------------------------------------- /objects/SimpleButton.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/SimpleButton.cs -------------------------------------------------------------------------------- /objects/TextMeshSharpener.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/TextMeshSharpener.cs -------------------------------------------------------------------------------- /objects/layout/AutoAligner.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/layout/AutoAligner.cs -------------------------------------------------------------------------------- /objects/layout/AutoLayoutElement.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/layout/AutoLayoutElement.cs -------------------------------------------------------------------------------- /objects/layout/AutoResizer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/objects/layout/AutoResizer.cs -------------------------------------------------------------------------------- /overlays/FPSDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/overlays/FPSDisplay.cs -------------------------------------------------------------------------------- /overlays/HoloLensStatusDisplay.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/overlays/HoloLensStatusDisplay.cs -------------------------------------------------------------------------------- /textures/Texture2DUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/textures/Texture2DUtils.cs -------------------------------------------------------------------------------- /transitions/Easing.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/transitions/Easing.cs -------------------------------------------------------------------------------- /transitions/ZTween.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/transitions/ZTween.cs -------------------------------------------------------------------------------- /transitions/ZTweenSurrogate.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/transitions/ZTweenSurrogate.cs -------------------------------------------------------------------------------- /utils/ByteUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/ByteUtils.cs -------------------------------------------------------------------------------- /utils/Editor/MathUtilsTests.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/Editor/MathUtilsTests.cs -------------------------------------------------------------------------------- /utils/GameObjectUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/GameObjectUtils.cs -------------------------------------------------------------------------------- /utils/JSONUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/JSONUtils.cs -------------------------------------------------------------------------------- /utils/MathUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/MathUtils.cs -------------------------------------------------------------------------------- /utils/StringUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zeh/unity-tidbits/HEAD/utils/StringUtils.cs --------------------------------------------------------------------------------