├── .gitignore ├── Assets ├── Plugins.meta ├── Scenes.meta ├── Scenes │ ├── TweetWithScreenShotSample.unity │ └── TweetWithScreenShotSample.unity.meta ├── TweetWithScreenShot.meta └── TweetWithScreenShot │ ├── Plugins.meta │ ├── Plugins │ ├── WebGL.meta │ └── WebGL │ │ ├── OpenWindow.jslib │ │ └── OpenWindow.jslib.meta │ ├── Scripts.meta │ └── Scripts │ ├── Demo.cs │ ├── Demo.cs.meta │ ├── TweetManager.cs │ └── TweetManager.cs.meta ├── LICENSE ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── ClusterInputManager.asset ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── NavMeshAreas.asset ├── NetworkManager.asset ├── PackageManagerSettings.asset ├── Physics2DSettings.asset ├── PresetManager.asset ├── ProjectSettings.asset ├── ProjectVersion.txt ├── QualitySettings.asset ├── TagManager.asset ├── TimeManager.asset ├── UnityConnectSettings.asset ├── VFXManager.asset ├── VersionControlSettings.asset └── XRSettings.asset ├── README.md ├── TweetWithScreenShot.unitypackage └── UserSettings └── EditorUserSettings.asset /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/.gitignore -------------------------------------------------------------------------------- /Assets/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/Plugins.meta -------------------------------------------------------------------------------- /Assets/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/Scenes.meta -------------------------------------------------------------------------------- /Assets/Scenes/TweetWithScreenShotSample.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/Scenes/TweetWithScreenShotSample.unity -------------------------------------------------------------------------------- /Assets/Scenes/TweetWithScreenShotSample.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/Scenes/TweetWithScreenShotSample.unity.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Plugins.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Plugins/WebGL.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Plugins/WebGL.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Plugins/WebGL/OpenWindow.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Plugins/WebGL/OpenWindow.jslib -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Plugins/WebGL/OpenWindow.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Plugins/WebGL/OpenWindow.jslib.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Scripts.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Scripts/Demo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Scripts/Demo.cs -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Scripts/Demo.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Scripts/Demo.cs.meta -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Scripts/TweetManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Scripts/TweetManager.cs -------------------------------------------------------------------------------- /Assets/TweetWithScreenShot/Scripts/TweetManager.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Assets/TweetWithScreenShot/Scripts/TweetManager.cs.meta -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/LICENSE -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/README.md -------------------------------------------------------------------------------- /TweetWithScreenShot.unitypackage: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/TweetWithScreenShot.unitypackage -------------------------------------------------------------------------------- /UserSettings/EditorUserSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ttyyamada/TweetWithScreenShotInWebGL/HEAD/UserSettings/EditorUserSettings.asset --------------------------------------------------------------------------------