├── .gitattributes ├── .gitignore ├── Assets ├── TORISOUP.meta └── TORISOUP │ ├── UnityGifRecorder.meta │ └── UnityGifRecorder │ ├── Demo.meta │ ├── Demo │ ├── Animations.cs │ ├── Animations.cs.meta │ ├── Cube.mat │ ├── Cube.mat.meta │ ├── Demo.unity │ ├── Demo.unity.meta │ ├── RecordSample.cs │ ├── RecordSample.cs.meta │ ├── output.meta │ └── output │ │ ├── TestGifRecord.gif │ │ └── TestGifRecord.gif.meta │ ├── Moments Recorder.meta │ ├── Moments Recorder │ ├── LICENSE.txt │ ├── LICENSE.txt.meta │ ├── Scripts.meta │ └── Scripts │ │ ├── Editor.meta │ │ ├── Editor │ │ ├── RecorderEditor.cs │ │ └── RecorderEditor.cs.meta │ │ ├── Gif.meta │ │ ├── Gif │ │ ├── GifEncoder.cs │ │ ├── GifEncoder.cs.meta │ │ ├── GifFrame.cs │ │ ├── GifFrame.cs.meta │ │ ├── LzwEncoder.cs │ │ ├── LzwEncoder.cs.meta │ │ ├── NeuQuant.cs │ │ └── NeuQuant.cs.meta │ │ ├── MinAttribute.cs │ │ ├── MinAttribute.cs.meta │ │ ├── Recorder.cs │ │ ├── Recorder.cs.meta │ │ ├── ReflectionUtils.cs │ │ ├── ReflectionUtils.cs.meta │ │ ├── Worker.cs │ │ └── Worker.cs.meta │ ├── Scripts.meta │ ├── Scripts │ ├── UnityGifRecorder.cs │ └── UnityGifRecorder.cs.meta │ ├── UnityGifRecorder.asmdef │ └── UnityGifRecorder.asmdef.meta ├── LICENSE.txt ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset └── XRSettings.asset └── README.md /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/TORISOUP.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Animations.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Animations.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Animations.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Animations.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Cube.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Cube.mat -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Cube.mat.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Cube.mat.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Demo.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Demo.unity -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/Demo.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/Demo.unity.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/RecordSample.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/RecordSample.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/RecordSample.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/RecordSample.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/output.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/output.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/output/TestGifRecord.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/output/TestGifRecord.gif -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Demo/output/TestGifRecord.gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Demo/output/TestGifRecord.gif.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/LICENSE.txt -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/LICENSE.txt.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/LICENSE.txt.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor/RecorderEditor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor/RecorderEditor.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor/RecorderEditor.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Editor/RecorderEditor.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifEncoder.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifEncoder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifEncoder.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifFrame.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifFrame.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifFrame.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/GifFrame.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/LzwEncoder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/LzwEncoder.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/LzwEncoder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/LzwEncoder.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/NeuQuant.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/NeuQuant.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/NeuQuant.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Gif/NeuQuant.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/MinAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/MinAttribute.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/MinAttribute.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/MinAttribute.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Recorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Recorder.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Recorder.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Recorder.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/ReflectionUtils.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/ReflectionUtils.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/ReflectionUtils.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/ReflectionUtils.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Worker.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Worker.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Worker.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Moments Recorder/Scripts/Worker.cs.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Scripts.meta -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Scripts/UnityGifRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/Scripts/UnityGifRecorder.cs -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/Scripts/UnityGifRecorder.cs.meta: -------------------------------------------------------------------------------- 1 | fileFormatVersion: 2 2 | guid: 476675a1dd7b4d9fa048e1227c7786a9 3 | timeCreated: 1617453763 -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/UnityGifRecorder.asmdef: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/UnityGifRecorder.asmdef -------------------------------------------------------------------------------- /Assets/TORISOUP/UnityGifRecorder/UnityGifRecorder.asmdef.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Assets/TORISOUP/UnityGifRecorder/UnityGifRecorder.asmdef.meta -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TORISOUP/UnityGifRecorder/HEAD/README.md --------------------------------------------------------------------------------