├── .gitignore ├── Gems ├── Animating │ ├── AnimationControls.cs │ ├── AutoAnimator.cs │ ├── CubismParameterInfo.cs │ ├── CubismPartInfo.cs │ ├── ParamSliderPrefabs │ │ └── paramScroll.prefab │ ├── ParamSliders.cs │ ├── PartSliderPrefabs │ │ └── partScroll.prefab │ ├── PartSliders.cs │ ├── PhysicsController.cs │ └── PhysicsControllerPrefabs │ │ └── PhysicsToggle.prefab └── Misc │ ├── BGColor.cs │ ├── CubismRecorder.cs │ ├── CubismRecorderPrefabs │ └── RecordPanel.prefab │ ├── CubismRecorderResources │ ├── CubismCameraCapture.cs │ ├── CubismCaptureShader.shader │ └── RecordMaterial.mat │ └── LookAround.cs ├── LICENSE ├── README.md └── images └── viewer_screenshot_v1_3_2.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/.gitignore -------------------------------------------------------------------------------- /Gems/Animating/AnimationControls.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/AnimationControls.cs -------------------------------------------------------------------------------- /Gems/Animating/AutoAnimator.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/AutoAnimator.cs -------------------------------------------------------------------------------- /Gems/Animating/CubismParameterInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/CubismParameterInfo.cs -------------------------------------------------------------------------------- /Gems/Animating/CubismPartInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/CubismPartInfo.cs -------------------------------------------------------------------------------- /Gems/Animating/ParamSliderPrefabs/paramScroll.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/ParamSliderPrefabs/paramScroll.prefab -------------------------------------------------------------------------------- /Gems/Animating/ParamSliders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/ParamSliders.cs -------------------------------------------------------------------------------- /Gems/Animating/PartSliderPrefabs/partScroll.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/PartSliderPrefabs/partScroll.prefab -------------------------------------------------------------------------------- /Gems/Animating/PartSliders.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/PartSliders.cs -------------------------------------------------------------------------------- /Gems/Animating/PhysicsController.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/PhysicsController.cs -------------------------------------------------------------------------------- /Gems/Animating/PhysicsControllerPrefabs/PhysicsToggle.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Animating/PhysicsControllerPrefabs/PhysicsToggle.prefab -------------------------------------------------------------------------------- /Gems/Misc/BGColor.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/BGColor.cs -------------------------------------------------------------------------------- /Gems/Misc/CubismRecorder.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/CubismRecorder.cs -------------------------------------------------------------------------------- /Gems/Misc/CubismRecorderPrefabs/RecordPanel.prefab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/CubismRecorderPrefabs/RecordPanel.prefab -------------------------------------------------------------------------------- /Gems/Misc/CubismRecorderResources/CubismCameraCapture.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/CubismRecorderResources/CubismCameraCapture.cs -------------------------------------------------------------------------------- /Gems/Misc/CubismRecorderResources/CubismCaptureShader.shader: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/CubismRecorderResources/CubismCaptureShader.shader -------------------------------------------------------------------------------- /Gems/Misc/CubismRecorderResources/RecordMaterial.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/CubismRecorderResources/RecordMaterial.mat -------------------------------------------------------------------------------- /Gems/Misc/LookAround.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/Gems/Misc/LookAround.cs -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/README.md -------------------------------------------------------------------------------- /images/viewer_screenshot_v1_3_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DenchiSoft/CubismViewerGems/HEAD/images/viewer_screenshot_v1_3_2.png --------------------------------------------------------------------------------