├── .gitignore ├── .vscode └── settings.json ├── Assets ├── WebGLCopyAndPaste.meta └── WebGLCopyAndPaste │ ├── Plugins.meta │ ├── Plugins │ ├── WebGLCopyAndPaste.jslib │ └── WebGLCopyAndPaste.jslib.meta │ ├── Scenes.meta │ ├── Scenes │ ├── WebGLCopyAnPasteSampleScene.unity │ └── WebGLCopyAnPasteSampleScene.unity.meta │ ├── Scripts.meta │ └── Scripts │ ├── WebGLCopyAndPaste.cs │ └── WebGLCopyAndPaste.cs.meta ├── LICENSE.md ├── Packages ├── manifest.json └── packages-lock.json ├── ProjectSettings ├── AudioManager.asset ├── BurstAotSettings_WebGL.json ├── ClusterInputManager.asset ├── CommonBurstAotSettings.json ├── DynamicsManager.asset ├── EditorBuildSettings.asset ├── EditorSettings.asset ├── GraphicsSettings.asset ├── InputManager.asset ├── MemorySettings.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 └── boot.config └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Plugins.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Plugins/WebGLCopyAndPaste.jslib.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scenes.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scenes.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scenes/WebGLCopyAnPasteSampleScene.unity: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scenes/WebGLCopyAnPasteSampleScene.unity -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scenes/WebGLCopyAnPasteSampleScene.unity.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scenes/WebGLCopyAnPasteSampleScene.unity.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scripts.meta -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs -------------------------------------------------------------------------------- /Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs.meta: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Assets/WebGLCopyAndPaste/Scripts/WebGLCopyAndPaste.cs.meta -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Packages/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Packages/manifest.json -------------------------------------------------------------------------------- /Packages/packages-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/Packages/packages-lock.json -------------------------------------------------------------------------------- /ProjectSettings/AudioManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/AudioManager.asset -------------------------------------------------------------------------------- /ProjectSettings/BurstAotSettings_WebGL.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/BurstAotSettings_WebGL.json -------------------------------------------------------------------------------- /ProjectSettings/ClusterInputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/ClusterInputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/CommonBurstAotSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/CommonBurstAotSettings.json -------------------------------------------------------------------------------- /ProjectSettings/DynamicsManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/DynamicsManager.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorBuildSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/EditorBuildSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/EditorSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/EditorSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/GraphicsSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/GraphicsSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/InputManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/InputManager.asset -------------------------------------------------------------------------------- /ProjectSettings/MemorySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/MemorySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/NavMeshAreas.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/NavMeshAreas.asset -------------------------------------------------------------------------------- /ProjectSettings/NetworkManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/NetworkManager.asset -------------------------------------------------------------------------------- /ProjectSettings/PackageManagerSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/PackageManagerSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/Physics2DSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/Physics2DSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/PresetManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/PresetManager.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/ProjectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/ProjectVersion.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/ProjectVersion.txt -------------------------------------------------------------------------------- /ProjectSettings/QualitySettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/QualitySettings.asset -------------------------------------------------------------------------------- /ProjectSettings/TagManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/TagManager.asset -------------------------------------------------------------------------------- /ProjectSettings/TimeManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/TimeManager.asset -------------------------------------------------------------------------------- /ProjectSettings/UnityConnectSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/UnityConnectSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/VFXManager.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/VFXManager.asset -------------------------------------------------------------------------------- /ProjectSettings/VersionControlSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/VersionControlSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/XRSettings.asset: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/ProjectSettings/XRSettings.asset -------------------------------------------------------------------------------- /ProjectSettings/boot.config: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/greggman/unity-webgl-copy-and-paste/HEAD/README.md --------------------------------------------------------------------------------