@alpsckr/unitycli 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +389 -0
- package/contracts/command-contract.json +3972 -0
- package/contracts/stable-session/admission-acquire-v1.schema.json +16 -0
- package/contracts/stable-session/admission-response-v1.schema.json +30 -0
- package/contracts/stable-session/admission-revoke-v1.schema.json +15 -0
- package/contracts/stable-session/admission-transport-v1.json +36 -0
- package/contracts/stable-session/bridge-request-v2.schema.json +26 -0
- package/contracts/stable-session/canonical-path-v1-golden.json +23 -0
- package/contracts/stable-session/completion-contract.schema.json +46 -0
- package/contracts/stable-session/direct-call-semantics.json +102 -0
- package/contracts/stable-session/editor-state.schema.json +92 -0
- package/contracts/stable-session/health-v3.schema.json +47 -0
- package/contracts/stable-session/instance-registry-v3.schema.json +152 -0
- package/contracts/stable-session/removal-map.json +27 -0
- package/contracts/stable-session/request-digest-v1-golden.json +7 -0
- package/contracts/stable-session/runtime-config-v2.schema.json +27 -0
- package/contracts/static-capability-catalog.json +48226 -0
- package/contracts/tool-completion-contract.json +11322 -0
- package/dist/args.d.ts +27 -0
- package/dist/args.js +109 -0
- package/dist/args.js.map +1 -0
- package/dist/bridge/admission.d.ts +28 -0
- package/dist/bridge/admission.js +29 -0
- package/dist/bridge/admission.js.map +1 -0
- package/dist/bridge/args.d.ts +16 -0
- package/dist/bridge/args.js +123 -0
- package/dist/bridge/args.js.map +1 -0
- package/dist/bridge/domains/animation.d.ts +2 -0
- package/dist/bridge/domains/animation.js +199 -0
- package/dist/bridge/domains/animation.js.map +1 -0
- package/dist/bridge/domains/asset.d.ts +2 -0
- package/dist/bridge/domains/asset.js +85 -0
- package/dist/bridge/domains/asset.js.map +1 -0
- package/dist/bridge/domains/build.d.ts +2 -0
- package/dist/bridge/domains/build.js +35 -0
- package/dist/bridge/domains/build.js.map +1 -0
- package/dist/bridge/domains/camera.d.ts +2 -0
- package/dist/bridge/domains/camera.js +54 -0
- package/dist/bridge/domains/camera.js.map +1 -0
- package/dist/bridge/domains/code.d.ts +2 -0
- package/dist/bridge/domains/code.js +17 -0
- package/dist/bridge/domains/code.js.map +1 -0
- package/dist/bridge/domains/console.d.ts +2 -0
- package/dist/bridge/domains/console.js +34 -0
- package/dist/bridge/domains/console.js.map +1 -0
- package/dist/bridge/domains/diagnose.d.ts +2 -0
- package/dist/bridge/domains/diagnose.js +11 -0
- package/dist/bridge/domains/diagnose.js.map +1 -0
- package/dist/bridge/domains/editor.d.ts +2 -0
- package/dist/bridge/domains/editor.js +66 -0
- package/dist/bridge/domains/editor.js.map +1 -0
- package/dist/bridge/domains/extension.d.ts +8 -0
- package/dist/bridge/domains/extension.js +20 -0
- package/dist/bridge/domains/extension.js.map +1 -0
- package/dist/bridge/domains/game-object.d.ts +2 -0
- package/dist/bridge/domains/game-object.js +179 -0
- package/dist/bridge/domains/game-object.js.map +1 -0
- package/dist/bridge/domains/graphics.d.ts +2 -0
- package/dist/bridge/domains/graphics.js +185 -0
- package/dist/bridge/domains/graphics.js.map +1 -0
- package/dist/bridge/domains/material.d.ts +2 -0
- package/dist/bridge/domains/material.js +70 -0
- package/dist/bridge/domains/material.js.map +1 -0
- package/dist/bridge/domains/navmesh.d.ts +2 -0
- package/dist/bridge/domains/navmesh.js +34 -0
- package/dist/bridge/domains/navmesh.js.map +1 -0
- package/dist/bridge/domains/object.d.ts +2 -0
- package/dist/bridge/domains/object.js +43 -0
- package/dist/bridge/domains/object.js.map +1 -0
- package/dist/bridge/domains/occlusion.d.ts +2 -0
- package/dist/bridge/domains/occlusion.js +12 -0
- package/dist/bridge/domains/occlusion.js.map +1 -0
- package/dist/bridge/domains/package.d.ts +2 -0
- package/dist/bridge/domains/package.js +2 -0
- package/dist/bridge/domains/package.js.map +1 -0
- package/dist/bridge/domains/physics.d.ts +2 -0
- package/dist/bridge/domains/physics.js +139 -0
- package/dist/bridge/domains/physics.js.map +1 -0
- package/dist/bridge/domains/prefab.d.ts +2 -0
- package/dist/bridge/domains/prefab.js +104 -0
- package/dist/bridge/domains/prefab.js.map +1 -0
- package/dist/bridge/domains/profiler.d.ts +2 -0
- package/dist/bridge/domains/profiler.js +105 -0
- package/dist/bridge/domains/profiler.js.map +1 -0
- package/dist/bridge/domains/project-tool.d.ts +2 -0
- package/dist/bridge/domains/project-tool.js +46 -0
- package/dist/bridge/domains/project-tool.js.map +1 -0
- package/dist/bridge/domains/reflection.d.ts +2 -0
- package/dist/bridge/domains/reflection.js +48 -0
- package/dist/bridge/domains/reflection.js.map +1 -0
- package/dist/bridge/domains/runtime-tool.d.ts +2 -0
- package/dist/bridge/domains/runtime-tool.js +48 -0
- package/dist/bridge/domains/runtime-tool.js.map +1 -0
- package/dist/bridge/domains/scene.d.ts +2 -0
- package/dist/bridge/domains/scene.js +100 -0
- package/dist/bridge/domains/scene.js.map +1 -0
- package/dist/bridge/domains/screenshot.d.ts +2 -0
- package/dist/bridge/domains/screenshot.js +85 -0
- package/dist/bridge/domains/screenshot.js.map +1 -0
- package/dist/bridge/domains/scriptable-object.d.ts +2 -0
- package/dist/bridge/domains/scriptable-object.js +53 -0
- package/dist/bridge/domains/scriptable-object.js.map +1 -0
- package/dist/bridge/domains/shader.d.ts +2 -0
- package/dist/bridge/domains/shader.js +66 -0
- package/dist/bridge/domains/shader.js.map +1 -0
- package/dist/bridge/domains/texture.d.ts +2 -0
- package/dist/bridge/domains/texture.js +78 -0
- package/dist/bridge/domains/texture.js.map +1 -0
- package/dist/bridge/domains/timeline.d.ts +2 -0
- package/dist/bridge/domains/timeline.js +75 -0
- package/dist/bridge/domains/timeline.js.map +1 -0
- package/dist/bridge/domains/ui.d.ts +2 -0
- package/dist/bridge/domains/ui.js +193 -0
- package/dist/bridge/domains/ui.js.map +1 -0
- package/dist/bridge/index.d.ts +9 -0
- package/dist/bridge/index.js +124 -0
- package/dist/bridge/index.js.map +1 -0
- package/dist/bridge/registry.d.ts +19 -0
- package/dist/bridge/registry.js +114 -0
- package/dist/bridge/registry.js.map +1 -0
- package/dist/bridge/session-supervisor.d.ts +138 -0
- package/dist/bridge/session-supervisor.js +873 -0
- package/dist/bridge/session-supervisor.js.map +1 -0
- package/dist/bridge/types.d.ts +61 -0
- package/dist/bridge/types.js +17 -0
- package/dist/bridge/types.js.map +1 -0
- package/dist/capabilities.d.ts +5 -0
- package/dist/capabilities.js +84 -0
- package/dist/capabilities.js.map +1 -0
- package/dist/cli-commands/command.d.ts +7 -0
- package/dist/cli-commands/command.js +513 -0
- package/dist/cli-commands/command.js.map +1 -0
- package/dist/cli-commands/extension-auto-detect.d.ts +62 -0
- package/dist/cli-commands/extension-auto-detect.js +119 -0
- package/dist/cli-commands/extension-auto-detect.js.map +1 -0
- package/dist/cli-commands/extensions.d.ts +24 -0
- package/dist/cli-commands/extensions.js +428 -0
- package/dist/cli-commands/extensions.js.map +1 -0
- package/dist/cli-commands/package.d.ts +4 -0
- package/dist/cli-commands/package.js +151 -0
- package/dist/cli-commands/package.js.map +1 -0
- package/dist/cli-commands/skill-installer.d.ts +83 -0
- package/dist/cli-commands/skill-installer.js +703 -0
- package/dist/cli-commands/skill-installer.js.map +1 -0
- package/dist/cli-commands/types.d.ts +17 -0
- package/dist/cli-commands/types.js +2 -0
- package/dist/cli-commands/types.js.map +1 -0
- package/dist/cli.d.ts +17 -0
- package/dist/cli.js +302 -0
- package/dist/cli.js.map +1 -0
- package/dist/contracts/command-contract.d.ts +21 -0
- package/dist/contracts/command-contract.js +143 -0
- package/dist/contracts/command-contract.js.map +1 -0
- package/dist/contracts/csharp-command-extractor.d.ts +1 -0
- package/dist/contracts/csharp-command-extractor.js +89 -0
- package/dist/contracts/csharp-command-extractor.js.map +1 -0
- package/dist/contracts/validate-command-contract.d.ts +1 -0
- package/dist/contracts/validate-command-contract.js +86 -0
- package/dist/contracts/validate-command-contract.js.map +1 -0
- package/dist/doctor.d.ts +22 -0
- package/dist/doctor.js +498 -0
- package/dist/doctor.js.map +1 -0
- package/dist/editor-blocker-observer.d.ts +45 -0
- package/dist/editor-blocker-observer.js +55 -0
- package/dist/editor-blocker-observer.js.map +1 -0
- package/dist/editor-dialogs.d.ts +53 -0
- package/dist/editor-dialogs.js +79 -0
- package/dist/editor-dialogs.js.map +1 -0
- package/dist/extension-availability.d.ts +30 -0
- package/dist/extension-availability.js +83 -0
- package/dist/extension-availability.js.map +1 -0
- package/dist/extensions/.generated-bridge-domains/cinemachine.d.ts +2 -0
- package/dist/extensions/.generated-bridge-domains/cinemachine.js +104 -0
- package/dist/extensions/.generated-bridge-domains/cinemachine.js.map +1 -0
- package/dist/extensions/.generated-bridge-domains/hdrp.d.ts +2 -0
- package/dist/extensions/.generated-bridge-domains/hdrp.js +35 -0
- package/dist/extensions/.generated-bridge-domains/hdrp.js.map +1 -0
- package/dist/extensions/.generated-bridge-domains/probuilder.d.ts +13 -0
- package/dist/extensions/.generated-bridge-domains/probuilder.js +342 -0
- package/dist/extensions/.generated-bridge-domains/probuilder.js.map +1 -0
- package/dist/extensions/.generated-bridge-domains/urp.d.ts +2 -0
- package/dist/extensions/.generated-bridge-domains/urp.js +52 -0
- package/dist/extensions/.generated-bridge-domains/urp.js.map +1 -0
- package/dist/extensions/.generated-bridge-domains/vfx.d.ts +2 -0
- package/dist/extensions/.generated-bridge-domains/vfx.js +312 -0
- package/dist/extensions/.generated-bridge-domains/vfx.js.map +1 -0
- package/dist/extensions/.generated-registry-data.d.ts +7 -0
- package/dist/extensions/.generated-registry-data.js +895 -0
- package/dist/extensions/.generated-registry-data.js.map +1 -0
- package/dist/extensions/contribution-loader.d.ts +27 -0
- package/dist/extensions/contribution-loader.js +60 -0
- package/dist/extensions/contribution-loader.js.map +1 -0
- package/dist/extensions/descriptor-loader.d.ts +73 -0
- package/dist/extensions/descriptor-loader.js +126 -0
- package/dist/extensions/descriptor-loader.js.map +1 -0
- package/dist/extensions/index.d.ts +19 -0
- package/dist/extensions/index.js +23 -0
- package/dist/extensions/index.js.map +1 -0
- package/dist/extensions/installer.d.ts +80 -0
- package/dist/extensions/installer.js +594 -0
- package/dist/extensions/installer.js.map +1 -0
- package/dist/extensions/metadata/index.d.ts +15 -0
- package/dist/extensions/metadata/index.js +41 -0
- package/dist/extensions/metadata/index.js.map +1 -0
- package/dist/extensions/metadata/types.d.ts +38 -0
- package/dist/extensions/metadata/types.js +11 -0
- package/dist/extensions/metadata/types.js.map +1 -0
- package/dist/extensions/project-resolver.d.ts +35 -0
- package/dist/extensions/project-resolver.js +61 -0
- package/dist/extensions/project-resolver.js.map +1 -0
- package/dist/extensions/registry.d.ts +86 -0
- package/dist/extensions/registry.js +262 -0
- package/dist/extensions/registry.js.map +1 -0
- package/dist/extensions/tool-manifest.d.ts +29 -0
- package/dist/extensions/tool-manifest.js +53 -0
- package/dist/extensions/tool-manifest.js.map +1 -0
- package/dist/extensions/types.d.ts +115 -0
- package/dist/extensions/types.js +12 -0
- package/dist/extensions/types.js.map +1 -0
- package/dist/instances.d.ts +163 -0
- package/dist/instances.js +1137 -0
- package/dist/instances.js.map +1 -0
- package/dist/output.d.ts +119 -0
- package/dist/output.js +204 -0
- package/dist/output.js.map +1 -0
- package/dist/package-manager.d.ts +280 -0
- package/dist/package-manager.js +1832 -0
- package/dist/package-manager.js.map +1 -0
- package/dist/platform.d.ts +3 -0
- package/dist/platform.js +19 -0
- package/dist/platform.js.map +1 -0
- package/dist/project-identity.d.ts +48 -0
- package/dist/project-identity.js +254 -0
- package/dist/project-identity.js.map +1 -0
- package/dist/project-tool-discovery.d.ts +23 -0
- package/dist/project-tool-discovery.js +292 -0
- package/dist/project-tool-discovery.js.map +1 -0
- package/dist/protocol/envelope.d.ts +64 -0
- package/dist/protocol/envelope.js +8 -0
- package/dist/protocol/envelope.js.map +1 -0
- package/dist/protocol/index.d.ts +7 -0
- package/dist/protocol/index.js +2 -0
- package/dist/protocol/index.js.map +1 -0
- package/dist/runtime-code.d.ts +20 -0
- package/dist/runtime-code.js +232 -0
- package/dist/runtime-code.js.map +1 -0
- package/dist/schema/any-json.d.ts +4 -0
- package/dist/schema/any-json.js +2 -0
- package/dist/schema/any-json.js.map +1 -0
- package/dist/schema/validator.d.ts +7 -0
- package/dist/schema/validator.js +135 -0
- package/dist/schema/validator.js.map +1 -0
- package/dist/services/docs-reflect-cache.d.ts +106 -0
- package/dist/services/docs-reflect-cache.js +301 -0
- package/dist/services/docs-reflect-cache.js.map +1 -0
- package/dist/services/docs-service.d.ts +16 -0
- package/dist/services/docs-service.js +208 -0
- package/dist/services/docs-service.js.map +1 -0
- package/dist/services/reflect-service.d.ts +12 -0
- package/dist/services/reflect-service.js +122 -0
- package/dist/services/reflect-service.js.map +1 -0
- package/dist/static-capability-catalog.d.ts +13 -0
- package/dist/static-capability-catalog.js +41 -0
- package/dist/static-capability-catalog.js.map +1 -0
- package/dist/test-results.d.ts +13 -0
- package/dist/test-results.js +44 -0
- package/dist/test-results.js.map +1 -0
- package/dist/tools/.generated-completion-registry.d.ts +17 -0
- package/dist/tools/.generated-completion-registry.js +5862 -0
- package/dist/tools/.generated-completion-registry.js.map +1 -0
- package/dist/tools/.generated-registry.d.ts +53 -0
- package/dist/tools/.generated-registry.js +55 -0
- package/dist/tools/.generated-registry.js.map +1 -0
- package/dist/tools/.generated-schemas.d.ts +1 -0
- package/dist/tools/.generated-schemas.js +56 -0
- package/dist/tools/.generated-schemas.js.map +1 -0
- package/dist/tools/asset/refresh.d.ts +26 -0
- package/dist/tools/asset/refresh.js +97 -0
- package/dist/tools/asset/refresh.js.map +1 -0
- package/dist/tools/build/run.d.ts +45 -0
- package/dist/tools/build/run.js +115 -0
- package/dist/tools/build/run.js.map +1 -0
- package/dist/tools/catalog.d.ts +33 -0
- package/dist/tools/catalog.js +202 -0
- package/dist/tools/catalog.js.map +1 -0
- package/dist/tools/code/exec.d.ts +53 -0
- package/dist/tools/code/exec.js +59 -0
- package/dist/tools/code/exec.js.map +1 -0
- package/dist/tools/commands.d.ts +5 -0
- package/dist/tools/commands.js +45 -0
- package/dist/tools/commands.js.map +1 -0
- package/dist/tools/completion-probe.d.ts +22 -0
- package/dist/tools/completion-probe.js +2 -0
- package/dist/tools/completion-probe.js.map +1 -0
- package/dist/tools/define.d.ts +77 -0
- package/dist/tools/define.js +58 -0
- package/dist/tools/define.js.map +1 -0
- package/dist/tools/diagnose/capabilities.d.ts +13 -0
- package/dist/tools/diagnose/capabilities.js +34 -0
- package/dist/tools/diagnose/capabilities.js.map +1 -0
- package/dist/tools/dispatcher.d.ts +27 -0
- package/dist/tools/dispatcher.js +971 -0
- package/dist/tools/dispatcher.js.map +1 -0
- package/dist/tools/docs/get.d.ts +22 -0
- package/dist/tools/docs/get.js +22 -0
- package/dist/tools/docs/get.js.map +1 -0
- package/dist/tools/docs/search.d.ts +31 -0
- package/dist/tools/docs/search.js +22 -0
- package/dist/tools/docs/search.js.map +1 -0
- package/dist/tools/editor/compile.d.ts +66 -0
- package/dist/tools/editor/compile.js +225 -0
- package/dist/tools/editor/compile.js.map +1 -0
- package/dist/tools/editor/dialog/click.d.ts +12 -0
- package/dist/tools/editor/dialog/click.js +71 -0
- package/dist/tools/editor/dialog/click.js.map +1 -0
- package/dist/tools/editor/dialogs.d.ts +12 -0
- package/dist/tools/editor/dialogs.js +58 -0
- package/dist/tools/editor/dialogs.js.map +1 -0
- package/dist/tools/editor/readiness.d.ts +13 -0
- package/dist/tools/editor/readiness.js +24 -0
- package/dist/tools/editor/readiness.js.map +1 -0
- package/dist/tools/editor/refresh.d.ts +25 -0
- package/dist/tools/editor/refresh.js +154 -0
- package/dist/tools/editor/refresh.js.map +1 -0
- package/dist/tools/editor/state.d.ts +63 -0
- package/dist/tools/editor/state.js +286 -0
- package/dist/tools/editor/state.js.map +1 -0
- package/dist/tools/errors.d.ts +30 -0
- package/dist/tools/errors.js +46 -0
- package/dist/tools/errors.js.map +1 -0
- package/dist/tools/metadata/derived.d.ts +34 -0
- package/dist/tools/metadata/derived.js +136 -0
- package/dist/tools/metadata/derived.js.map +1 -0
- package/dist/tools/metadata/index.d.ts +34 -0
- package/dist/tools/metadata/index.js +130 -0
- package/dist/tools/metadata/index.js.map +1 -0
- package/dist/tools/metadata/schemas.d.ts +3 -0
- package/dist/tools/metadata/schemas.js +19 -0
- package/dist/tools/metadata/schemas.js.map +1 -0
- package/dist/tools/metadata/status.d.ts +4 -0
- package/dist/tools/metadata/status.js +61 -0
- package/dist/tools/metadata/status.js.map +1 -0
- package/dist/tools/metadata/types.d.ts +79 -0
- package/dist/tools/metadata/types.js +2 -0
- package/dist/tools/metadata/types.js.map +1 -0
- package/dist/tools/navmesh/bake-cancel.d.ts +7 -0
- package/dist/tools/navmesh/bake-cancel.js +21 -0
- package/dist/tools/navmesh/bake-cancel.js.map +1 -0
- package/dist/tools/navmesh/bake-status.d.ts +5 -0
- package/dist/tools/navmesh/bake-status.js +18 -0
- package/dist/tools/navmesh/bake-status.js.map +1 -0
- package/dist/tools/navmesh/bake.d.ts +5 -0
- package/dist/tools/navmesh/bake.js +23 -0
- package/dist/tools/navmesh/bake.js.map +1 -0
- package/dist/tools/navmesh/live.d.ts +86 -0
- package/dist/tools/navmesh/live.js +206 -0
- package/dist/tools/navmesh/live.js.map +1 -0
- package/dist/tools/navmesh/surface-bake.d.ts +5 -0
- package/dist/tools/navmesh/surface-bake.js +24 -0
- package/dist/tools/navmesh/surface-bake.js.map +1 -0
- package/dist/tools/occlusion/bake-cancel.d.ts +7 -0
- package/dist/tools/occlusion/bake-cancel.js +21 -0
- package/dist/tools/occlusion/bake-cancel.js.map +1 -0
- package/dist/tools/occlusion/bake-status.d.ts +5 -0
- package/dist/tools/occlusion/bake-status.js +18 -0
- package/dist/tools/occlusion/bake-status.js.map +1 -0
- package/dist/tools/occlusion/bake.d.ts +11 -0
- package/dist/tools/occlusion/bake.js +23 -0
- package/dist/tools/occlusion/bake.js.map +1 -0
- package/dist/tools/occlusion/live.d.ts +74 -0
- package/dist/tools/occlusion/live.js +201 -0
- package/dist/tools/occlusion/live.js.map +1 -0
- package/dist/tools/package/bridge-remove.d.ts +26 -0
- package/dist/tools/package/bridge-remove.js +32 -0
- package/dist/tools/package/bridge-remove.js.map +1 -0
- package/dist/tools/package/deploy.d.ts +49 -0
- package/dist/tools/package/deploy.js +134 -0
- package/dist/tools/package/deploy.js.map +1 -0
- package/dist/tools/package/embed.d.ts +14 -0
- package/dist/tools/package/embed.js +93 -0
- package/dist/tools/package/embed.js.map +1 -0
- package/dist/tools/package/file-mutation-worker.d.ts +6 -0
- package/dist/tools/package/file-mutation-worker.js +154 -0
- package/dist/tools/package/file-mutation-worker.js.map +1 -0
- package/dist/tools/package/info.d.ts +19 -0
- package/dist/tools/package/info.js +27 -0
- package/dist/tools/package/info.js.map +1 -0
- package/dist/tools/package/install.d.ts +24 -0
- package/dist/tools/package/install.js +65 -0
- package/dist/tools/package/install.js.map +1 -0
- package/dist/tools/package/list.d.ts +27 -0
- package/dist/tools/package/list.js +21 -0
- package/dist/tools/package/list.js.map +1 -0
- package/dist/tools/package/live-resolve.d.ts +46 -0
- package/dist/tools/package/live-resolve.js +497 -0
- package/dist/tools/package/live-resolve.js.map +1 -0
- package/dist/tools/package/public-result.d.ts +4 -0
- package/dist/tools/package/public-result.js +25 -0
- package/dist/tools/package/public-result.js.map +1 -0
- package/dist/tools/package/registry-clear.d.ts +15 -0
- package/dist/tools/package/registry-clear.js +27 -0
- package/dist/tools/package/registry-clear.js.map +1 -0
- package/dist/tools/package/registry-get.d.ts +10 -0
- package/dist/tools/package/registry-get.js +22 -0
- package/dist/tools/package/registry-get.js.map +1 -0
- package/dist/tools/package/registry-set.d.ts +17 -0
- package/dist/tools/package/registry-set.js +28 -0
- package/dist/tools/package/registry-set.js.map +1 -0
- package/dist/tools/package/remove.d.ts +47 -0
- package/dist/tools/package/remove.js +67 -0
- package/dist/tools/package/remove.js.map +1 -0
- package/dist/tools/package/resolve.d.ts +6 -0
- package/dist/tools/package/resolve.js +14 -0
- package/dist/tools/package/resolve.js.map +1 -0
- package/dist/tools/package/restore.d.ts +42 -0
- package/dist/tools/package/restore.js +122 -0
- package/dist/tools/package/restore.js.map +1 -0
- package/dist/tools/package/scoped-registry-add.d.ts +25 -0
- package/dist/tools/package/scoped-registry-add.js +30 -0
- package/dist/tools/package/scoped-registry-add.js.map +1 -0
- package/dist/tools/package/scoped-registry-list.d.ts +14 -0
- package/dist/tools/package/scoped-registry-list.js +22 -0
- package/dist/tools/package/scoped-registry-list.js.map +1 -0
- package/dist/tools/package/scoped-registry-remove.d.ts +29 -0
- package/dist/tools/package/scoped-registry-remove.js +31 -0
- package/dist/tools/package/scoped-registry-remove.js.map +1 -0
- package/dist/tools/package/search.d.ts +17 -0
- package/dist/tools/package/search.js +39 -0
- package/dist/tools/package/search.js.map +1 -0
- package/dist/tools/package/status.d.ts +21 -0
- package/dist/tools/package/status.js +37 -0
- package/dist/tools/package/status.js.map +1 -0
- package/dist/tools/reflect/member.d.ts +22 -0
- package/dist/tools/reflect/member.js +22 -0
- package/dist/tools/reflect/member.js.map +1 -0
- package/dist/tools/reflect/search.d.ts +30 -0
- package/dist/tools/reflect/search.js +22 -0
- package/dist/tools/reflect/search.js.map +1 -0
- package/dist/tools/reflect/type.d.ts +21 -0
- package/dist/tools/reflect/type.js +22 -0
- package/dist/tools/reflect/type.js.map +1 -0
- package/dist/tools/runtime/console.d.ts +24 -0
- package/dist/tools/runtime/console.js +17 -0
- package/dist/tools/runtime/console.js.map +1 -0
- package/dist/tools/runtime/input/key.d.ts +23 -0
- package/dist/tools/runtime/input/key.js +18 -0
- package/dist/tools/runtime/input/key.js.map +1 -0
- package/dist/tools/runtime/input/pointer.d.ts +34 -0
- package/dist/tools/runtime/input/pointer.js +18 -0
- package/dist/tools/runtime/input/pointer.js.map +1 -0
- package/dist/tools/runtime/log.d.ts +20 -0
- package/dist/tools/runtime/log.js +17 -0
- package/dist/tools/runtime/log.js.map +1 -0
- package/dist/tools/runtime/state.d.ts +45 -0
- package/dist/tools/runtime/state.js +17 -0
- package/dist/tools/runtime/state.js.map +1 -0
- package/dist/tools/runtime/target-framerate/set.d.ts +16 -0
- package/dist/tools/runtime/target-framerate/set.js +17 -0
- package/dist/tools/runtime/target-framerate/set.js.map +1 -0
- package/dist/tools/runtime/time-scale/set.d.ts +16 -0
- package/dist/tools/runtime/time-scale/set.js +17 -0
- package/dist/tools/runtime/time-scale/set.js.map +1 -0
- package/dist/tools/runtime/ui/capture-element.d.ts +31 -0
- package/dist/tools/runtime/ui/capture-element.js +17 -0
- package/dist/tools/runtime/ui/capture-element.js.map +1 -0
- package/dist/tools/test/cancel.d.ts +19 -0
- package/dist/tools/test/cancel.js +94 -0
- package/dist/tools/test/cancel.js.map +1 -0
- package/dist/tools/test/run.d.ts +39 -0
- package/dist/tools/test/run.js +101 -0
- package/dist/tools/test/run.js.map +1 -0
- package/dist/tools/tools/describe.d.ts +27 -0
- package/dist/tools/tools/describe.js +35 -0
- package/dist/tools/tools/describe.js.map +1 -0
- package/dist/tools/tools/group-list.d.ts +20 -0
- package/dist/tools/tools/group-list.js +39 -0
- package/dist/tools/tools/group-list.js.map +1 -0
- package/dist/tools/tools/group-summaries.d.ts +3 -0
- package/dist/tools/tools/group-summaries.js +52 -0
- package/dist/tools/tools/group-summaries.js.map +1 -0
- package/dist/tools/tools/group.d.ts +13 -0
- package/dist/tools/tools/group.js +34 -0
- package/dist/tools/tools/group.js.map +1 -0
- package/dist/tools/tools/search.d.ts +17 -0
- package/dist/tools/tools/search.js +42 -0
- package/dist/tools/tools/search.js.map +1 -0
- package/dist/types.d.ts +5 -0
- package/dist/types.js +2 -0
- package/dist/types.js.map +1 -0
- package/dist/unity-project-processes.d.ts +12 -0
- package/dist/unity-project-processes.js +59 -0
- package/dist/unity-project-processes.js.map +1 -0
- package/dist/util.d.ts +11 -0
- package/dist/util.js +22 -0
- package/dist/util.js.map +1 -0
- package/dist/windows-editor-state.d.ts +31 -0
- package/dist/windows-editor-state.js +98 -0
- package/dist/windows-editor-state.js.map +1 -0
- package/docs/README.md +43 -0
- package/docs/availability-differences.md +97 -0
- package/docs/command-execution.md +89 -0
- package/docs/error-codes.md +204 -0
- package/docs/extensions.md +132 -0
- package/docs/risk-and-side-effects.md +93 -0
- package/docs/safety-boundaries.md +103 -0
- package/docs/target-and-instance.md +83 -0
- package/docs/tool-discovery.md +104 -0
- package/docs/tool-execution.md +178 -0
- package/extensions/cinemachine/bridge/domains/cinemachine.ts +115 -0
- package/extensions/cinemachine/docs/cinemachine.md +50 -0
- package/extensions/cinemachine/extension.json +129 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/CinemachineExtensionToolSupport.cs +15 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/CinemachineToolSupport.cs +854 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/aim.cs +96 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/blend.cs +140 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/body.cs +96 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/brain-ensure.cs +16 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/brain-status.cs +12 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/create.cs +147 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/extension-add.cs +13 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/extension-list.cs +13 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/extension-remove.cs +13 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/lens.cs +142 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/noise.cs +126 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/ping.cs +43 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/priority.cs +113 -0
- package/extensions/cinemachine/unitypkg/Editor/Cinemachine/target.cs +84 -0
- package/extensions/cinemachine/unitypkg/UnityCli.Extensions.Cinemachine.Editor.asmdef +18 -0
- package/extensions/hdrp/bridge/domains/hdrp.ts +41 -0
- package/extensions/hdrp/docs/hdrp.md +15 -0
- package/extensions/hdrp/extension.json +31 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/HdrpToolSupport.cs +607 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/settings-get.cs +29 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/settings-set.cs +47 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/volume-add-effect.cs +28 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/volume-create.cs +28 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/volume-info.cs +25 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/volume-list.cs +25 -0
- package/extensions/hdrp/unitypkg/Editor/Hdrp/volume-set.cs +28 -0
- package/extensions/hdrp/unitypkg/UnityCli.Extensions.Hdrp.Editor.asmdef +19 -0
- package/extensions/probuilder/bridge/domains/probuilder.ts +386 -0
- package/extensions/probuilder/docs/probuilder.md +125 -0
- package/extensions/probuilder/extension.json +291 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderAppendCompletionProof.cs +254 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderAtomicReadback.cs +293 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderBevelCompletionProof.cs +299 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderCanonicalMeshSnapshot.cs +951 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderConnectCompletionProof.cs +407 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderEdgeCompletionProof.cs +318 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderErrors.cs +83 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderFaceCompletionProof.cs +152 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderFaceExtrudeCompletionProof.cs +283 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderFlipCompletionProof.cs +170 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderInput.cs +85 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderInsertCompletionProof.cs +674 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderOperationProof.cs +137 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderReflection.cs +1064 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderRefreshUvProof.cs +53 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderSceneTool.cs +184 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderShapeTopologyRecords.g.cs +82 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ProBuilderVertexObjectCompletionProof.cs +346 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/append-vertices-to-edge.cs +118 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/auto-smooth.cs +104 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/bevel-edges.cs +119 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/bridge-edges.cs +113 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/center-pivot.cs +43 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/combine-meshes.cs +58 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/connect-elements.cs +128 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/convert-to-probuilder.cs +40 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/create-poly-shape.cs +55 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/create-polygon.cs +28 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/create-shape.cs +168 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/delete-faces.cs +42 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/detach-faces.cs +46 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/duplicate-and-flip.cs +100 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/extrude-edges.cs +118 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/extrude-faces.cs +110 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/flip-normals.cs +102 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/freeze-transform.cs +45 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/insert-vertex.cs +132 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/merge-faces.cs +44 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/merge-objects.cs +130 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/merge-vertices.cs +109 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/mesh-info.cs +117 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/move-vertices.cs +33 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/ping.cs +51 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/repair-mesh.cs +40 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/select-faces.cs +161 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/set-face-color.cs +24 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/set-face-material.cs +23 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/set-face-uvs.cs +28 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/set-pivot.cs +42 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/set-smoothing.cs +23 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/split-vertices.cs +64 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/subdivide.cs +111 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/validate-mesh.cs +75 -0
- package/extensions/probuilder/unitypkg/Editor/ProBuilder/weld-vertices.cs +112 -0
- package/extensions/probuilder/unitypkg/UnityCli.Extensions.ProBuilder.Editor.asmdef +25 -0
- package/extensions/urp/bridge/domains/urp.ts +62 -0
- package/extensions/urp/docs/urp.md +20 -0
- package/extensions/urp/extension.json +41 -0
- package/extensions/urp/unitypkg/Editor/Urp/UrpFeatureToolSupport.cs +336 -0
- package/extensions/urp/unitypkg/Editor/Urp/UrpToolSupport.cs +801 -0
- package/extensions/urp/unitypkg/Editor/Urp/feature-add.cs +12 -0
- package/extensions/urp/unitypkg/Editor/Urp/feature-configure.cs +12 -0
- package/extensions/urp/unitypkg/Editor/Urp/feature-list.cs +12 -0
- package/extensions/urp/unitypkg/Editor/Urp/feature-remove.cs +12 -0
- package/extensions/urp/unitypkg/Editor/Urp/feature-toggle.cs +12 -0
- package/extensions/urp/unitypkg/Editor/Urp/settings-get.cs +27 -0
- package/extensions/urp/unitypkg/Editor/Urp/settings-set.cs +47 -0
- package/extensions/urp/unitypkg/Editor/Urp/volume-add-effect.cs +33 -0
- package/extensions/urp/unitypkg/Editor/Urp/volume-create.cs +33 -0
- package/extensions/urp/unitypkg/Editor/Urp/volume-info.cs +31 -0
- package/extensions/urp/unitypkg/Editor/Urp/volume-list.cs +39 -0
- package/extensions/urp/unitypkg/Editor/Urp/volume-set.cs +33 -0
- package/extensions/urp/unitypkg/UnityCli.Extensions.Urp.Editor.asmdef +19 -0
- package/extensions/vfx-graph/bridge/domains/vfx.ts +337 -0
- package/extensions/vfx-graph/docs/vfx.md +28 -0
- package/extensions/vfx-graph/extension.json +72 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/VfxActionToolSupport.cs +248 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/VfxToolSupport.cs +1325 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-pause.cs +37 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-play.cs +40 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-reinitialize.cs +37 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-set-rate.cs +36 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-set-seed.cs +42 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/control-stop.cs +37 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/effect-add.cs +55 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/effect-assign.cs +44 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/effect-info.cs +30 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/graph-create.cs +62 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/graph-info.cs +32 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/line-create.cs +75 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/line-positions.cs +100 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/parameter.cs +216 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-clear.cs +39 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-create.cs +80 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-emission.cs +126 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-info.cs +55 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-main.cs +75 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-pause.cs +38 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-play.cs +38 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-shape.cs +148 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/particle-stop.cs +41 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/template-create.cs +58 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/template-list.cs +31 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/trail-create.cs +41 -0
- package/extensions/vfx-graph/unitypkg/Editor/Vfx/trail-set.cs +44 -0
- package/extensions/vfx-graph/unitypkg/UnityCli.Extensions.VfxGraph.Editor.asmdef +18 -0
- package/package.json +46 -0
- package/schemas/error-code.schema.json +70 -0
- package/schemas/extension-descriptor.schema.json +88 -0
- package/schemas/extension-manifest.schema.json +125 -0
- package/schemas/request-envelope.schema.json +34 -0
- package/schemas/response-envelope.schema.json +42 -0
- package/schemas/tool-metadata.schema.json +111 -0
- package/skills/unitycli/SKILL.md +61 -0
- package/skills/unitycli/agents/interface.yaml +30 -0
- package/skills/unitycli/evals/history/2026-08-05-governed-baseline.json +44 -0
- package/skills/unitycli/evals/output/cases.jsonl +5 -0
- package/skills/unitycli/evals/output/fixtures/feedback-scenario.json +27 -0
- package/skills/unitycli/evals/output/schema.json +32 -0
- package/skills/unitycli/evals/semantic_config.json +46 -0
- package/skills/unitycli/evals/trigger_cases.json +39 -0
- package/skills/unitycli/examples/feedback-event.input.json +8 -0
- package/skills/unitycli/examples/feedback-record.output.json +12 -0
- package/skills/unitycli/manifest.json +112 -0
- package/skills/unitycli/references/custom-tools.md +111 -0
- package/skills/unitycli/references/feedback.md +59 -0
- package/skills/unitycli/references/operation-protocol.md +83 -0
- package/skills/unitycli/reports/output_quality_scorecard.md +56 -0
- package/skills/unitycli/reports/trust-report.md +57 -0
- package/skills/unitycli/scripts/record-feedback.ps1 +210 -0
- package/skills/unitycli/security/network_policy.json +18 -0
- package/skills/unitycli/security/permission_policy.json +40 -0
- package/unitypkg/Editor/Bridge/BridgeCommandContext.cs +64 -0
- package/unitypkg/Editor/Bridge/BridgeCommandException.cs +39 -0
- package/unitypkg/Editor/Bridge/BridgeCommandRegistry.cs +172 -0
- package/unitypkg/Editor/Bridge/BridgeHttpServer.cs +534 -0
- package/unitypkg/Editor/Bridge/BridgeResponse.cs +58 -0
- package/unitypkg/Editor/Bridge/BridgeWorkQueue.cs +325 -0
- package/unitypkg/Editor/BridgeStartupStateMachine.cs +81 -0
- package/unitypkg/Editor/Commands/ProjectToolCommands.cs +43 -0
- package/unitypkg/Editor/Commands/RuntimeToolCommands.cs +43 -0
- package/unitypkg/Editor/Generated/UnityCliToolCompletionRegistry.g.cs +428 -0
- package/unitypkg/Editor/Infrastructure/CodeExecSupport.cs +664 -0
- package/unitypkg/Editor/Infrastructure/RegistryOwnershipResolver.cs +148 -0
- package/unitypkg/Editor/Infrastructure/UnityCliActiveOperation.cs +411 -0
- package/unitypkg/Editor/Infrastructure/UnityCliAdmission.cs +485 -0
- package/unitypkg/Editor/Infrastructure/UnityCliArtifacts.cs +110 -0
- package/unitypkg/Editor/Infrastructure/UnityCliAssetRefreshCoordinator.cs +106 -0
- package/unitypkg/Editor/Infrastructure/UnityCliBridgeHelpers.cs +155 -0
- package/unitypkg/Editor/Infrastructure/UnityCliCanonicalProjectPath.cs +325 -0
- package/unitypkg/Editor/Infrastructure/UnityCliCompilationEventBroker.cs +192 -0
- package/unitypkg/Editor/Infrastructure/UnityCliCompileCoordinator.cs +271 -0
- package/unitypkg/Editor/Infrastructure/UnityCliCompletionProbe.cs +515 -0
- package/unitypkg/Editor/Infrastructure/UnityCliEditorStateSnapshot.cs +84 -0
- package/unitypkg/Editor/Infrastructure/UnityCliInstanceRegistry.cs +558 -0
- package/unitypkg/Editor/Infrastructure/UnityCliJson.cs +155 -0
- package/unitypkg/Editor/Infrastructure/UnityCliLargeOutput.cs +128 -0
- package/unitypkg/Editor/Infrastructure/UnityCliLiveBuildCoordinator.cs +230 -0
- package/unitypkg/Editor/Infrastructure/UnityCliLiveRefreshCoordinator.cs +164 -0
- package/unitypkg/Editor/Infrastructure/UnityCliLog.cs +127 -0
- package/unitypkg/Editor/Infrastructure/UnityCliNavMeshBakeCoordinator.cs +2073 -0
- package/unitypkg/Editor/Infrastructure/UnityCliObjectPatch.cs +193 -0
- package/unitypkg/Editor/Infrastructure/UnityCliObjectRef.cs +278 -0
- package/unitypkg/Editor/Infrastructure/UnityCliObjectSerializer.cs +620 -0
- package/unitypkg/Editor/Infrastructure/UnityCliOcclusionBakeCoordinator.cs +1739 -0
- package/unitypkg/Editor/Infrastructure/UnityCliOperationCoordinator.cs +828 -0
- package/unitypkg/Editor/Infrastructure/UnityCliPackageEmbedCoordinator.cs +147 -0
- package/unitypkg/Editor/Infrastructure/UnityCliPackageResolveCoordinator.cs +454 -0
- package/unitypkg/Editor/Infrastructure/UnityCliPackageResolveState.cs +561 -0
- package/unitypkg/Editor/Infrastructure/UnityCliPipelineHandoff.cs +742 -0
- package/unitypkg/Editor/Infrastructure/UnityCliProjectSettings.cs +92 -0
- package/unitypkg/Editor/Infrastructure/UnityCliProtocolRequest.cs +116 -0
- package/unitypkg/Editor/Infrastructure/UnityCliReflection.cs +477 -0
- package/unitypkg/Editor/Infrastructure/UnityCliReloadOperation.cs +664 -0
- package/unitypkg/Editor/Infrastructure/UnityCliRequestDigest.cs +34 -0
- package/unitypkg/Editor/Infrastructure/UnityCliRuntimeBuildInjection.cs +121 -0
- package/unitypkg/Editor/Infrastructure/UnityCliRuntimeExecutor.cs +391 -0
- package/unitypkg/Editor/Infrastructure/UnityCliSceneMutation.cs +84 -0
- package/unitypkg/Editor/Infrastructure/UnityCliScriptableObjectHelpers.cs +235 -0
- package/unitypkg/Editor/Infrastructure/UnityCliSerializer.cs +580 -0
- package/unitypkg/Editor/Infrastructure/UnityCliSessionMutationLease.cs +568 -0
- package/unitypkg/Editor/Infrastructure/UnityCliStateIO.cs +73 -0
- package/unitypkg/Editor/Infrastructure/UnityCliTestRunCoordinator.cs +598 -0
- package/unitypkg/Editor/Infrastructure/UnityCliTransactionLog.cs +112 -0
- package/unitypkg/Editor/Infrastructure/UnityCliValueConverter.cs +146 -0
- package/unitypkg/Editor/Infrastructure/UnityCliWaiter.cs +716 -0
- package/unitypkg/Editor/ProjectTools/IUnityCliTool.cs +152 -0
- package/unitypkg/Editor/ProjectTools/OfficialAttributeToolRegistry.cs +992 -0
- package/unitypkg/Editor/ProjectTools/ProjectToolRegistry.cs +938 -0
- package/unitypkg/Editor/ProjectTools/ProjectToolSchemaValidator.cs +258 -0
- package/unitypkg/Editor/ProjectTools/RegisteredTool.cs +75 -0
- package/unitypkg/Editor/ProjectTools/UnityCliProjectToolContext.cs +68 -0
- package/unitypkg/Editor/ProjectTools/UnityCliSchemaDeriver.cs +297 -0
- package/unitypkg/Editor/Protocol/ProtocolEnvelopeFactory.cs +92 -0
- package/unitypkg/Editor/Protocol/envelope.cs +50 -0
- package/unitypkg/Editor/Roslyn/LICENSE.txt +23 -0
- package/unitypkg/Editor/Roslyn/Microsoft.CodeAnalysis.CSharp.dll +0 -0
- package/unitypkg/Editor/Roslyn/Microsoft.CodeAnalysis.dll +0 -0
- package/unitypkg/Editor/Roslyn/System.Collections.Immutable.dll +0 -0
- package/unitypkg/Editor/Roslyn/System.Reflection.Metadata.dll +0 -0
- package/unitypkg/Editor/Tools/animation/AnimationToolSupport.cs +335 -0
- package/unitypkg/Editor/Tools/animation/AnimatorRuntimeToolSupport.cs +24 -0
- package/unitypkg/Editor/Tools/animation/animator/crossfade.cs +117 -0
- package/unitypkg/Editor/Tools/animation/animator/get-info.cs +24 -0
- package/unitypkg/Editor/Tools/animation/animator/get-parameter.cs +36 -0
- package/unitypkg/Editor/Tools/animation/animator/set-enabled.cs +33 -0
- package/unitypkg/Editor/Tools/animation/animator/set-parameter.cs +71 -0
- package/unitypkg/Editor/Tools/animation/animator/set-speed.cs +33 -0
- package/unitypkg/Editor/Tools/animation/clip/create.cs +48 -0
- package/unitypkg/Editor/Tools/animation/clip/modify.cs +43 -0
- package/unitypkg/Editor/Tools/animation/clip.cs +23 -0
- package/unitypkg/Editor/Tools/animation/play.cs +41 -0
- package/unitypkg/Editor/Tools/animation/state.cs +25 -0
- package/unitypkg/Editor/Tools/animation/stop.cs +45 -0
- package/unitypkg/Editor/Tools/asset/AssetImportSettingsToolSupport.cs +633 -0
- package/unitypkg/Editor/Tools/asset/AssetToolSupport.cs +253 -0
- package/unitypkg/Editor/Tools/asset/create.cs +84 -0
- package/unitypkg/Editor/Tools/asset/delete.cs +88 -0
- package/unitypkg/Editor/Tools/asset/duplicate.cs +68 -0
- package/unitypkg/Editor/Tools/asset/get-components.cs +177 -0
- package/unitypkg/Editor/Tools/asset/get-data.cs +73 -0
- package/unitypkg/Editor/Tools/asset/import-settings/set.cs +127 -0
- package/unitypkg/Editor/Tools/asset/import-settings.cs +54 -0
- package/unitypkg/Editor/Tools/asset/import.cs +132 -0
- package/unitypkg/Editor/Tools/asset/info.cs +48 -0
- package/unitypkg/Editor/Tools/asset/modify.cs +69 -0
- package/unitypkg/Editor/Tools/asset/move.cs +70 -0
- package/unitypkg/Editor/Tools/asset/preview.cs +86 -0
- package/unitypkg/Editor/Tools/asset/rename.cs +84 -0
- package/unitypkg/Editor/Tools/asset/search-built-in.cs +90 -0
- package/unitypkg/Editor/Tools/asset/search.cs +83 -0
- package/unitypkg/Editor/Tools/build/BuildSceneStateTool.cs +37 -0
- package/unitypkg/Editor/Tools/build/BuildSettingsToolSupport.cs +4 -0
- package/unitypkg/Editor/Tools/build/BuildToolDtos.cs +15 -0
- package/unitypkg/Editor/Tools/build/BuildToolSupport.cs +111 -0
- package/unitypkg/Editor/Tools/build/platform/get.cs +12 -0
- package/unitypkg/Editor/Tools/build/platform/set.cs +45 -0
- package/unitypkg/Editor/Tools/build/profile/create.cs +44 -0
- package/unitypkg/Editor/Tools/build/profile/list.cs +12 -0
- package/unitypkg/Editor/Tools/build/profile/modify.cs +42 -0
- package/unitypkg/Editor/Tools/build/profile/switch.cs +30 -0
- package/unitypkg/Editor/Tools/build/scene/add.cs +45 -0
- package/unitypkg/Editor/Tools/build/scene/disable.cs +3 -0
- package/unitypkg/Editor/Tools/build/scene/enable.cs +4 -0
- package/unitypkg/Editor/Tools/build/scene/list.cs +4 -0
- package/unitypkg/Editor/Tools/build/scene/remove.cs +29 -0
- package/unitypkg/Editor/Tools/build/settings/get.cs +3 -0
- package/unitypkg/Editor/Tools/build/settings/set.cs +74 -0
- package/unitypkg/Editor/Tools/camera/CameraToolSupport.cs +292 -0
- package/unitypkg/Editor/Tools/camera/create.cs +114 -0
- package/unitypkg/Editor/Tools/camera/info.cs +49 -0
- package/unitypkg/Editor/Tools/camera/lens.cs +119 -0
- package/unitypkg/Editor/Tools/camera/list.cs +52 -0
- package/unitypkg/Editor/Tools/camera/multiview.cs +96 -0
- package/unitypkg/Editor/Tools/camera/screenshot.cs +65 -0
- package/unitypkg/Editor/Tools/camera/target.cs +94 -0
- package/unitypkg/Editor/Tools/component/add.cs +125 -0
- package/unitypkg/Editor/Tools/component/get.cs +73 -0
- package/unitypkg/Editor/Tools/component/list-types.cs +90 -0
- package/unitypkg/Editor/Tools/component/modify.cs +103 -0
- package/unitypkg/Editor/Tools/component/remove.cs +147 -0
- package/unitypkg/Editor/Tools/component/set.cs +93 -0
- package/unitypkg/Editor/Tools/console/clear.cs +38 -0
- package/unitypkg/Editor/Tools/console/get.cs +28 -0
- package/unitypkg/Editor/Tools/controller/add-blend-tree-child.cs +88 -0
- package/unitypkg/Editor/Tools/controller/add-layer.cs +43 -0
- package/unitypkg/Editor/Tools/controller/add-parameter.cs +51 -0
- package/unitypkg/Editor/Tools/controller/add-state.cs +44 -0
- package/unitypkg/Editor/Tools/controller/add-transition.cs +71 -0
- package/unitypkg/Editor/Tools/controller/assign.cs +38 -0
- package/unitypkg/Editor/Tools/controller/create-blend-tree-1d.cs +40 -0
- package/unitypkg/Editor/Tools/controller/create-blend-tree-2d.cs +42 -0
- package/unitypkg/Editor/Tools/controller/create.cs +31 -0
- package/unitypkg/Editor/Tools/controller/get-info.cs +27 -0
- package/unitypkg/Editor/Tools/controller/remove-layer.cs +57 -0
- package/unitypkg/Editor/Tools/controller/set-layer-weight.cs +42 -0
- package/unitypkg/Editor/Tools/diagnose/preflight.cs +269 -0
- package/unitypkg/Editor/Tools/editor/EditorActionToolSupport.cs +117 -0
- package/unitypkg/Editor/Tools/editor/EditorSearchToolSupport.cs +146 -0
- package/unitypkg/Editor/Tools/editor/EditorToolSupport.cs +132 -0
- package/unitypkg/Editor/Tools/editor/EditorWindowFocusToolSupport.cs +194 -0
- package/unitypkg/Editor/Tools/editor/active-tool/set.cs +33 -0
- package/unitypkg/Editor/Tools/editor/active-tool.cs +100 -0
- package/unitypkg/Editor/Tools/editor/autotick/set.cs +102 -0
- package/unitypkg/Editor/Tools/editor/console.cs +26 -0
- package/unitypkg/Editor/Tools/editor/focus.cs +80 -0
- package/unitypkg/Editor/Tools/editor/menu-items.cs +50 -0
- package/unitypkg/Editor/Tools/editor/menu.cs +53 -0
- package/unitypkg/Editor/Tools/editor/pause.cs +38 -0
- package/unitypkg/Editor/Tools/editor/play.cs +43 -0
- package/unitypkg/Editor/Tools/editor/redo.cs +56 -0
- package/unitypkg/Editor/Tools/editor/resolution.cs +34 -0
- package/unitypkg/Editor/Tools/editor/search.cs +55 -0
- package/unitypkg/Editor/Tools/editor/selection/set.cs +37 -0
- package/unitypkg/Editor/Tools/editor/selection.cs +153 -0
- package/unitypkg/Editor/Tools/editor/stop.cs +43 -0
- package/unitypkg/Editor/Tools/editor/tool-states.cs +140 -0
- package/unitypkg/Editor/Tools/editor/undo.cs +56 -0
- package/unitypkg/Editor/Tools/editor/windows.cs +87 -0
- package/unitypkg/Editor/Tools/extension/status.cs +87 -0
- package/unitypkg/Editor/Tools/go/GameObjectToolSupport.cs +524 -0
- package/unitypkg/Editor/Tools/go/create.cs +333 -0
- package/unitypkg/Editor/Tools/go/delete.cs +87 -0
- package/unitypkg/Editor/Tools/go/duplicate.cs +76 -0
- package/unitypkg/Editor/Tools/go/find.cs +152 -0
- package/unitypkg/Editor/Tools/go/inspect.cs +49 -0
- package/unitypkg/Editor/Tools/go/look-at.cs +76 -0
- package/unitypkg/Editor/Tools/go/modify.cs +156 -0
- package/unitypkg/Editor/Tools/go/move-relative.cs +74 -0
- package/unitypkg/Editor/Tools/go/set-parent.cs +84 -0
- package/unitypkg/Editor/Tools/graphics/GraphicsToolSupport.cs +396 -0
- package/unitypkg/Editor/Tools/graphics/bake-cancel.cs +27 -0
- package/unitypkg/Editor/Tools/graphics/bake-clear.cs +31 -0
- package/unitypkg/Editor/Tools/graphics/bake-reflection-probe.cs +35 -0
- package/unitypkg/Editor/Tools/graphics/bake-settings.cs +131 -0
- package/unitypkg/Editor/Tools/graphics/bake-start.cs +27 -0
- package/unitypkg/Editor/Tools/graphics/bake-status.cs +31 -0
- package/unitypkg/Editor/Tools/graphics/light-probe-group.cs +56 -0
- package/unitypkg/Editor/Tools/graphics/pipeline-info.cs +19 -0
- package/unitypkg/Editor/Tools/graphics/pipeline-quality.cs +24 -0
- package/unitypkg/Editor/Tools/graphics/pipeline-settings.cs +46 -0
- package/unitypkg/Editor/Tools/graphics/probe-positions.cs +58 -0
- package/unitypkg/Editor/Tools/graphics/quality.cs +85 -0
- package/unitypkg/Editor/Tools/graphics/reflection-probe.cs +73 -0
- package/unitypkg/Editor/Tools/graphics/scene-debug.cs +37 -0
- package/unitypkg/Editor/Tools/graphics/settings.cs +104 -0
- package/unitypkg/Editor/Tools/graphics/skybox-get.cs +33 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-ambient.cs +24 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-fog.cs +24 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-material.cs +33 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-properties.cs +51 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-reflection.cs +31 -0
- package/unitypkg/Editor/Tools/graphics/skybox-set-sun.cs +35 -0
- package/unitypkg/Editor/Tools/graphics/stats-counters.cs +28 -0
- package/unitypkg/Editor/Tools/graphics/stats-memory.cs +21 -0
- package/unitypkg/Editor/Tools/graphics/stats.cs +17 -0
- package/unitypkg/Editor/Tools/graphics/volume.cs +59 -0
- package/unitypkg/Editor/Tools/instances/list.cs +71 -0
- package/unitypkg/Editor/Tools/material/MaterialToolSupport.cs +401 -0
- package/unitypkg/Editor/Tools/material/assign.cs +124 -0
- package/unitypkg/Editor/Tools/material/create.cs +82 -0
- package/unitypkg/Editor/Tools/material/info.cs +55 -0
- package/unitypkg/Editor/Tools/material/set-renderer-color.cs +108 -0
- package/unitypkg/Editor/Tools/material/set.cs +114 -0
- package/unitypkg/Editor/Tools/navmesh/NavMeshToolSupport.cs +404 -0
- package/unitypkg/Editor/Tools/navmesh/bake-clear.cs +70 -0
- package/unitypkg/Editor/Tools/navmesh/settings/set.cs +73 -0
- package/unitypkg/Editor/Tools/navmesh/settings.cs +37 -0
- package/unitypkg/Editor/Tools/object/ObjectToolSupport.cs +99 -0
- package/unitypkg/Editor/Tools/object/get-data.cs +69 -0
- package/unitypkg/Editor/Tools/object/modify.cs +126 -0
- package/unitypkg/Editor/Tools/occlusion/OcclusionToolSupport.cs +422 -0
- package/unitypkg/Editor/Tools/occlusion/bake-clear.cs +67 -0
- package/unitypkg/Editor/Tools/physics/PhysicsJointToolSupport.cs +13 -0
- package/unitypkg/Editor/Tools/physics/PhysicsToolSupport.cs +389 -0
- package/unitypkg/Editor/Tools/physics/assign-material.cs +88 -0
- package/unitypkg/Editor/Tools/physics/collision-matrix.cs +90 -0
- package/unitypkg/Editor/Tools/physics/force.cs +127 -0
- package/unitypkg/Editor/Tools/physics/joint/add.cs +99 -0
- package/unitypkg/Editor/Tools/physics/joint/remove.cs +4 -0
- package/unitypkg/Editor/Tools/physics/linecast.cs +59 -0
- package/unitypkg/Editor/Tools/physics/material.cs +73 -0
- package/unitypkg/Editor/Tools/physics/overlap.cs +84 -0
- package/unitypkg/Editor/Tools/physics/raycast-all.cs +67 -0
- package/unitypkg/Editor/Tools/physics/raycast.cs +96 -0
- package/unitypkg/Editor/Tools/physics/rigidbody.cs +116 -0
- package/unitypkg/Editor/Tools/physics/settings.cs +116 -0
- package/unitypkg/Editor/Tools/physics/shapecast.cs +127 -0
- package/unitypkg/Editor/Tools/physics/simulation.cs +89 -0
- package/unitypkg/Editor/Tools/physics/validate.cs +67 -0
- package/unitypkg/Editor/Tools/prefab/PrefabOverrideToolSupport.cs +355 -0
- package/unitypkg/Editor/Tools/prefab/PrefabToolSupport.cs +446 -0
- package/unitypkg/Editor/Tools/prefab/create.cs +125 -0
- package/unitypkg/Editor/Tools/prefab/hierarchy.cs +157 -0
- package/unitypkg/Editor/Tools/prefab/info.cs +44 -0
- package/unitypkg/Editor/Tools/prefab/instantiate.cs +106 -0
- package/unitypkg/Editor/Tools/prefab/modify.cs +112 -0
- package/unitypkg/Editor/Tools/prefab/overrides/apply.cs +51 -0
- package/unitypkg/Editor/Tools/prefab/overrides/revert.cs +51 -0
- package/unitypkg/Editor/Tools/prefab/stage-close.cs +67 -0
- package/unitypkg/Editor/Tools/prefab/stage-open.cs +69 -0
- package/unitypkg/Editor/Tools/prefab/stage-save.cs +64 -0
- package/unitypkg/Editor/Tools/prefab/stage.cs +68 -0
- package/unitypkg/Editor/Tools/prefab/unpack.cs +80 -0
- package/unitypkg/Editor/Tools/prefab/variant/create.cs +53 -0
- package/unitypkg/Editor/Tools/profiler/ProfilerFrameDebuggerSupport.cs +68 -0
- package/unitypkg/Editor/Tools/profiler/ProfilerMemorySnapshotSupport.cs +30 -0
- package/unitypkg/Editor/Tools/profiler/ProfilerToolSupport.cs +515 -0
- package/unitypkg/Editor/Tools/profiler/areas.cs +36 -0
- package/unitypkg/Editor/Tools/profiler/capture.cs +188 -0
- package/unitypkg/Editor/Tools/profiler/clear.cs +57 -0
- package/unitypkg/Editor/Tools/profiler/counter.cs +34 -0
- package/unitypkg/Editor/Tools/profiler/deep.cs +48 -0
- package/unitypkg/Editor/Tools/profiler/export.cs +85 -0
- package/unitypkg/Editor/Tools/profiler/frame-debugger/disable.cs +53 -0
- package/unitypkg/Editor/Tools/profiler/frame-debugger/enable.cs +66 -0
- package/unitypkg/Editor/Tools/profiler/frame-debugger/events.cs +140 -0
- package/unitypkg/Editor/Tools/profiler/frame.cs +38 -0
- package/unitypkg/Editor/Tools/profiler/hierarchy.cs +183 -0
- package/unitypkg/Editor/Tools/profiler/load.cs +85 -0
- package/unitypkg/Editor/Tools/profiler/memory-snapshot/compare.cs +78 -0
- package/unitypkg/Editor/Tools/profiler/memory-snapshot/list.cs +73 -0
- package/unitypkg/Editor/Tools/profiler/memory-snapshot/take.cs +147 -0
- package/unitypkg/Editor/Tools/profiler/memory.cs +34 -0
- package/unitypkg/Editor/Tools/profiler/module-enable.cs +52 -0
- package/unitypkg/Editor/Tools/profiler/modules.cs +33 -0
- package/unitypkg/Editor/Tools/profiler/object-memory.cs +49 -0
- package/unitypkg/Editor/Tools/profiler/pause.cs +49 -0
- package/unitypkg/Editor/Tools/profiler/rendering-stats.cs +109 -0
- package/unitypkg/Editor/Tools/profiler/script-stats.cs +35 -0
- package/unitypkg/Editor/Tools/profiler/start.cs +55 -0
- package/unitypkg/Editor/Tools/profiler/status.cs +36 -0
- package/unitypkg/Editor/Tools/profiler/stop.cs +53 -0
- package/unitypkg/Editor/Tools/project/ProjectSettingsReader.cs +31 -0
- package/unitypkg/Editor/Tools/project/ProjectSettingsToolSupport.cs +757 -0
- package/unitypkg/Editor/Tools/project/ProjectTagLayerToolSupport.cs +23 -0
- package/unitypkg/Editor/Tools/project/audio-settings/set.cs +35 -0
- package/unitypkg/Editor/Tools/project/audio-settings.cs +31 -0
- package/unitypkg/Editor/Tools/project/info.cs +52 -0
- package/unitypkg/Editor/Tools/project/input-settings/set.cs +35 -0
- package/unitypkg/Editor/Tools/project/input-settings.cs +35 -0
- package/unitypkg/Editor/Tools/project/layer/add.cs +3 -0
- package/unitypkg/Editor/Tools/project/layer/remove.cs +3 -0
- package/unitypkg/Editor/Tools/project/layers.cs +61 -0
- package/unitypkg/Editor/Tools/project/player-settings/set.cs +35 -0
- package/unitypkg/Editor/Tools/project/player-settings.cs +31 -0
- package/unitypkg/Editor/Tools/project/tag/add.cs +3 -0
- package/unitypkg/Editor/Tools/project/tag/remove.cs +3 -0
- package/unitypkg/Editor/Tools/project/tags.cs +45 -0
- package/unitypkg/Editor/Tools/project/time-settings/set.cs +35 -0
- package/unitypkg/Editor/Tools/project/time-settings.cs +31 -0
- package/unitypkg/Editor/Tools/reflection/method/call.cs +114 -0
- package/unitypkg/Editor/Tools/reflection/method/find.cs +72 -0
- package/unitypkg/Editor/Tools/reflection/type/schema.cs +56 -0
- package/unitypkg/Editor/Tools/scene/SceneToolSupport.cs +181 -0
- package/unitypkg/Editor/Tools/scene/active.cs +62 -0
- package/unitypkg/Editor/Tools/scene/build-settings.cs +69 -0
- package/unitypkg/Editor/Tools/scene/create.cs +78 -0
- package/unitypkg/Editor/Tools/scene/data.cs +125 -0
- package/unitypkg/Editor/Tools/scene/gameobject/component.cs +63 -0
- package/unitypkg/Editor/Tools/scene/gameobject/components.cs +77 -0
- package/unitypkg/Editor/Tools/scene/gameobject-support.cs +101 -0
- package/unitypkg/Editor/Tools/scene/gameobject.cs +83 -0
- package/unitypkg/Editor/Tools/scene/hierarchy.cs +250 -0
- package/unitypkg/Editor/Tools/scene/list-opened.cs +77 -0
- package/unitypkg/Editor/Tools/scene/load.cs +68 -0
- package/unitypkg/Editor/Tools/scene/move-object.cs +122 -0
- package/unitypkg/Editor/Tools/scene/save.cs +231 -0
- package/unitypkg/Editor/Tools/scene/set-active.cs +76 -0
- package/unitypkg/Editor/Tools/scene/unload.cs +109 -0
- package/unitypkg/Editor/Tools/scene/validate.cs +115 -0
- package/unitypkg/Editor/Tools/scene/view-frame.cs +218 -0
- package/unitypkg/Editor/Tools/screenshot/EditorElementCaptureToolSupport.cs +181 -0
- package/unitypkg/Editor/Tools/screenshot/ScreenshotToolSupport.cs +196 -0
- package/unitypkg/Editor/Tools/screenshot/editor-element.cs +87 -0
- package/unitypkg/Editor/Tools/screenshot/game-view.cs +116 -0
- package/unitypkg/Editor/Tools/screenshot/isolated-object.cs +93 -0
- package/unitypkg/Editor/Tools/screenshot/orbit.cs +103 -0
- package/unitypkg/Editor/Tools/screenshot/scene-view.cs +99 -0
- package/unitypkg/Editor/Tools/screenshot/screen.cs +89 -0
- package/unitypkg/Editor/Tools/screenshot/surround.cs +181 -0
- package/unitypkg/Editor/Tools/scriptable-object/ScriptableObjectToolSupport.cs +196 -0
- package/unitypkg/Editor/Tools/scriptable-object/create.cs +79 -0
- package/unitypkg/Editor/Tools/scriptable-object/info.cs +49 -0
- package/unitypkg/Editor/Tools/scriptable-object/list-types.cs +103 -0
- package/unitypkg/Editor/Tools/scriptable-object/modify.cs +208 -0
- package/unitypkg/Editor/Tools/shader/ShaderToolSupport.cs +326 -0
- package/unitypkg/Editor/Tools/shader/create.cs +82 -0
- package/unitypkg/Editor/Tools/shader/delete.cs +90 -0
- package/unitypkg/Editor/Tools/shader/get-data.cs +125 -0
- package/unitypkg/Editor/Tools/shader/info.cs +48 -0
- package/unitypkg/Editor/Tools/shader/list.cs +82 -0
- package/unitypkg/Editor/Tools/shader/read.cs +84 -0
- package/unitypkg/Editor/Tools/shader/update.cs +71 -0
- package/unitypkg/Editor/Tools/tests/list.cs +98 -0
- package/unitypkg/Editor/Tools/texture/TextureToolSupport.cs +327 -0
- package/unitypkg/Editor/Tools/texture/create.cs +182 -0
- package/unitypkg/Editor/Tools/texture/delete.cs +89 -0
- package/unitypkg/Editor/Tools/texture/generate.cs +189 -0
- package/unitypkg/Editor/Tools/texture/import-settings.cs +104 -0
- package/unitypkg/Editor/Tools/texture/info.cs +50 -0
- package/unitypkg/Editor/Tools/texture/modify.cs +154 -0
- package/unitypkg/Editor/Tools/texture/sprite.cs +132 -0
- package/unitypkg/Editor/Tools/timeline/TimelineMutationToolSupport.cs +696 -0
- package/unitypkg/Editor/Tools/timeline/TimelineReadToolSupport.cs +439 -0
- package/unitypkg/Editor/Tools/timeline/TimelineToolSupport.cs +203 -0
- package/unitypkg/Editor/Tools/timeline/clip/add.cs +93 -0
- package/unitypkg/Editor/Tools/timeline/create.cs +88 -0
- package/unitypkg/Editor/Tools/timeline/info.cs +54 -0
- package/unitypkg/Editor/Tools/timeline/track/add.cs +91 -0
- package/unitypkg/Editor/Tools/ui/UiToolSupport.cs +162 -0
- package/unitypkg/Editor/Tools/ui/UiUguiToolSupport.cs +24 -0
- package/unitypkg/Editor/Tools/ui/attach-document.cs +46 -0
- package/unitypkg/Editor/Tools/ui/button/create.cs +58 -0
- package/unitypkg/Editor/Tools/ui/canvas/create.cs +40 -0
- package/unitypkg/Editor/Tools/ui/create-panel-settings.cs +44 -0
- package/unitypkg/Editor/Tools/ui/detach-document.cs +41 -0
- package/unitypkg/Editor/Tools/ui/document/create.cs +49 -0
- package/unitypkg/Editor/Tools/ui/document/delete.cs +33 -0
- package/unitypkg/Editor/Tools/ui/document/info.cs +33 -0
- package/unitypkg/Editor/Tools/ui/document/update.cs +36 -0
- package/unitypkg/Editor/Tools/ui/get-visual-tree.cs +34 -0
- package/unitypkg/Editor/Tools/ui/hierarchy.cs +27 -0
- package/unitypkg/Editor/Tools/ui/image/create.cs +47 -0
- package/unitypkg/Editor/Tools/ui/link-stylesheet.cs +54 -0
- package/unitypkg/Editor/Tools/ui/list-documents.cs +34 -0
- package/unitypkg/Editor/Tools/ui/modify-visual-element.cs +76 -0
- package/unitypkg/Editor/Tools/ui/render-preview.cs +128 -0
- package/unitypkg/Editor/Tools/ui/text/create.cs +45 -0
- package/unitypkg/Editor/Tools/ui/update-panel-settings.cs +49 -0
- package/unitypkg/Editor/UnityCliBridge.cs +431 -0
- package/unitypkg/Editor/UnityCliBridgeBuildInfo.cs +9 -0
- package/unitypkg/Runtime/Infrastructure/UnityCliRuntimeBridge.cs +580 -0
- package/unitypkg/Runtime/Infrastructure/UnityCliRuntimeJson.cs +232 -0
- package/unitypkg/Runtime/Infrastructure/UnityCliRuntimeRegistry.cs +297 -0
- package/unitypkg/Runtime/Tools/UnityCliRuntimeTools.cs +701 -0
- package/unitypkg/Runtime/UnityCli.Runtime.asmdef +14 -0
- package/unitypkg/Shared/UnityCli.Shared.asmdef +14 -0
- package/unitypkg/Shared/UnityCliAdmissionPool.cs +426 -0
- package/unitypkg/Tests/Editor/UnityCli.Editor.Tests.asmdef +15 -0
- package/unitypkg/Tests/Editor/UnityCliAdmissionPoolTests.cs +262 -0
- package/unitypkg/UnityCli.Editor.asmdef +26 -0
- package/unitypkg/package.json +11 -0
|
@@ -0,0 +1,3972 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 1,
|
|
3
|
+
"generatedFrom": "unified C#/TS/metadata command contract",
|
|
4
|
+
"commands": [
|
|
5
|
+
{
|
|
6
|
+
"bridgeCommand": "animation.clip",
|
|
7
|
+
"group": "animation",
|
|
8
|
+
"command": "clip",
|
|
9
|
+
"handler_type": "bridge",
|
|
10
|
+
"csharp_handler": "present",
|
|
11
|
+
"destructive": false,
|
|
12
|
+
"timeout": 30000
|
|
13
|
+
},
|
|
14
|
+
{
|
|
15
|
+
"bridgeCommand": "animation.clip.create",
|
|
16
|
+
"group": "animation",
|
|
17
|
+
"command": "clip.create",
|
|
18
|
+
"handler_type": "bridge",
|
|
19
|
+
"csharp_handler": "present",
|
|
20
|
+
"destructive": true,
|
|
21
|
+
"timeout": 30000
|
|
22
|
+
},
|
|
23
|
+
{
|
|
24
|
+
"bridgeCommand": "animation.clip.modify",
|
|
25
|
+
"group": "animation",
|
|
26
|
+
"command": "clip.modify",
|
|
27
|
+
"handler_type": "bridge",
|
|
28
|
+
"csharp_handler": "present",
|
|
29
|
+
"destructive": true,
|
|
30
|
+
"timeout": 30000
|
|
31
|
+
},
|
|
32
|
+
{
|
|
33
|
+
"bridgeCommand": "animation.play",
|
|
34
|
+
"group": "animation",
|
|
35
|
+
"command": "play",
|
|
36
|
+
"handler_type": "bridge",
|
|
37
|
+
"csharp_handler": "present",
|
|
38
|
+
"destructive": false,
|
|
39
|
+
"timeout": 30000
|
|
40
|
+
},
|
|
41
|
+
{
|
|
42
|
+
"bridgeCommand": "animation.state",
|
|
43
|
+
"group": "animation",
|
|
44
|
+
"command": "state",
|
|
45
|
+
"handler_type": "bridge",
|
|
46
|
+
"csharp_handler": "present",
|
|
47
|
+
"destructive": false,
|
|
48
|
+
"timeout": 30000
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
"bridgeCommand": "animation.stop",
|
|
52
|
+
"group": "animation",
|
|
53
|
+
"command": "stop",
|
|
54
|
+
"handler_type": "bridge",
|
|
55
|
+
"csharp_handler": "present",
|
|
56
|
+
"destructive": false,
|
|
57
|
+
"timeout": 30000
|
|
58
|
+
},
|
|
59
|
+
{
|
|
60
|
+
"bridgeCommand": "animator.crossfade",
|
|
61
|
+
"group": "animation",
|
|
62
|
+
"command": "animator.crossfade",
|
|
63
|
+
"handler_type": "bridge",
|
|
64
|
+
"csharp_handler": "present",
|
|
65
|
+
"destructive": false,
|
|
66
|
+
"timeout": 30000
|
|
67
|
+
},
|
|
68
|
+
{
|
|
69
|
+
"bridgeCommand": "animator.get-info",
|
|
70
|
+
"group": "animation",
|
|
71
|
+
"command": "animator.get-info",
|
|
72
|
+
"handler_type": "bridge",
|
|
73
|
+
"csharp_handler": "present",
|
|
74
|
+
"destructive": false,
|
|
75
|
+
"timeout": 30000
|
|
76
|
+
},
|
|
77
|
+
{
|
|
78
|
+
"bridgeCommand": "animator.get-parameter",
|
|
79
|
+
"group": "animation",
|
|
80
|
+
"command": "animator.get-parameter",
|
|
81
|
+
"handler_type": "bridge",
|
|
82
|
+
"csharp_handler": "present",
|
|
83
|
+
"destructive": false,
|
|
84
|
+
"timeout": 30000
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
"bridgeCommand": "animator.set-enabled",
|
|
88
|
+
"group": "animation",
|
|
89
|
+
"command": "animator.set-enabled",
|
|
90
|
+
"handler_type": "bridge",
|
|
91
|
+
"csharp_handler": "present",
|
|
92
|
+
"destructive": false,
|
|
93
|
+
"timeout": 30000
|
|
94
|
+
},
|
|
95
|
+
{
|
|
96
|
+
"bridgeCommand": "animator.set-parameter",
|
|
97
|
+
"group": "animation",
|
|
98
|
+
"command": "animator.set-parameter",
|
|
99
|
+
"handler_type": "bridge",
|
|
100
|
+
"csharp_handler": "present",
|
|
101
|
+
"destructive": true,
|
|
102
|
+
"timeout": 30000
|
|
103
|
+
},
|
|
104
|
+
{
|
|
105
|
+
"bridgeCommand": "animator.set-speed",
|
|
106
|
+
"group": "animation",
|
|
107
|
+
"command": "animator.set-speed",
|
|
108
|
+
"handler_type": "bridge",
|
|
109
|
+
"csharp_handler": "present",
|
|
110
|
+
"destructive": false,
|
|
111
|
+
"timeout": 30000
|
|
112
|
+
},
|
|
113
|
+
{
|
|
114
|
+
"bridgeCommand": "asset.create",
|
|
115
|
+
"group": "asset",
|
|
116
|
+
"command": "create",
|
|
117
|
+
"handler_type": "bridge",
|
|
118
|
+
"csharp_handler": "present",
|
|
119
|
+
"destructive": true,
|
|
120
|
+
"timeout": 30000
|
|
121
|
+
},
|
|
122
|
+
{
|
|
123
|
+
"bridgeCommand": "asset.delete",
|
|
124
|
+
"group": "asset",
|
|
125
|
+
"command": "delete",
|
|
126
|
+
"handler_type": "bridge",
|
|
127
|
+
"csharp_handler": "present",
|
|
128
|
+
"destructive": true,
|
|
129
|
+
"timeout": 30000
|
|
130
|
+
},
|
|
131
|
+
{
|
|
132
|
+
"bridgeCommand": "asset.duplicate",
|
|
133
|
+
"group": "asset",
|
|
134
|
+
"command": "duplicate",
|
|
135
|
+
"handler_type": "bridge",
|
|
136
|
+
"csharp_handler": "present",
|
|
137
|
+
"destructive": true,
|
|
138
|
+
"timeout": 30000
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"bridgeCommand": "asset.get-components",
|
|
142
|
+
"group": "asset",
|
|
143
|
+
"command": "get-components",
|
|
144
|
+
"handler_type": "bridge",
|
|
145
|
+
"csharp_handler": "present",
|
|
146
|
+
"destructive": false,
|
|
147
|
+
"timeout": 30000
|
|
148
|
+
},
|
|
149
|
+
{
|
|
150
|
+
"bridgeCommand": "asset.get-data",
|
|
151
|
+
"group": "asset",
|
|
152
|
+
"command": "get-data",
|
|
153
|
+
"handler_type": "bridge",
|
|
154
|
+
"csharp_handler": "present",
|
|
155
|
+
"destructive": false,
|
|
156
|
+
"timeout": 30000
|
|
157
|
+
},
|
|
158
|
+
{
|
|
159
|
+
"bridgeCommand": "asset.import",
|
|
160
|
+
"group": "asset",
|
|
161
|
+
"command": "import",
|
|
162
|
+
"handler_type": "bridge",
|
|
163
|
+
"csharp_handler": "present",
|
|
164
|
+
"destructive": true,
|
|
165
|
+
"timeout": 30000
|
|
166
|
+
},
|
|
167
|
+
{
|
|
168
|
+
"bridgeCommand": "asset.import-settings",
|
|
169
|
+
"group": "asset",
|
|
170
|
+
"command": "import-settings",
|
|
171
|
+
"handler_type": "bridge",
|
|
172
|
+
"csharp_handler": "present",
|
|
173
|
+
"destructive": false,
|
|
174
|
+
"timeout": 30000
|
|
175
|
+
},
|
|
176
|
+
{
|
|
177
|
+
"bridgeCommand": "asset.import-settings.set",
|
|
178
|
+
"group": "asset",
|
|
179
|
+
"command": "import-settings.set",
|
|
180
|
+
"handler_type": "bridge",
|
|
181
|
+
"csharp_handler": "present",
|
|
182
|
+
"destructive": true,
|
|
183
|
+
"timeout": 30000
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"bridgeCommand": "asset.info",
|
|
187
|
+
"group": "asset",
|
|
188
|
+
"command": "info",
|
|
189
|
+
"handler_type": "bridge",
|
|
190
|
+
"csharp_handler": "present",
|
|
191
|
+
"destructive": false,
|
|
192
|
+
"timeout": 30000
|
|
193
|
+
},
|
|
194
|
+
{
|
|
195
|
+
"bridgeCommand": "asset.modify",
|
|
196
|
+
"group": "asset",
|
|
197
|
+
"command": "modify",
|
|
198
|
+
"handler_type": "bridge",
|
|
199
|
+
"csharp_handler": "present",
|
|
200
|
+
"destructive": true,
|
|
201
|
+
"timeout": 30000
|
|
202
|
+
},
|
|
203
|
+
{
|
|
204
|
+
"bridgeCommand": "asset.move",
|
|
205
|
+
"group": "asset",
|
|
206
|
+
"command": "move",
|
|
207
|
+
"handler_type": "bridge",
|
|
208
|
+
"csharp_handler": "present",
|
|
209
|
+
"destructive": true,
|
|
210
|
+
"timeout": 30000
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"bridgeCommand": "asset.preview",
|
|
214
|
+
"group": "asset",
|
|
215
|
+
"command": "preview",
|
|
216
|
+
"handler_type": "bridge",
|
|
217
|
+
"csharp_handler": "present",
|
|
218
|
+
"destructive": false,
|
|
219
|
+
"timeout": 30000
|
|
220
|
+
},
|
|
221
|
+
{
|
|
222
|
+
"bridgeCommand": "asset.refresh",
|
|
223
|
+
"group": "asset",
|
|
224
|
+
"command": "refresh",
|
|
225
|
+
"handler_type": "hybrid",
|
|
226
|
+
"csharp_handler": "none",
|
|
227
|
+
"destructive": false,
|
|
228
|
+
"timeout": 30000
|
|
229
|
+
},
|
|
230
|
+
{
|
|
231
|
+
"bridgeCommand": "asset.rename",
|
|
232
|
+
"group": "asset",
|
|
233
|
+
"command": "rename",
|
|
234
|
+
"handler_type": "bridge",
|
|
235
|
+
"csharp_handler": "present",
|
|
236
|
+
"destructive": true,
|
|
237
|
+
"timeout": 30000
|
|
238
|
+
},
|
|
239
|
+
{
|
|
240
|
+
"bridgeCommand": "asset.search",
|
|
241
|
+
"group": "asset",
|
|
242
|
+
"command": "search",
|
|
243
|
+
"handler_type": "bridge",
|
|
244
|
+
"csharp_handler": "present",
|
|
245
|
+
"destructive": false,
|
|
246
|
+
"timeout": 30000
|
|
247
|
+
},
|
|
248
|
+
{
|
|
249
|
+
"bridgeCommand": "asset.search-built-in",
|
|
250
|
+
"group": "asset",
|
|
251
|
+
"command": "search-built-in",
|
|
252
|
+
"handler_type": "bridge",
|
|
253
|
+
"csharp_handler": "present",
|
|
254
|
+
"destructive": false,
|
|
255
|
+
"timeout": 30000
|
|
256
|
+
},
|
|
257
|
+
{
|
|
258
|
+
"bridgeCommand": "build.platform.get",
|
|
259
|
+
"group": "build",
|
|
260
|
+
"command": "platform.get",
|
|
261
|
+
"handler_type": "bridge",
|
|
262
|
+
"csharp_handler": "present",
|
|
263
|
+
"destructive": false,
|
|
264
|
+
"timeout": 30000
|
|
265
|
+
},
|
|
266
|
+
{
|
|
267
|
+
"bridgeCommand": "build.platform.set",
|
|
268
|
+
"group": "build",
|
|
269
|
+
"command": "platform.set",
|
|
270
|
+
"handler_type": "bridge",
|
|
271
|
+
"csharp_handler": "present",
|
|
272
|
+
"destructive": true,
|
|
273
|
+
"timeout": 30000
|
|
274
|
+
},
|
|
275
|
+
{
|
|
276
|
+
"bridgeCommand": "build.profile.create",
|
|
277
|
+
"group": "build",
|
|
278
|
+
"command": "profile.create",
|
|
279
|
+
"handler_type": "bridge",
|
|
280
|
+
"csharp_handler": "present",
|
|
281
|
+
"destructive": true,
|
|
282
|
+
"timeout": 30000
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
"bridgeCommand": "build.profile.list",
|
|
286
|
+
"group": "build",
|
|
287
|
+
"command": "profile.list",
|
|
288
|
+
"handler_type": "bridge",
|
|
289
|
+
"csharp_handler": "present",
|
|
290
|
+
"destructive": false,
|
|
291
|
+
"timeout": 30000
|
|
292
|
+
},
|
|
293
|
+
{
|
|
294
|
+
"bridgeCommand": "build.profile.modify",
|
|
295
|
+
"group": "build",
|
|
296
|
+
"command": "profile.modify",
|
|
297
|
+
"handler_type": "bridge",
|
|
298
|
+
"csharp_handler": "present",
|
|
299
|
+
"destructive": true,
|
|
300
|
+
"timeout": 30000
|
|
301
|
+
},
|
|
302
|
+
{
|
|
303
|
+
"bridgeCommand": "build.profile.switch",
|
|
304
|
+
"group": "build",
|
|
305
|
+
"command": "profile.switch",
|
|
306
|
+
"handler_type": "bridge",
|
|
307
|
+
"csharp_handler": "present",
|
|
308
|
+
"destructive": true,
|
|
309
|
+
"timeout": 30000
|
|
310
|
+
},
|
|
311
|
+
{
|
|
312
|
+
"bridgeCommand": "build.run",
|
|
313
|
+
"group": "build",
|
|
314
|
+
"command": "run",
|
|
315
|
+
"handler_type": "hybrid",
|
|
316
|
+
"csharp_handler": "none",
|
|
317
|
+
"destructive": true,
|
|
318
|
+
"timeout": 600000
|
|
319
|
+
},
|
|
320
|
+
{
|
|
321
|
+
"bridgeCommand": "build.scene.add",
|
|
322
|
+
"group": "build",
|
|
323
|
+
"command": "scene.add",
|
|
324
|
+
"handler_type": "bridge",
|
|
325
|
+
"csharp_handler": "present",
|
|
326
|
+
"destructive": true,
|
|
327
|
+
"timeout": 30000
|
|
328
|
+
},
|
|
329
|
+
{
|
|
330
|
+
"bridgeCommand": "build.scene.disable",
|
|
331
|
+
"group": "build",
|
|
332
|
+
"command": "scene.disable",
|
|
333
|
+
"handler_type": "bridge",
|
|
334
|
+
"csharp_handler": "present",
|
|
335
|
+
"destructive": true,
|
|
336
|
+
"timeout": 30000
|
|
337
|
+
},
|
|
338
|
+
{
|
|
339
|
+
"bridgeCommand": "build.scene.enable",
|
|
340
|
+
"group": "build",
|
|
341
|
+
"command": "scene.enable",
|
|
342
|
+
"handler_type": "bridge",
|
|
343
|
+
"csharp_handler": "present",
|
|
344
|
+
"destructive": true,
|
|
345
|
+
"timeout": 30000
|
|
346
|
+
},
|
|
347
|
+
{
|
|
348
|
+
"bridgeCommand": "build.scene.list",
|
|
349
|
+
"group": "build",
|
|
350
|
+
"command": "scene.list",
|
|
351
|
+
"handler_type": "bridge",
|
|
352
|
+
"csharp_handler": "present",
|
|
353
|
+
"destructive": false,
|
|
354
|
+
"timeout": 30000
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
"bridgeCommand": "build.scene.remove",
|
|
358
|
+
"group": "build",
|
|
359
|
+
"command": "scene.remove",
|
|
360
|
+
"handler_type": "bridge",
|
|
361
|
+
"csharp_handler": "present",
|
|
362
|
+
"destructive": true,
|
|
363
|
+
"timeout": 30000
|
|
364
|
+
},
|
|
365
|
+
{
|
|
366
|
+
"bridgeCommand": "build.settings.get",
|
|
367
|
+
"group": "build",
|
|
368
|
+
"command": "settings.get",
|
|
369
|
+
"handler_type": "bridge",
|
|
370
|
+
"csharp_handler": "present",
|
|
371
|
+
"destructive": false,
|
|
372
|
+
"timeout": 30000
|
|
373
|
+
},
|
|
374
|
+
{
|
|
375
|
+
"bridgeCommand": "build.settings.set",
|
|
376
|
+
"group": "build",
|
|
377
|
+
"command": "settings.set",
|
|
378
|
+
"handler_type": "bridge",
|
|
379
|
+
"csharp_handler": "present",
|
|
380
|
+
"destructive": true,
|
|
381
|
+
"timeout": 30000
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"bridgeCommand": "camera.create",
|
|
385
|
+
"group": "camera",
|
|
386
|
+
"command": "create",
|
|
387
|
+
"handler_type": "bridge",
|
|
388
|
+
"csharp_handler": "present",
|
|
389
|
+
"destructive": false,
|
|
390
|
+
"timeout": 30000
|
|
391
|
+
},
|
|
392
|
+
{
|
|
393
|
+
"bridgeCommand": "camera.info",
|
|
394
|
+
"group": "camera",
|
|
395
|
+
"command": "info",
|
|
396
|
+
"handler_type": "bridge",
|
|
397
|
+
"csharp_handler": "present",
|
|
398
|
+
"destructive": false,
|
|
399
|
+
"timeout": 30000
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"bridgeCommand": "camera.lens",
|
|
403
|
+
"group": "camera",
|
|
404
|
+
"command": "lens",
|
|
405
|
+
"handler_type": "bridge",
|
|
406
|
+
"csharp_handler": "present",
|
|
407
|
+
"destructive": false,
|
|
408
|
+
"timeout": 30000
|
|
409
|
+
},
|
|
410
|
+
{
|
|
411
|
+
"bridgeCommand": "camera.list",
|
|
412
|
+
"group": "camera",
|
|
413
|
+
"command": "list",
|
|
414
|
+
"handler_type": "bridge",
|
|
415
|
+
"csharp_handler": "present",
|
|
416
|
+
"destructive": false,
|
|
417
|
+
"timeout": 30000
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"bridgeCommand": "camera.multiview",
|
|
421
|
+
"group": "camera",
|
|
422
|
+
"command": "multiview",
|
|
423
|
+
"handler_type": "bridge",
|
|
424
|
+
"csharp_handler": "present",
|
|
425
|
+
"destructive": true,
|
|
426
|
+
"timeout": 30000
|
|
427
|
+
},
|
|
428
|
+
{
|
|
429
|
+
"bridgeCommand": "camera.screenshot",
|
|
430
|
+
"group": "camera",
|
|
431
|
+
"command": "screenshot",
|
|
432
|
+
"handler_type": "bridge",
|
|
433
|
+
"csharp_handler": "present",
|
|
434
|
+
"destructive": true,
|
|
435
|
+
"timeout": 30000
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
"bridgeCommand": "camera.target",
|
|
439
|
+
"group": "camera",
|
|
440
|
+
"command": "target",
|
|
441
|
+
"handler_type": "bridge",
|
|
442
|
+
"csharp_handler": "present",
|
|
443
|
+
"destructive": false,
|
|
444
|
+
"timeout": 30000
|
|
445
|
+
},
|
|
446
|
+
{
|
|
447
|
+
"bridgeCommand": "cinemachine.aim",
|
|
448
|
+
"group": "cinemachine",
|
|
449
|
+
"command": "aim",
|
|
450
|
+
"handler_type": "bridge",
|
|
451
|
+
"csharp_handler": "present",
|
|
452
|
+
"destructive": false,
|
|
453
|
+
"timeout": 30000,
|
|
454
|
+
"requires_packages": [
|
|
455
|
+
"com.unity.cinemachine"
|
|
456
|
+
]
|
|
457
|
+
},
|
|
458
|
+
{
|
|
459
|
+
"bridgeCommand": "cinemachine.blend",
|
|
460
|
+
"group": "cinemachine",
|
|
461
|
+
"command": "blend",
|
|
462
|
+
"handler_type": "bridge",
|
|
463
|
+
"csharp_handler": "present",
|
|
464
|
+
"destructive": false,
|
|
465
|
+
"timeout": 30000,
|
|
466
|
+
"requires_packages": [
|
|
467
|
+
"com.unity.cinemachine"
|
|
468
|
+
]
|
|
469
|
+
},
|
|
470
|
+
{
|
|
471
|
+
"bridgeCommand": "cinemachine.body",
|
|
472
|
+
"group": "cinemachine",
|
|
473
|
+
"command": "body",
|
|
474
|
+
"handler_type": "bridge",
|
|
475
|
+
"csharp_handler": "present",
|
|
476
|
+
"destructive": false,
|
|
477
|
+
"timeout": 30000,
|
|
478
|
+
"requires_packages": [
|
|
479
|
+
"com.unity.cinemachine"
|
|
480
|
+
]
|
|
481
|
+
},
|
|
482
|
+
{
|
|
483
|
+
"bridgeCommand": "cinemachine.brain.ensure",
|
|
484
|
+
"group": "cinemachine",
|
|
485
|
+
"command": "brain.ensure",
|
|
486
|
+
"handler_type": "bridge",
|
|
487
|
+
"csharp_handler": "present",
|
|
488
|
+
"destructive": false,
|
|
489
|
+
"timeout": 30000,
|
|
490
|
+
"requires_packages": [
|
|
491
|
+
"com.unity.cinemachine"
|
|
492
|
+
]
|
|
493
|
+
},
|
|
494
|
+
{
|
|
495
|
+
"bridgeCommand": "cinemachine.brain.status",
|
|
496
|
+
"group": "cinemachine",
|
|
497
|
+
"command": "brain.status",
|
|
498
|
+
"handler_type": "bridge",
|
|
499
|
+
"csharp_handler": "present",
|
|
500
|
+
"destructive": false,
|
|
501
|
+
"timeout": 30000,
|
|
502
|
+
"requires_packages": [
|
|
503
|
+
"com.unity.cinemachine"
|
|
504
|
+
]
|
|
505
|
+
},
|
|
506
|
+
{
|
|
507
|
+
"bridgeCommand": "cinemachine.create",
|
|
508
|
+
"group": "cinemachine",
|
|
509
|
+
"command": "create",
|
|
510
|
+
"handler_type": "bridge",
|
|
511
|
+
"csharp_handler": "present",
|
|
512
|
+
"destructive": false,
|
|
513
|
+
"timeout": 30000,
|
|
514
|
+
"requires_packages": [
|
|
515
|
+
"com.unity.cinemachine"
|
|
516
|
+
]
|
|
517
|
+
},
|
|
518
|
+
{
|
|
519
|
+
"bridgeCommand": "cinemachine.extension.add",
|
|
520
|
+
"group": "cinemachine",
|
|
521
|
+
"command": "extension.add",
|
|
522
|
+
"handler_type": "bridge",
|
|
523
|
+
"csharp_handler": "present",
|
|
524
|
+
"destructive": false,
|
|
525
|
+
"timeout": 30000,
|
|
526
|
+
"requires_packages": [
|
|
527
|
+
"com.unity.cinemachine"
|
|
528
|
+
]
|
|
529
|
+
},
|
|
530
|
+
{
|
|
531
|
+
"bridgeCommand": "cinemachine.extension.list",
|
|
532
|
+
"group": "cinemachine",
|
|
533
|
+
"command": "extension.list",
|
|
534
|
+
"handler_type": "bridge",
|
|
535
|
+
"csharp_handler": "present",
|
|
536
|
+
"destructive": false,
|
|
537
|
+
"timeout": 30000,
|
|
538
|
+
"requires_packages": [
|
|
539
|
+
"com.unity.cinemachine"
|
|
540
|
+
]
|
|
541
|
+
},
|
|
542
|
+
{
|
|
543
|
+
"bridgeCommand": "cinemachine.extension.remove",
|
|
544
|
+
"group": "cinemachine",
|
|
545
|
+
"command": "extension.remove",
|
|
546
|
+
"handler_type": "bridge",
|
|
547
|
+
"csharp_handler": "present",
|
|
548
|
+
"destructive": false,
|
|
549
|
+
"timeout": 30000,
|
|
550
|
+
"requires_packages": [
|
|
551
|
+
"com.unity.cinemachine"
|
|
552
|
+
]
|
|
553
|
+
},
|
|
554
|
+
{
|
|
555
|
+
"bridgeCommand": "cinemachine.lens",
|
|
556
|
+
"group": "cinemachine",
|
|
557
|
+
"command": "lens",
|
|
558
|
+
"handler_type": "bridge",
|
|
559
|
+
"csharp_handler": "present",
|
|
560
|
+
"destructive": false,
|
|
561
|
+
"timeout": 30000,
|
|
562
|
+
"requires_packages": [
|
|
563
|
+
"com.unity.cinemachine"
|
|
564
|
+
]
|
|
565
|
+
},
|
|
566
|
+
{
|
|
567
|
+
"bridgeCommand": "cinemachine.noise",
|
|
568
|
+
"group": "cinemachine",
|
|
569
|
+
"command": "noise",
|
|
570
|
+
"handler_type": "bridge",
|
|
571
|
+
"csharp_handler": "present",
|
|
572
|
+
"destructive": false,
|
|
573
|
+
"timeout": 30000,
|
|
574
|
+
"requires_packages": [
|
|
575
|
+
"com.unity.cinemachine"
|
|
576
|
+
]
|
|
577
|
+
},
|
|
578
|
+
{
|
|
579
|
+
"bridgeCommand": "cinemachine.ping",
|
|
580
|
+
"group": "cinemachine",
|
|
581
|
+
"command": "ping",
|
|
582
|
+
"handler_type": "bridge",
|
|
583
|
+
"csharp_handler": "present",
|
|
584
|
+
"destructive": false,
|
|
585
|
+
"timeout": 30000,
|
|
586
|
+
"requires_packages": [
|
|
587
|
+
"com.unity.cinemachine"
|
|
588
|
+
]
|
|
589
|
+
},
|
|
590
|
+
{
|
|
591
|
+
"bridgeCommand": "cinemachine.priority",
|
|
592
|
+
"group": "cinemachine",
|
|
593
|
+
"command": "priority",
|
|
594
|
+
"handler_type": "bridge",
|
|
595
|
+
"csharp_handler": "present",
|
|
596
|
+
"destructive": false,
|
|
597
|
+
"timeout": 30000,
|
|
598
|
+
"requires_packages": [
|
|
599
|
+
"com.unity.cinemachine"
|
|
600
|
+
]
|
|
601
|
+
},
|
|
602
|
+
{
|
|
603
|
+
"bridgeCommand": "cinemachine.target",
|
|
604
|
+
"group": "cinemachine",
|
|
605
|
+
"command": "target",
|
|
606
|
+
"handler_type": "bridge",
|
|
607
|
+
"csharp_handler": "present",
|
|
608
|
+
"destructive": false,
|
|
609
|
+
"timeout": 30000,
|
|
610
|
+
"requires_packages": [
|
|
611
|
+
"com.unity.cinemachine"
|
|
612
|
+
]
|
|
613
|
+
},
|
|
614
|
+
{
|
|
615
|
+
"bridgeCommand": "code.exec",
|
|
616
|
+
"group": "code",
|
|
617
|
+
"command": "exec",
|
|
618
|
+
"handler_type": "hybrid",
|
|
619
|
+
"csharp_handler": "present",
|
|
620
|
+
"destructive": true,
|
|
621
|
+
"timeout": 60000
|
|
622
|
+
},
|
|
623
|
+
{
|
|
624
|
+
"bridgeCommand": "component.add",
|
|
625
|
+
"group": "component",
|
|
626
|
+
"command": "add",
|
|
627
|
+
"handler_type": "bridge",
|
|
628
|
+
"csharp_handler": "present",
|
|
629
|
+
"destructive": false,
|
|
630
|
+
"timeout": 30000
|
|
631
|
+
},
|
|
632
|
+
{
|
|
633
|
+
"bridgeCommand": "component.get",
|
|
634
|
+
"group": "component",
|
|
635
|
+
"command": "get",
|
|
636
|
+
"handler_type": "bridge",
|
|
637
|
+
"csharp_handler": "present",
|
|
638
|
+
"destructive": false,
|
|
639
|
+
"timeout": 30000
|
|
640
|
+
},
|
|
641
|
+
{
|
|
642
|
+
"bridgeCommand": "component.list-types",
|
|
643
|
+
"group": "component",
|
|
644
|
+
"command": "list-types",
|
|
645
|
+
"handler_type": "bridge",
|
|
646
|
+
"csharp_handler": "present",
|
|
647
|
+
"destructive": false,
|
|
648
|
+
"timeout": 30000
|
|
649
|
+
},
|
|
650
|
+
{
|
|
651
|
+
"bridgeCommand": "component.modify",
|
|
652
|
+
"group": "component",
|
|
653
|
+
"command": "modify",
|
|
654
|
+
"handler_type": "bridge",
|
|
655
|
+
"csharp_handler": "present",
|
|
656
|
+
"destructive": true,
|
|
657
|
+
"timeout": 30000
|
|
658
|
+
},
|
|
659
|
+
{
|
|
660
|
+
"bridgeCommand": "component.remove",
|
|
661
|
+
"group": "component",
|
|
662
|
+
"command": "remove",
|
|
663
|
+
"handler_type": "bridge",
|
|
664
|
+
"csharp_handler": "present",
|
|
665
|
+
"destructive": false,
|
|
666
|
+
"timeout": 30000
|
|
667
|
+
},
|
|
668
|
+
{
|
|
669
|
+
"bridgeCommand": "component.set",
|
|
670
|
+
"group": "component",
|
|
671
|
+
"command": "set",
|
|
672
|
+
"handler_type": "bridge",
|
|
673
|
+
"csharp_handler": "present",
|
|
674
|
+
"destructive": false,
|
|
675
|
+
"timeout": 30000
|
|
676
|
+
},
|
|
677
|
+
{
|
|
678
|
+
"bridgeCommand": "console.clear",
|
|
679
|
+
"group": "console",
|
|
680
|
+
"command": "clear",
|
|
681
|
+
"handler_type": "bridge",
|
|
682
|
+
"csharp_handler": "present",
|
|
683
|
+
"destructive": false,
|
|
684
|
+
"timeout": 30000
|
|
685
|
+
},
|
|
686
|
+
{
|
|
687
|
+
"bridgeCommand": "console.get",
|
|
688
|
+
"group": "console",
|
|
689
|
+
"command": "get",
|
|
690
|
+
"handler_type": "bridge",
|
|
691
|
+
"csharp_handler": "present",
|
|
692
|
+
"destructive": false,
|
|
693
|
+
"timeout": 30000
|
|
694
|
+
},
|
|
695
|
+
{
|
|
696
|
+
"bridgeCommand": "controller.add-blend-tree-child",
|
|
697
|
+
"group": "controller",
|
|
698
|
+
"command": "add-blend-tree-child",
|
|
699
|
+
"handler_type": "bridge",
|
|
700
|
+
"csharp_handler": "present",
|
|
701
|
+
"destructive": true,
|
|
702
|
+
"timeout": 30000
|
|
703
|
+
},
|
|
704
|
+
{
|
|
705
|
+
"bridgeCommand": "controller.add-layer",
|
|
706
|
+
"group": "controller",
|
|
707
|
+
"command": "add-layer",
|
|
708
|
+
"handler_type": "bridge",
|
|
709
|
+
"csharp_handler": "present",
|
|
710
|
+
"destructive": true,
|
|
711
|
+
"timeout": 30000
|
|
712
|
+
},
|
|
713
|
+
{
|
|
714
|
+
"bridgeCommand": "controller.add-parameter",
|
|
715
|
+
"group": "controller",
|
|
716
|
+
"command": "add-parameter",
|
|
717
|
+
"handler_type": "bridge",
|
|
718
|
+
"csharp_handler": "present",
|
|
719
|
+
"destructive": true,
|
|
720
|
+
"timeout": 30000
|
|
721
|
+
},
|
|
722
|
+
{
|
|
723
|
+
"bridgeCommand": "controller.add-state",
|
|
724
|
+
"group": "controller",
|
|
725
|
+
"command": "add-state",
|
|
726
|
+
"handler_type": "bridge",
|
|
727
|
+
"csharp_handler": "present",
|
|
728
|
+
"destructive": true,
|
|
729
|
+
"timeout": 30000
|
|
730
|
+
},
|
|
731
|
+
{
|
|
732
|
+
"bridgeCommand": "controller.add-transition",
|
|
733
|
+
"group": "controller",
|
|
734
|
+
"command": "add-transition",
|
|
735
|
+
"handler_type": "bridge",
|
|
736
|
+
"csharp_handler": "present",
|
|
737
|
+
"destructive": true,
|
|
738
|
+
"timeout": 30000
|
|
739
|
+
},
|
|
740
|
+
{
|
|
741
|
+
"bridgeCommand": "controller.assign",
|
|
742
|
+
"group": "controller",
|
|
743
|
+
"command": "assign",
|
|
744
|
+
"handler_type": "bridge",
|
|
745
|
+
"csharp_handler": "present",
|
|
746
|
+
"destructive": false,
|
|
747
|
+
"timeout": 30000
|
|
748
|
+
},
|
|
749
|
+
{
|
|
750
|
+
"bridgeCommand": "controller.create",
|
|
751
|
+
"group": "controller",
|
|
752
|
+
"command": "create",
|
|
753
|
+
"handler_type": "bridge",
|
|
754
|
+
"csharp_handler": "present",
|
|
755
|
+
"destructive": true,
|
|
756
|
+
"timeout": 30000
|
|
757
|
+
},
|
|
758
|
+
{
|
|
759
|
+
"bridgeCommand": "controller.create-blend-tree-1d",
|
|
760
|
+
"group": "controller",
|
|
761
|
+
"command": "create-blend-tree-1d",
|
|
762
|
+
"handler_type": "bridge",
|
|
763
|
+
"csharp_handler": "present",
|
|
764
|
+
"destructive": true,
|
|
765
|
+
"timeout": 30000
|
|
766
|
+
},
|
|
767
|
+
{
|
|
768
|
+
"bridgeCommand": "controller.create-blend-tree-2d",
|
|
769
|
+
"group": "controller",
|
|
770
|
+
"command": "create-blend-tree-2d",
|
|
771
|
+
"handler_type": "bridge",
|
|
772
|
+
"csharp_handler": "present",
|
|
773
|
+
"destructive": true,
|
|
774
|
+
"timeout": 30000
|
|
775
|
+
},
|
|
776
|
+
{
|
|
777
|
+
"bridgeCommand": "controller.get-info",
|
|
778
|
+
"group": "controller",
|
|
779
|
+
"command": "get-info",
|
|
780
|
+
"handler_type": "bridge",
|
|
781
|
+
"csharp_handler": "present",
|
|
782
|
+
"destructive": false,
|
|
783
|
+
"timeout": 30000
|
|
784
|
+
},
|
|
785
|
+
{
|
|
786
|
+
"bridgeCommand": "controller.remove-layer",
|
|
787
|
+
"group": "controller",
|
|
788
|
+
"command": "remove-layer",
|
|
789
|
+
"handler_type": "bridge",
|
|
790
|
+
"csharp_handler": "present",
|
|
791
|
+
"destructive": true,
|
|
792
|
+
"timeout": 30000
|
|
793
|
+
},
|
|
794
|
+
{
|
|
795
|
+
"bridgeCommand": "controller.set-layer-weight",
|
|
796
|
+
"group": "controller",
|
|
797
|
+
"command": "set-layer-weight",
|
|
798
|
+
"handler_type": "bridge",
|
|
799
|
+
"csharp_handler": "present",
|
|
800
|
+
"destructive": true,
|
|
801
|
+
"timeout": 30000
|
|
802
|
+
},
|
|
803
|
+
{
|
|
804
|
+
"bridgeCommand": "diagnose.capabilities",
|
|
805
|
+
"group": "diagnose",
|
|
806
|
+
"command": "capabilities",
|
|
807
|
+
"handler_type": "offline",
|
|
808
|
+
"csharp_handler": "none",
|
|
809
|
+
"destructive": false,
|
|
810
|
+
"timeout": 30000
|
|
811
|
+
},
|
|
812
|
+
{
|
|
813
|
+
"bridgeCommand": "diagnose.preflight",
|
|
814
|
+
"group": "diagnose",
|
|
815
|
+
"command": "preflight",
|
|
816
|
+
"handler_type": "bridge",
|
|
817
|
+
"csharp_handler": "present",
|
|
818
|
+
"destructive": false,
|
|
819
|
+
"timeout": 30000
|
|
820
|
+
},
|
|
821
|
+
{
|
|
822
|
+
"bridgeCommand": "docs.get",
|
|
823
|
+
"group": "docs",
|
|
824
|
+
"command": "get",
|
|
825
|
+
"handler_type": "offline",
|
|
826
|
+
"csharp_handler": "none",
|
|
827
|
+
"destructive": false,
|
|
828
|
+
"timeout": 30000
|
|
829
|
+
},
|
|
830
|
+
{
|
|
831
|
+
"bridgeCommand": "docs.search",
|
|
832
|
+
"group": "docs",
|
|
833
|
+
"command": "search",
|
|
834
|
+
"handler_type": "offline",
|
|
835
|
+
"csharp_handler": "none",
|
|
836
|
+
"destructive": false,
|
|
837
|
+
"timeout": 30000
|
|
838
|
+
},
|
|
839
|
+
{
|
|
840
|
+
"bridgeCommand": "editor.active-tool",
|
|
841
|
+
"group": "editor",
|
|
842
|
+
"command": "active-tool",
|
|
843
|
+
"handler_type": "bridge",
|
|
844
|
+
"csharp_handler": "present",
|
|
845
|
+
"destructive": false,
|
|
846
|
+
"timeout": 30000
|
|
847
|
+
},
|
|
848
|
+
{
|
|
849
|
+
"bridgeCommand": "editor.active-tool.set",
|
|
850
|
+
"group": "editor",
|
|
851
|
+
"command": "active-tool.set",
|
|
852
|
+
"handler_type": "bridge",
|
|
853
|
+
"csharp_handler": "present",
|
|
854
|
+
"destructive": false,
|
|
855
|
+
"timeout": 30000
|
|
856
|
+
},
|
|
857
|
+
{
|
|
858
|
+
"bridgeCommand": "editor.autotick.set",
|
|
859
|
+
"group": "editor",
|
|
860
|
+
"command": "autotick.set",
|
|
861
|
+
"handler_type": "bridge",
|
|
862
|
+
"csharp_handler": "present",
|
|
863
|
+
"destructive": true,
|
|
864
|
+
"timeout": 30000
|
|
865
|
+
},
|
|
866
|
+
{
|
|
867
|
+
"bridgeCommand": "editor.compile",
|
|
868
|
+
"group": "editor",
|
|
869
|
+
"command": "compile",
|
|
870
|
+
"handler_type": "hybrid",
|
|
871
|
+
"csharp_handler": "none",
|
|
872
|
+
"destructive": false,
|
|
873
|
+
"timeout": 120000
|
|
874
|
+
},
|
|
875
|
+
{
|
|
876
|
+
"bridgeCommand": "editor.console",
|
|
877
|
+
"group": "editor",
|
|
878
|
+
"command": "console",
|
|
879
|
+
"handler_type": "bridge",
|
|
880
|
+
"csharp_handler": "present",
|
|
881
|
+
"destructive": false,
|
|
882
|
+
"timeout": 30000
|
|
883
|
+
},
|
|
884
|
+
{
|
|
885
|
+
"bridgeCommand": "editor.dialog.click",
|
|
886
|
+
"group": "editor",
|
|
887
|
+
"command": "dialog.click",
|
|
888
|
+
"handler_type": "offline",
|
|
889
|
+
"csharp_handler": "none",
|
|
890
|
+
"destructive": false,
|
|
891
|
+
"timeout": 30000
|
|
892
|
+
},
|
|
893
|
+
{
|
|
894
|
+
"bridgeCommand": "editor.dialogs",
|
|
895
|
+
"group": "editor",
|
|
896
|
+
"command": "dialogs",
|
|
897
|
+
"handler_type": "offline",
|
|
898
|
+
"csharp_handler": "none",
|
|
899
|
+
"destructive": false,
|
|
900
|
+
"timeout": 30000
|
|
901
|
+
},
|
|
902
|
+
{
|
|
903
|
+
"bridgeCommand": "editor.focus",
|
|
904
|
+
"group": "editor",
|
|
905
|
+
"command": "focus",
|
|
906
|
+
"handler_type": "bridge",
|
|
907
|
+
"csharp_handler": "present",
|
|
908
|
+
"destructive": false,
|
|
909
|
+
"timeout": 30000
|
|
910
|
+
},
|
|
911
|
+
{
|
|
912
|
+
"bridgeCommand": "editor.menu",
|
|
913
|
+
"group": "editor",
|
|
914
|
+
"command": "menu",
|
|
915
|
+
"handler_type": "bridge",
|
|
916
|
+
"csharp_handler": "present",
|
|
917
|
+
"destructive": true,
|
|
918
|
+
"timeout": 30000
|
|
919
|
+
},
|
|
920
|
+
{
|
|
921
|
+
"bridgeCommand": "editor.menu-items",
|
|
922
|
+
"group": "editor",
|
|
923
|
+
"command": "menu-items",
|
|
924
|
+
"handler_type": "bridge",
|
|
925
|
+
"csharp_handler": "present",
|
|
926
|
+
"destructive": false,
|
|
927
|
+
"timeout": 30000
|
|
928
|
+
},
|
|
929
|
+
{
|
|
930
|
+
"bridgeCommand": "editor.pause",
|
|
931
|
+
"group": "editor",
|
|
932
|
+
"command": "pause",
|
|
933
|
+
"handler_type": "bridge",
|
|
934
|
+
"csharp_handler": "present",
|
|
935
|
+
"destructive": false,
|
|
936
|
+
"timeout": 30000
|
|
937
|
+
},
|
|
938
|
+
{
|
|
939
|
+
"bridgeCommand": "editor.play",
|
|
940
|
+
"group": "editor",
|
|
941
|
+
"command": "play",
|
|
942
|
+
"handler_type": "bridge",
|
|
943
|
+
"csharp_handler": "present",
|
|
944
|
+
"destructive": false,
|
|
945
|
+
"timeout": 30000
|
|
946
|
+
},
|
|
947
|
+
{
|
|
948
|
+
"bridgeCommand": "editor.redo",
|
|
949
|
+
"group": "editor",
|
|
950
|
+
"command": "redo",
|
|
951
|
+
"handler_type": "bridge",
|
|
952
|
+
"csharp_handler": "present",
|
|
953
|
+
"destructive": false,
|
|
954
|
+
"timeout": 30000
|
|
955
|
+
},
|
|
956
|
+
{
|
|
957
|
+
"bridgeCommand": "editor.refresh",
|
|
958
|
+
"group": "editor",
|
|
959
|
+
"command": "refresh",
|
|
960
|
+
"handler_type": "hybrid",
|
|
961
|
+
"csharp_handler": "none",
|
|
962
|
+
"destructive": false,
|
|
963
|
+
"timeout": 120000
|
|
964
|
+
},
|
|
965
|
+
{
|
|
966
|
+
"bridgeCommand": "editor.resolution",
|
|
967
|
+
"group": "editor",
|
|
968
|
+
"command": "resolution",
|
|
969
|
+
"handler_type": "bridge",
|
|
970
|
+
"csharp_handler": "present",
|
|
971
|
+
"destructive": true,
|
|
972
|
+
"timeout": 30000
|
|
973
|
+
},
|
|
974
|
+
{
|
|
975
|
+
"bridgeCommand": "editor.search",
|
|
976
|
+
"group": "editor",
|
|
977
|
+
"command": "search",
|
|
978
|
+
"handler_type": "bridge",
|
|
979
|
+
"csharp_handler": "present",
|
|
980
|
+
"destructive": false,
|
|
981
|
+
"timeout": 30000
|
|
982
|
+
},
|
|
983
|
+
{
|
|
984
|
+
"bridgeCommand": "editor.selection",
|
|
985
|
+
"group": "editor",
|
|
986
|
+
"command": "selection",
|
|
987
|
+
"handler_type": "bridge",
|
|
988
|
+
"csharp_handler": "present",
|
|
989
|
+
"destructive": false,
|
|
990
|
+
"timeout": 30000
|
|
991
|
+
},
|
|
992
|
+
{
|
|
993
|
+
"bridgeCommand": "editor.selection.set",
|
|
994
|
+
"group": "editor",
|
|
995
|
+
"command": "selection.set",
|
|
996
|
+
"handler_type": "bridge",
|
|
997
|
+
"csharp_handler": "present",
|
|
998
|
+
"destructive": false,
|
|
999
|
+
"timeout": 30000
|
|
1000
|
+
},
|
|
1001
|
+
{
|
|
1002
|
+
"bridgeCommand": "editor.state",
|
|
1003
|
+
"group": "editor",
|
|
1004
|
+
"command": "state",
|
|
1005
|
+
"handler_type": "offline",
|
|
1006
|
+
"csharp_handler": "none",
|
|
1007
|
+
"destructive": false,
|
|
1008
|
+
"timeout": 30000
|
|
1009
|
+
},
|
|
1010
|
+
{
|
|
1011
|
+
"bridgeCommand": "editor.stop",
|
|
1012
|
+
"group": "editor",
|
|
1013
|
+
"command": "stop",
|
|
1014
|
+
"handler_type": "bridge",
|
|
1015
|
+
"csharp_handler": "present",
|
|
1016
|
+
"destructive": false,
|
|
1017
|
+
"timeout": 30000
|
|
1018
|
+
},
|
|
1019
|
+
{
|
|
1020
|
+
"bridgeCommand": "editor.tool-states",
|
|
1021
|
+
"group": "editor",
|
|
1022
|
+
"command": "tool-states",
|
|
1023
|
+
"handler_type": "bridge",
|
|
1024
|
+
"csharp_handler": "present",
|
|
1025
|
+
"destructive": false,
|
|
1026
|
+
"timeout": 30000
|
|
1027
|
+
},
|
|
1028
|
+
{
|
|
1029
|
+
"bridgeCommand": "editor.undo",
|
|
1030
|
+
"group": "editor",
|
|
1031
|
+
"command": "undo",
|
|
1032
|
+
"handler_type": "bridge",
|
|
1033
|
+
"csharp_handler": "present",
|
|
1034
|
+
"destructive": false,
|
|
1035
|
+
"timeout": 30000
|
|
1036
|
+
},
|
|
1037
|
+
{
|
|
1038
|
+
"bridgeCommand": "editor.windows",
|
|
1039
|
+
"group": "editor",
|
|
1040
|
+
"command": "windows",
|
|
1041
|
+
"handler_type": "bridge",
|
|
1042
|
+
"csharp_handler": "present",
|
|
1043
|
+
"destructive": false,
|
|
1044
|
+
"timeout": 30000
|
|
1045
|
+
},
|
|
1046
|
+
{
|
|
1047
|
+
"bridgeCommand": "extension.status",
|
|
1048
|
+
"group": "extension",
|
|
1049
|
+
"command": "status",
|
|
1050
|
+
"handler_type": "bridge",
|
|
1051
|
+
"csharp_handler": "present",
|
|
1052
|
+
"destructive": false,
|
|
1053
|
+
"timeout": 30000
|
|
1054
|
+
},
|
|
1055
|
+
{
|
|
1056
|
+
"bridgeCommand": "go.create",
|
|
1057
|
+
"group": "go",
|
|
1058
|
+
"command": "create",
|
|
1059
|
+
"handler_type": "bridge",
|
|
1060
|
+
"csharp_handler": "present",
|
|
1061
|
+
"destructive": false,
|
|
1062
|
+
"timeout": 30000
|
|
1063
|
+
},
|
|
1064
|
+
{
|
|
1065
|
+
"bridgeCommand": "go.delete",
|
|
1066
|
+
"group": "go",
|
|
1067
|
+
"command": "delete",
|
|
1068
|
+
"handler_type": "bridge",
|
|
1069
|
+
"csharp_handler": "present",
|
|
1070
|
+
"destructive": false,
|
|
1071
|
+
"timeout": 30000
|
|
1072
|
+
},
|
|
1073
|
+
{
|
|
1074
|
+
"bridgeCommand": "go.duplicate",
|
|
1075
|
+
"group": "go",
|
|
1076
|
+
"command": "duplicate",
|
|
1077
|
+
"handler_type": "bridge",
|
|
1078
|
+
"csharp_handler": "present",
|
|
1079
|
+
"destructive": false,
|
|
1080
|
+
"timeout": 30000
|
|
1081
|
+
},
|
|
1082
|
+
{
|
|
1083
|
+
"bridgeCommand": "go.find",
|
|
1084
|
+
"group": "go",
|
|
1085
|
+
"command": "find",
|
|
1086
|
+
"handler_type": "bridge",
|
|
1087
|
+
"csharp_handler": "present",
|
|
1088
|
+
"destructive": false,
|
|
1089
|
+
"timeout": 30000
|
|
1090
|
+
},
|
|
1091
|
+
{
|
|
1092
|
+
"bridgeCommand": "go.inspect",
|
|
1093
|
+
"group": "go",
|
|
1094
|
+
"command": "inspect",
|
|
1095
|
+
"handler_type": "bridge",
|
|
1096
|
+
"csharp_handler": "present",
|
|
1097
|
+
"destructive": false,
|
|
1098
|
+
"timeout": 30000
|
|
1099
|
+
},
|
|
1100
|
+
{
|
|
1101
|
+
"bridgeCommand": "go.look-at",
|
|
1102
|
+
"group": "go",
|
|
1103
|
+
"command": "look-at",
|
|
1104
|
+
"handler_type": "bridge",
|
|
1105
|
+
"csharp_handler": "present",
|
|
1106
|
+
"destructive": false,
|
|
1107
|
+
"timeout": 30000
|
|
1108
|
+
},
|
|
1109
|
+
{
|
|
1110
|
+
"bridgeCommand": "go.modify",
|
|
1111
|
+
"group": "go",
|
|
1112
|
+
"command": "modify",
|
|
1113
|
+
"handler_type": "bridge",
|
|
1114
|
+
"csharp_handler": "present",
|
|
1115
|
+
"destructive": false,
|
|
1116
|
+
"timeout": 30000
|
|
1117
|
+
},
|
|
1118
|
+
{
|
|
1119
|
+
"bridgeCommand": "go.move-relative",
|
|
1120
|
+
"group": "go",
|
|
1121
|
+
"command": "move-relative",
|
|
1122
|
+
"handler_type": "bridge",
|
|
1123
|
+
"csharp_handler": "present",
|
|
1124
|
+
"destructive": false,
|
|
1125
|
+
"timeout": 30000
|
|
1126
|
+
},
|
|
1127
|
+
{
|
|
1128
|
+
"bridgeCommand": "go.set-parent",
|
|
1129
|
+
"group": "go",
|
|
1130
|
+
"command": "set-parent",
|
|
1131
|
+
"handler_type": "bridge",
|
|
1132
|
+
"csharp_handler": "present",
|
|
1133
|
+
"destructive": false,
|
|
1134
|
+
"timeout": 30000
|
|
1135
|
+
},
|
|
1136
|
+
{
|
|
1137
|
+
"bridgeCommand": "graphics.bake-cancel",
|
|
1138
|
+
"group": "graphics",
|
|
1139
|
+
"command": "bake-cancel",
|
|
1140
|
+
"handler_type": "bridge",
|
|
1141
|
+
"csharp_handler": "present",
|
|
1142
|
+
"destructive": false,
|
|
1143
|
+
"timeout": 30000
|
|
1144
|
+
},
|
|
1145
|
+
{
|
|
1146
|
+
"bridgeCommand": "graphics.bake-clear",
|
|
1147
|
+
"group": "graphics",
|
|
1148
|
+
"command": "bake-clear",
|
|
1149
|
+
"handler_type": "bridge",
|
|
1150
|
+
"csharp_handler": "present",
|
|
1151
|
+
"destructive": true,
|
|
1152
|
+
"timeout": 30000
|
|
1153
|
+
},
|
|
1154
|
+
{
|
|
1155
|
+
"bridgeCommand": "graphics.bake-reflection-probe",
|
|
1156
|
+
"group": "graphics",
|
|
1157
|
+
"command": "bake-reflection-probe",
|
|
1158
|
+
"handler_type": "bridge",
|
|
1159
|
+
"csharp_handler": "present",
|
|
1160
|
+
"destructive": true,
|
|
1161
|
+
"timeout": 30000
|
|
1162
|
+
},
|
|
1163
|
+
{
|
|
1164
|
+
"bridgeCommand": "graphics.bake-settings",
|
|
1165
|
+
"group": "graphics",
|
|
1166
|
+
"command": "bake-settings",
|
|
1167
|
+
"handler_type": "bridge",
|
|
1168
|
+
"csharp_handler": "present",
|
|
1169
|
+
"destructive": true,
|
|
1170
|
+
"timeout": 30000
|
|
1171
|
+
},
|
|
1172
|
+
{
|
|
1173
|
+
"bridgeCommand": "graphics.bake-start",
|
|
1174
|
+
"group": "graphics",
|
|
1175
|
+
"command": "bake-start",
|
|
1176
|
+
"handler_type": "bridge",
|
|
1177
|
+
"csharp_handler": "present",
|
|
1178
|
+
"destructive": true,
|
|
1179
|
+
"timeout": 30000
|
|
1180
|
+
},
|
|
1181
|
+
{
|
|
1182
|
+
"bridgeCommand": "graphics.bake-status",
|
|
1183
|
+
"group": "graphics",
|
|
1184
|
+
"command": "bake-status",
|
|
1185
|
+
"handler_type": "bridge",
|
|
1186
|
+
"csharp_handler": "present",
|
|
1187
|
+
"destructive": false,
|
|
1188
|
+
"timeout": 30000
|
|
1189
|
+
},
|
|
1190
|
+
{
|
|
1191
|
+
"bridgeCommand": "graphics.light-probe-group",
|
|
1192
|
+
"group": "graphics",
|
|
1193
|
+
"command": "light-probe-group",
|
|
1194
|
+
"handler_type": "bridge",
|
|
1195
|
+
"csharp_handler": "present",
|
|
1196
|
+
"destructive": false,
|
|
1197
|
+
"timeout": 30000
|
|
1198
|
+
},
|
|
1199
|
+
{
|
|
1200
|
+
"bridgeCommand": "graphics.pipeline-info",
|
|
1201
|
+
"group": "graphics",
|
|
1202
|
+
"command": "pipeline-info",
|
|
1203
|
+
"handler_type": "bridge",
|
|
1204
|
+
"csharp_handler": "present",
|
|
1205
|
+
"destructive": false,
|
|
1206
|
+
"timeout": 30000
|
|
1207
|
+
},
|
|
1208
|
+
{
|
|
1209
|
+
"bridgeCommand": "graphics.pipeline-quality",
|
|
1210
|
+
"group": "graphics",
|
|
1211
|
+
"command": "pipeline-quality",
|
|
1212
|
+
"handler_type": "bridge",
|
|
1213
|
+
"csharp_handler": "present",
|
|
1214
|
+
"destructive": true,
|
|
1215
|
+
"timeout": 30000
|
|
1216
|
+
},
|
|
1217
|
+
{
|
|
1218
|
+
"bridgeCommand": "graphics.pipeline-settings",
|
|
1219
|
+
"group": "graphics",
|
|
1220
|
+
"command": "pipeline-settings",
|
|
1221
|
+
"handler_type": "bridge",
|
|
1222
|
+
"csharp_handler": "present",
|
|
1223
|
+
"destructive": true,
|
|
1224
|
+
"timeout": 30000
|
|
1225
|
+
},
|
|
1226
|
+
{
|
|
1227
|
+
"bridgeCommand": "graphics.probe-positions",
|
|
1228
|
+
"group": "graphics",
|
|
1229
|
+
"command": "probe-positions",
|
|
1230
|
+
"handler_type": "bridge",
|
|
1231
|
+
"csharp_handler": "present",
|
|
1232
|
+
"destructive": false,
|
|
1233
|
+
"timeout": 30000
|
|
1234
|
+
},
|
|
1235
|
+
{
|
|
1236
|
+
"bridgeCommand": "graphics.quality",
|
|
1237
|
+
"group": "graphics",
|
|
1238
|
+
"command": "quality",
|
|
1239
|
+
"handler_type": "bridge",
|
|
1240
|
+
"csharp_handler": "present",
|
|
1241
|
+
"destructive": true,
|
|
1242
|
+
"timeout": 30000
|
|
1243
|
+
},
|
|
1244
|
+
{
|
|
1245
|
+
"bridgeCommand": "graphics.reflection-probe",
|
|
1246
|
+
"group": "graphics",
|
|
1247
|
+
"command": "reflection-probe",
|
|
1248
|
+
"handler_type": "bridge",
|
|
1249
|
+
"csharp_handler": "present",
|
|
1250
|
+
"destructive": false,
|
|
1251
|
+
"timeout": 30000
|
|
1252
|
+
},
|
|
1253
|
+
{
|
|
1254
|
+
"bridgeCommand": "graphics.scene-debug",
|
|
1255
|
+
"group": "graphics",
|
|
1256
|
+
"command": "scene-debug",
|
|
1257
|
+
"handler_type": "bridge",
|
|
1258
|
+
"csharp_handler": "present",
|
|
1259
|
+
"destructive": false,
|
|
1260
|
+
"timeout": 30000
|
|
1261
|
+
},
|
|
1262
|
+
{
|
|
1263
|
+
"bridgeCommand": "graphics.settings",
|
|
1264
|
+
"group": "graphics",
|
|
1265
|
+
"command": "settings",
|
|
1266
|
+
"handler_type": "bridge",
|
|
1267
|
+
"csharp_handler": "present",
|
|
1268
|
+
"destructive": true,
|
|
1269
|
+
"timeout": 30000
|
|
1270
|
+
},
|
|
1271
|
+
{
|
|
1272
|
+
"bridgeCommand": "graphics.skybox-get",
|
|
1273
|
+
"group": "graphics",
|
|
1274
|
+
"command": "skybox-get",
|
|
1275
|
+
"handler_type": "bridge",
|
|
1276
|
+
"csharp_handler": "present",
|
|
1277
|
+
"destructive": false,
|
|
1278
|
+
"timeout": 30000
|
|
1279
|
+
},
|
|
1280
|
+
{
|
|
1281
|
+
"bridgeCommand": "graphics.skybox-set-ambient",
|
|
1282
|
+
"group": "graphics",
|
|
1283
|
+
"command": "skybox-set-ambient",
|
|
1284
|
+
"handler_type": "bridge",
|
|
1285
|
+
"csharp_handler": "present",
|
|
1286
|
+
"destructive": false,
|
|
1287
|
+
"timeout": 30000
|
|
1288
|
+
},
|
|
1289
|
+
{
|
|
1290
|
+
"bridgeCommand": "graphics.skybox-set-fog",
|
|
1291
|
+
"group": "graphics",
|
|
1292
|
+
"command": "skybox-set-fog",
|
|
1293
|
+
"handler_type": "bridge",
|
|
1294
|
+
"csharp_handler": "present",
|
|
1295
|
+
"destructive": false,
|
|
1296
|
+
"timeout": 30000
|
|
1297
|
+
},
|
|
1298
|
+
{
|
|
1299
|
+
"bridgeCommand": "graphics.skybox-set-material",
|
|
1300
|
+
"group": "graphics",
|
|
1301
|
+
"command": "skybox-set-material",
|
|
1302
|
+
"handler_type": "bridge",
|
|
1303
|
+
"csharp_handler": "present",
|
|
1304
|
+
"destructive": false,
|
|
1305
|
+
"timeout": 30000
|
|
1306
|
+
},
|
|
1307
|
+
{
|
|
1308
|
+
"bridgeCommand": "graphics.skybox-set-properties",
|
|
1309
|
+
"group": "graphics",
|
|
1310
|
+
"command": "skybox-set-properties",
|
|
1311
|
+
"handler_type": "bridge",
|
|
1312
|
+
"csharp_handler": "present",
|
|
1313
|
+
"destructive": true,
|
|
1314
|
+
"timeout": 30000
|
|
1315
|
+
},
|
|
1316
|
+
{
|
|
1317
|
+
"bridgeCommand": "graphics.skybox-set-reflection",
|
|
1318
|
+
"group": "graphics",
|
|
1319
|
+
"command": "skybox-set-reflection",
|
|
1320
|
+
"handler_type": "bridge",
|
|
1321
|
+
"csharp_handler": "present",
|
|
1322
|
+
"destructive": false,
|
|
1323
|
+
"timeout": 30000
|
|
1324
|
+
},
|
|
1325
|
+
{
|
|
1326
|
+
"bridgeCommand": "graphics.skybox-set-sun",
|
|
1327
|
+
"group": "graphics",
|
|
1328
|
+
"command": "skybox-set-sun",
|
|
1329
|
+
"handler_type": "bridge",
|
|
1330
|
+
"csharp_handler": "present",
|
|
1331
|
+
"destructive": false,
|
|
1332
|
+
"timeout": 30000
|
|
1333
|
+
},
|
|
1334
|
+
{
|
|
1335
|
+
"bridgeCommand": "graphics.stats",
|
|
1336
|
+
"group": "graphics",
|
|
1337
|
+
"command": "stats",
|
|
1338
|
+
"handler_type": "bridge",
|
|
1339
|
+
"csharp_handler": "present",
|
|
1340
|
+
"destructive": false,
|
|
1341
|
+
"timeout": 30000
|
|
1342
|
+
},
|
|
1343
|
+
{
|
|
1344
|
+
"bridgeCommand": "graphics.stats-counters",
|
|
1345
|
+
"group": "graphics",
|
|
1346
|
+
"command": "stats-counters",
|
|
1347
|
+
"handler_type": "bridge",
|
|
1348
|
+
"csharp_handler": "present",
|
|
1349
|
+
"destructive": false,
|
|
1350
|
+
"timeout": 30000
|
|
1351
|
+
},
|
|
1352
|
+
{
|
|
1353
|
+
"bridgeCommand": "graphics.stats-memory",
|
|
1354
|
+
"group": "graphics",
|
|
1355
|
+
"command": "stats-memory",
|
|
1356
|
+
"handler_type": "bridge",
|
|
1357
|
+
"csharp_handler": "present",
|
|
1358
|
+
"destructive": false,
|
|
1359
|
+
"timeout": 30000
|
|
1360
|
+
},
|
|
1361
|
+
{
|
|
1362
|
+
"bridgeCommand": "graphics.volume",
|
|
1363
|
+
"group": "graphics",
|
|
1364
|
+
"command": "volume",
|
|
1365
|
+
"handler_type": "bridge",
|
|
1366
|
+
"csharp_handler": "present",
|
|
1367
|
+
"destructive": false,
|
|
1368
|
+
"timeout": 30000
|
|
1369
|
+
},
|
|
1370
|
+
{
|
|
1371
|
+
"bridgeCommand": "hdrp.settings.get",
|
|
1372
|
+
"group": "hdrp",
|
|
1373
|
+
"command": "settings.get",
|
|
1374
|
+
"handler_type": "bridge",
|
|
1375
|
+
"csharp_handler": "present",
|
|
1376
|
+
"destructive": false,
|
|
1377
|
+
"timeout": 30000,
|
|
1378
|
+
"requires_packages": [
|
|
1379
|
+
"com.unity.render-pipelines.high-definition"
|
|
1380
|
+
]
|
|
1381
|
+
},
|
|
1382
|
+
{
|
|
1383
|
+
"bridgeCommand": "hdrp.settings.set",
|
|
1384
|
+
"group": "hdrp",
|
|
1385
|
+
"command": "settings.set",
|
|
1386
|
+
"handler_type": "bridge",
|
|
1387
|
+
"csharp_handler": "present",
|
|
1388
|
+
"destructive": true,
|
|
1389
|
+
"timeout": 30000,
|
|
1390
|
+
"requires_packages": [
|
|
1391
|
+
"com.unity.render-pipelines.high-definition"
|
|
1392
|
+
]
|
|
1393
|
+
},
|
|
1394
|
+
{
|
|
1395
|
+
"bridgeCommand": "hdrp.volume.add-effect",
|
|
1396
|
+
"group": "hdrp",
|
|
1397
|
+
"command": "volume.add-effect",
|
|
1398
|
+
"handler_type": "bridge",
|
|
1399
|
+
"csharp_handler": "present",
|
|
1400
|
+
"destructive": false,
|
|
1401
|
+
"timeout": 30000,
|
|
1402
|
+
"requires_packages": [
|
|
1403
|
+
"com.unity.render-pipelines.high-definition"
|
|
1404
|
+
]
|
|
1405
|
+
},
|
|
1406
|
+
{
|
|
1407
|
+
"bridgeCommand": "hdrp.volume.create",
|
|
1408
|
+
"group": "hdrp",
|
|
1409
|
+
"command": "volume.create",
|
|
1410
|
+
"handler_type": "bridge",
|
|
1411
|
+
"csharp_handler": "present",
|
|
1412
|
+
"destructive": false,
|
|
1413
|
+
"timeout": 30000,
|
|
1414
|
+
"requires_packages": [
|
|
1415
|
+
"com.unity.render-pipelines.high-definition"
|
|
1416
|
+
]
|
|
1417
|
+
},
|
|
1418
|
+
{
|
|
1419
|
+
"bridgeCommand": "hdrp.volume.info",
|
|
1420
|
+
"group": "hdrp",
|
|
1421
|
+
"command": "volume.info",
|
|
1422
|
+
"handler_type": "bridge",
|
|
1423
|
+
"csharp_handler": "present",
|
|
1424
|
+
"destructive": false,
|
|
1425
|
+
"timeout": 30000,
|
|
1426
|
+
"requires_packages": [
|
|
1427
|
+
"com.unity.render-pipelines.high-definition"
|
|
1428
|
+
]
|
|
1429
|
+
},
|
|
1430
|
+
{
|
|
1431
|
+
"bridgeCommand": "hdrp.volume.list",
|
|
1432
|
+
"group": "hdrp",
|
|
1433
|
+
"command": "volume.list",
|
|
1434
|
+
"handler_type": "bridge",
|
|
1435
|
+
"csharp_handler": "present",
|
|
1436
|
+
"destructive": false,
|
|
1437
|
+
"timeout": 30000,
|
|
1438
|
+
"requires_packages": [
|
|
1439
|
+
"com.unity.render-pipelines.high-definition"
|
|
1440
|
+
]
|
|
1441
|
+
},
|
|
1442
|
+
{
|
|
1443
|
+
"bridgeCommand": "hdrp.volume.set",
|
|
1444
|
+
"group": "hdrp",
|
|
1445
|
+
"command": "volume.set",
|
|
1446
|
+
"handler_type": "bridge",
|
|
1447
|
+
"csharp_handler": "present",
|
|
1448
|
+
"destructive": false,
|
|
1449
|
+
"timeout": 30000,
|
|
1450
|
+
"requires_packages": [
|
|
1451
|
+
"com.unity.render-pipelines.high-definition"
|
|
1452
|
+
]
|
|
1453
|
+
},
|
|
1454
|
+
{
|
|
1455
|
+
"bridgeCommand": "instances.list",
|
|
1456
|
+
"group": "instances",
|
|
1457
|
+
"command": "list",
|
|
1458
|
+
"handler_type": "bridge",
|
|
1459
|
+
"csharp_handler": "present",
|
|
1460
|
+
"destructive": false,
|
|
1461
|
+
"timeout": 30000
|
|
1462
|
+
},
|
|
1463
|
+
{
|
|
1464
|
+
"bridgeCommand": "material.assign",
|
|
1465
|
+
"group": "material",
|
|
1466
|
+
"command": "assign",
|
|
1467
|
+
"handler_type": "bridge",
|
|
1468
|
+
"csharp_handler": "present",
|
|
1469
|
+
"destructive": false,
|
|
1470
|
+
"timeout": 30000
|
|
1471
|
+
},
|
|
1472
|
+
{
|
|
1473
|
+
"bridgeCommand": "material.create",
|
|
1474
|
+
"group": "material",
|
|
1475
|
+
"command": "create",
|
|
1476
|
+
"handler_type": "bridge",
|
|
1477
|
+
"csharp_handler": "present",
|
|
1478
|
+
"destructive": true,
|
|
1479
|
+
"timeout": 30000
|
|
1480
|
+
},
|
|
1481
|
+
{
|
|
1482
|
+
"bridgeCommand": "material.info",
|
|
1483
|
+
"group": "material",
|
|
1484
|
+
"command": "info",
|
|
1485
|
+
"handler_type": "bridge",
|
|
1486
|
+
"csharp_handler": "present",
|
|
1487
|
+
"destructive": false,
|
|
1488
|
+
"timeout": 30000
|
|
1489
|
+
},
|
|
1490
|
+
{
|
|
1491
|
+
"bridgeCommand": "material.set",
|
|
1492
|
+
"group": "material",
|
|
1493
|
+
"command": "set",
|
|
1494
|
+
"handler_type": "bridge",
|
|
1495
|
+
"csharp_handler": "present",
|
|
1496
|
+
"destructive": true,
|
|
1497
|
+
"timeout": 30000
|
|
1498
|
+
},
|
|
1499
|
+
{
|
|
1500
|
+
"bridgeCommand": "material.set-renderer-color",
|
|
1501
|
+
"group": "material",
|
|
1502
|
+
"command": "set-renderer-color",
|
|
1503
|
+
"handler_type": "bridge",
|
|
1504
|
+
"csharp_handler": "present",
|
|
1505
|
+
"destructive": false,
|
|
1506
|
+
"timeout": 30000
|
|
1507
|
+
},
|
|
1508
|
+
{
|
|
1509
|
+
"bridgeCommand": "navmesh.bake",
|
|
1510
|
+
"group": "navmesh",
|
|
1511
|
+
"command": "bake",
|
|
1512
|
+
"handler_type": "hybrid",
|
|
1513
|
+
"csharp_handler": "none",
|
|
1514
|
+
"destructive": true,
|
|
1515
|
+
"timeout": 600000
|
|
1516
|
+
},
|
|
1517
|
+
{
|
|
1518
|
+
"bridgeCommand": "navmesh.bake-cancel",
|
|
1519
|
+
"group": "navmesh",
|
|
1520
|
+
"command": "bake-cancel",
|
|
1521
|
+
"handler_type": "hybrid",
|
|
1522
|
+
"csharp_handler": "none",
|
|
1523
|
+
"destructive": false,
|
|
1524
|
+
"timeout": 60000
|
|
1525
|
+
},
|
|
1526
|
+
{
|
|
1527
|
+
"bridgeCommand": "navmesh.bake-clear",
|
|
1528
|
+
"group": "navmesh",
|
|
1529
|
+
"command": "bake-clear",
|
|
1530
|
+
"handler_type": "bridge",
|
|
1531
|
+
"csharp_handler": "present",
|
|
1532
|
+
"destructive": true,
|
|
1533
|
+
"timeout": 30000
|
|
1534
|
+
},
|
|
1535
|
+
{
|
|
1536
|
+
"bridgeCommand": "navmesh.bake-status",
|
|
1537
|
+
"group": "navmesh",
|
|
1538
|
+
"command": "bake-status",
|
|
1539
|
+
"handler_type": "hybrid",
|
|
1540
|
+
"csharp_handler": "none",
|
|
1541
|
+
"destructive": false,
|
|
1542
|
+
"timeout": 30000
|
|
1543
|
+
},
|
|
1544
|
+
{
|
|
1545
|
+
"bridgeCommand": "navmesh.settings",
|
|
1546
|
+
"group": "navmesh",
|
|
1547
|
+
"command": "settings",
|
|
1548
|
+
"handler_type": "bridge",
|
|
1549
|
+
"csharp_handler": "present",
|
|
1550
|
+
"destructive": false,
|
|
1551
|
+
"timeout": 30000
|
|
1552
|
+
},
|
|
1553
|
+
{
|
|
1554
|
+
"bridgeCommand": "navmesh.settings.set",
|
|
1555
|
+
"group": "navmesh",
|
|
1556
|
+
"command": "settings.set",
|
|
1557
|
+
"handler_type": "bridge",
|
|
1558
|
+
"csharp_handler": "present",
|
|
1559
|
+
"destructive": true,
|
|
1560
|
+
"timeout": 30000
|
|
1561
|
+
},
|
|
1562
|
+
{
|
|
1563
|
+
"bridgeCommand": "navmesh.surface.bake",
|
|
1564
|
+
"group": "navmesh",
|
|
1565
|
+
"command": "surface.bake",
|
|
1566
|
+
"handler_type": "hybrid",
|
|
1567
|
+
"csharp_handler": "none",
|
|
1568
|
+
"destructive": true,
|
|
1569
|
+
"timeout": 600000,
|
|
1570
|
+
"requires_packages": [
|
|
1571
|
+
"com.unity.ai.navigation"
|
|
1572
|
+
]
|
|
1573
|
+
},
|
|
1574
|
+
{
|
|
1575
|
+
"bridgeCommand": "object.get-data",
|
|
1576
|
+
"group": "object",
|
|
1577
|
+
"command": "get-data",
|
|
1578
|
+
"handler_type": "bridge",
|
|
1579
|
+
"csharp_handler": "present",
|
|
1580
|
+
"destructive": false,
|
|
1581
|
+
"timeout": 30000
|
|
1582
|
+
},
|
|
1583
|
+
{
|
|
1584
|
+
"bridgeCommand": "object.modify",
|
|
1585
|
+
"group": "object",
|
|
1586
|
+
"command": "modify",
|
|
1587
|
+
"handler_type": "bridge",
|
|
1588
|
+
"csharp_handler": "present",
|
|
1589
|
+
"destructive": true,
|
|
1590
|
+
"timeout": 30000
|
|
1591
|
+
},
|
|
1592
|
+
{
|
|
1593
|
+
"bridgeCommand": "occlusion.bake",
|
|
1594
|
+
"group": "occlusion",
|
|
1595
|
+
"command": "bake",
|
|
1596
|
+
"handler_type": "hybrid",
|
|
1597
|
+
"csharp_handler": "none",
|
|
1598
|
+
"destructive": true,
|
|
1599
|
+
"timeout": 600000
|
|
1600
|
+
},
|
|
1601
|
+
{
|
|
1602
|
+
"bridgeCommand": "occlusion.bake-cancel",
|
|
1603
|
+
"group": "occlusion",
|
|
1604
|
+
"command": "bake-cancel",
|
|
1605
|
+
"handler_type": "hybrid",
|
|
1606
|
+
"csharp_handler": "none",
|
|
1607
|
+
"destructive": false,
|
|
1608
|
+
"timeout": 60000
|
|
1609
|
+
},
|
|
1610
|
+
{
|
|
1611
|
+
"bridgeCommand": "occlusion.bake-clear",
|
|
1612
|
+
"group": "occlusion",
|
|
1613
|
+
"command": "bake-clear",
|
|
1614
|
+
"handler_type": "bridge",
|
|
1615
|
+
"csharp_handler": "present",
|
|
1616
|
+
"destructive": true,
|
|
1617
|
+
"timeout": 30000
|
|
1618
|
+
},
|
|
1619
|
+
{
|
|
1620
|
+
"bridgeCommand": "occlusion.bake-status",
|
|
1621
|
+
"group": "occlusion",
|
|
1622
|
+
"command": "bake-status",
|
|
1623
|
+
"handler_type": "hybrid",
|
|
1624
|
+
"csharp_handler": "none",
|
|
1625
|
+
"destructive": false,
|
|
1626
|
+
"timeout": 30000
|
|
1627
|
+
},
|
|
1628
|
+
{
|
|
1629
|
+
"bridgeCommand": "package.bridge-remove",
|
|
1630
|
+
"group": "package",
|
|
1631
|
+
"command": "bridge-remove",
|
|
1632
|
+
"handler_type": "offline",
|
|
1633
|
+
"csharp_handler": "none",
|
|
1634
|
+
"destructive": true,
|
|
1635
|
+
"timeout": 30000
|
|
1636
|
+
},
|
|
1637
|
+
{
|
|
1638
|
+
"bridgeCommand": "package.deploy",
|
|
1639
|
+
"group": "package",
|
|
1640
|
+
"command": "deploy",
|
|
1641
|
+
"handler_type": "hybrid",
|
|
1642
|
+
"csharp_handler": "none",
|
|
1643
|
+
"destructive": true,
|
|
1644
|
+
"timeout": 120000
|
|
1645
|
+
},
|
|
1646
|
+
{
|
|
1647
|
+
"bridgeCommand": "package.embed",
|
|
1648
|
+
"group": "package",
|
|
1649
|
+
"command": "embed",
|
|
1650
|
+
"handler_type": "hybrid",
|
|
1651
|
+
"csharp_handler": "none",
|
|
1652
|
+
"destructive": true,
|
|
1653
|
+
"timeout": 120000
|
|
1654
|
+
},
|
|
1655
|
+
{
|
|
1656
|
+
"bridgeCommand": "package.info",
|
|
1657
|
+
"group": "package",
|
|
1658
|
+
"command": "info",
|
|
1659
|
+
"handler_type": "offline",
|
|
1660
|
+
"csharp_handler": "none",
|
|
1661
|
+
"destructive": false,
|
|
1662
|
+
"timeout": 30000
|
|
1663
|
+
},
|
|
1664
|
+
{
|
|
1665
|
+
"bridgeCommand": "package.install",
|
|
1666
|
+
"group": "package",
|
|
1667
|
+
"command": "install",
|
|
1668
|
+
"handler_type": "hybrid",
|
|
1669
|
+
"csharp_handler": "none",
|
|
1670
|
+
"destructive": true,
|
|
1671
|
+
"timeout": 120000
|
|
1672
|
+
},
|
|
1673
|
+
{
|
|
1674
|
+
"bridgeCommand": "package.list",
|
|
1675
|
+
"group": "package",
|
|
1676
|
+
"command": "list",
|
|
1677
|
+
"handler_type": "offline",
|
|
1678
|
+
"csharp_handler": "none",
|
|
1679
|
+
"destructive": false,
|
|
1680
|
+
"timeout": 30000
|
|
1681
|
+
},
|
|
1682
|
+
{
|
|
1683
|
+
"bridgeCommand": "package.registry.clear",
|
|
1684
|
+
"group": "package",
|
|
1685
|
+
"command": "registry.clear",
|
|
1686
|
+
"handler_type": "offline",
|
|
1687
|
+
"csharp_handler": "none",
|
|
1688
|
+
"destructive": true,
|
|
1689
|
+
"timeout": 30000
|
|
1690
|
+
},
|
|
1691
|
+
{
|
|
1692
|
+
"bridgeCommand": "package.registry.get",
|
|
1693
|
+
"group": "package",
|
|
1694
|
+
"command": "registry.get",
|
|
1695
|
+
"handler_type": "offline",
|
|
1696
|
+
"csharp_handler": "none",
|
|
1697
|
+
"destructive": false,
|
|
1698
|
+
"timeout": 30000
|
|
1699
|
+
},
|
|
1700
|
+
{
|
|
1701
|
+
"bridgeCommand": "package.registry.set",
|
|
1702
|
+
"group": "package",
|
|
1703
|
+
"command": "registry.set",
|
|
1704
|
+
"handler_type": "offline",
|
|
1705
|
+
"csharp_handler": "none",
|
|
1706
|
+
"destructive": true,
|
|
1707
|
+
"timeout": 30000
|
|
1708
|
+
},
|
|
1709
|
+
{
|
|
1710
|
+
"bridgeCommand": "package.remove",
|
|
1711
|
+
"group": "package",
|
|
1712
|
+
"command": "remove",
|
|
1713
|
+
"handler_type": "hybrid",
|
|
1714
|
+
"csharp_handler": "none",
|
|
1715
|
+
"destructive": true,
|
|
1716
|
+
"timeout": 120000
|
|
1717
|
+
},
|
|
1718
|
+
{
|
|
1719
|
+
"bridgeCommand": "package.resolve",
|
|
1720
|
+
"group": "package",
|
|
1721
|
+
"command": "resolve",
|
|
1722
|
+
"handler_type": "hybrid",
|
|
1723
|
+
"csharp_handler": "none",
|
|
1724
|
+
"destructive": true,
|
|
1725
|
+
"timeout": 120000
|
|
1726
|
+
},
|
|
1727
|
+
{
|
|
1728
|
+
"bridgeCommand": "package.restore",
|
|
1729
|
+
"group": "package",
|
|
1730
|
+
"command": "restore",
|
|
1731
|
+
"handler_type": "hybrid",
|
|
1732
|
+
"csharp_handler": "none",
|
|
1733
|
+
"destructive": true,
|
|
1734
|
+
"timeout": 120000
|
|
1735
|
+
},
|
|
1736
|
+
{
|
|
1737
|
+
"bridgeCommand": "package.scoped-registry.add",
|
|
1738
|
+
"group": "package",
|
|
1739
|
+
"command": "scoped-registry.add",
|
|
1740
|
+
"handler_type": "offline",
|
|
1741
|
+
"csharp_handler": "none",
|
|
1742
|
+
"destructive": true,
|
|
1743
|
+
"timeout": 30000
|
|
1744
|
+
},
|
|
1745
|
+
{
|
|
1746
|
+
"bridgeCommand": "package.scoped-registry.list",
|
|
1747
|
+
"group": "package",
|
|
1748
|
+
"command": "scoped-registry.list",
|
|
1749
|
+
"handler_type": "offline",
|
|
1750
|
+
"csharp_handler": "none",
|
|
1751
|
+
"destructive": false,
|
|
1752
|
+
"timeout": 30000
|
|
1753
|
+
},
|
|
1754
|
+
{
|
|
1755
|
+
"bridgeCommand": "package.scoped-registry.remove",
|
|
1756
|
+
"group": "package",
|
|
1757
|
+
"command": "scoped-registry.remove",
|
|
1758
|
+
"handler_type": "offline",
|
|
1759
|
+
"csharp_handler": "none",
|
|
1760
|
+
"destructive": true,
|
|
1761
|
+
"timeout": 30000
|
|
1762
|
+
},
|
|
1763
|
+
{
|
|
1764
|
+
"bridgeCommand": "package.search",
|
|
1765
|
+
"group": "package",
|
|
1766
|
+
"command": "search",
|
|
1767
|
+
"handler_type": "offline",
|
|
1768
|
+
"csharp_handler": "none",
|
|
1769
|
+
"destructive": false,
|
|
1770
|
+
"timeout": 30000
|
|
1771
|
+
},
|
|
1772
|
+
{
|
|
1773
|
+
"bridgeCommand": "package.status",
|
|
1774
|
+
"group": "package",
|
|
1775
|
+
"command": "status",
|
|
1776
|
+
"handler_type": "offline",
|
|
1777
|
+
"csharp_handler": "none",
|
|
1778
|
+
"destructive": false,
|
|
1779
|
+
"timeout": 30000
|
|
1780
|
+
},
|
|
1781
|
+
{
|
|
1782
|
+
"bridgeCommand": "physics.assign-material",
|
|
1783
|
+
"group": "physics",
|
|
1784
|
+
"command": "assign-material",
|
|
1785
|
+
"handler_type": "bridge",
|
|
1786
|
+
"csharp_handler": "present",
|
|
1787
|
+
"destructive": false,
|
|
1788
|
+
"timeout": 30000
|
|
1789
|
+
},
|
|
1790
|
+
{
|
|
1791
|
+
"bridgeCommand": "physics.collision-matrix",
|
|
1792
|
+
"group": "physics",
|
|
1793
|
+
"command": "collision-matrix",
|
|
1794
|
+
"handler_type": "bridge",
|
|
1795
|
+
"csharp_handler": "present",
|
|
1796
|
+
"destructive": true,
|
|
1797
|
+
"timeout": 30000
|
|
1798
|
+
},
|
|
1799
|
+
{
|
|
1800
|
+
"bridgeCommand": "physics.force",
|
|
1801
|
+
"group": "physics",
|
|
1802
|
+
"command": "force",
|
|
1803
|
+
"handler_type": "bridge",
|
|
1804
|
+
"csharp_handler": "present",
|
|
1805
|
+
"destructive": false,
|
|
1806
|
+
"timeout": 30000
|
|
1807
|
+
},
|
|
1808
|
+
{
|
|
1809
|
+
"bridgeCommand": "physics.joint.add",
|
|
1810
|
+
"group": "physics",
|
|
1811
|
+
"command": "joint.add",
|
|
1812
|
+
"handler_type": "bridge",
|
|
1813
|
+
"csharp_handler": "present",
|
|
1814
|
+
"destructive": false,
|
|
1815
|
+
"timeout": 30000
|
|
1816
|
+
},
|
|
1817
|
+
{
|
|
1818
|
+
"bridgeCommand": "physics.joint.remove",
|
|
1819
|
+
"group": "physics",
|
|
1820
|
+
"command": "joint.remove",
|
|
1821
|
+
"handler_type": "bridge",
|
|
1822
|
+
"csharp_handler": "present",
|
|
1823
|
+
"destructive": false,
|
|
1824
|
+
"timeout": 30000
|
|
1825
|
+
},
|
|
1826
|
+
{
|
|
1827
|
+
"bridgeCommand": "physics.linecast",
|
|
1828
|
+
"group": "physics",
|
|
1829
|
+
"command": "linecast",
|
|
1830
|
+
"handler_type": "bridge",
|
|
1831
|
+
"csharp_handler": "present",
|
|
1832
|
+
"destructive": false,
|
|
1833
|
+
"timeout": 30000
|
|
1834
|
+
},
|
|
1835
|
+
{
|
|
1836
|
+
"bridgeCommand": "physics.material",
|
|
1837
|
+
"group": "physics",
|
|
1838
|
+
"command": "material",
|
|
1839
|
+
"handler_type": "bridge",
|
|
1840
|
+
"csharp_handler": "present",
|
|
1841
|
+
"destructive": true,
|
|
1842
|
+
"timeout": 30000
|
|
1843
|
+
},
|
|
1844
|
+
{
|
|
1845
|
+
"bridgeCommand": "physics.overlap",
|
|
1846
|
+
"group": "physics",
|
|
1847
|
+
"command": "overlap",
|
|
1848
|
+
"handler_type": "bridge",
|
|
1849
|
+
"csharp_handler": "present",
|
|
1850
|
+
"destructive": false,
|
|
1851
|
+
"timeout": 30000
|
|
1852
|
+
},
|
|
1853
|
+
{
|
|
1854
|
+
"bridgeCommand": "physics.raycast",
|
|
1855
|
+
"group": "physics",
|
|
1856
|
+
"command": "raycast",
|
|
1857
|
+
"handler_type": "bridge",
|
|
1858
|
+
"csharp_handler": "present",
|
|
1859
|
+
"destructive": false,
|
|
1860
|
+
"timeout": 30000
|
|
1861
|
+
},
|
|
1862
|
+
{
|
|
1863
|
+
"bridgeCommand": "physics.raycast-all",
|
|
1864
|
+
"group": "physics",
|
|
1865
|
+
"command": "raycast-all",
|
|
1866
|
+
"handler_type": "bridge",
|
|
1867
|
+
"csharp_handler": "present",
|
|
1868
|
+
"destructive": false,
|
|
1869
|
+
"timeout": 30000
|
|
1870
|
+
},
|
|
1871
|
+
{
|
|
1872
|
+
"bridgeCommand": "physics.rigidbody",
|
|
1873
|
+
"group": "physics",
|
|
1874
|
+
"command": "rigidbody",
|
|
1875
|
+
"handler_type": "bridge",
|
|
1876
|
+
"csharp_handler": "present",
|
|
1877
|
+
"destructive": false,
|
|
1878
|
+
"timeout": 30000
|
|
1879
|
+
},
|
|
1880
|
+
{
|
|
1881
|
+
"bridgeCommand": "physics.settings",
|
|
1882
|
+
"group": "physics",
|
|
1883
|
+
"command": "settings",
|
|
1884
|
+
"handler_type": "bridge",
|
|
1885
|
+
"csharp_handler": "present",
|
|
1886
|
+
"destructive": true,
|
|
1887
|
+
"timeout": 30000
|
|
1888
|
+
},
|
|
1889
|
+
{
|
|
1890
|
+
"bridgeCommand": "physics.shapecast",
|
|
1891
|
+
"group": "physics",
|
|
1892
|
+
"command": "shapecast",
|
|
1893
|
+
"handler_type": "bridge",
|
|
1894
|
+
"csharp_handler": "present",
|
|
1895
|
+
"destructive": false,
|
|
1896
|
+
"timeout": 30000
|
|
1897
|
+
},
|
|
1898
|
+
{
|
|
1899
|
+
"bridgeCommand": "physics.simulation",
|
|
1900
|
+
"group": "physics",
|
|
1901
|
+
"command": "simulation",
|
|
1902
|
+
"handler_type": "bridge",
|
|
1903
|
+
"csharp_handler": "present",
|
|
1904
|
+
"destructive": false,
|
|
1905
|
+
"timeout": 30000
|
|
1906
|
+
},
|
|
1907
|
+
{
|
|
1908
|
+
"bridgeCommand": "physics.validate",
|
|
1909
|
+
"group": "physics",
|
|
1910
|
+
"command": "validate",
|
|
1911
|
+
"handler_type": "bridge",
|
|
1912
|
+
"csharp_handler": "present",
|
|
1913
|
+
"destructive": false,
|
|
1914
|
+
"timeout": 30000
|
|
1915
|
+
},
|
|
1916
|
+
{
|
|
1917
|
+
"bridgeCommand": "prefab.create",
|
|
1918
|
+
"group": "prefab",
|
|
1919
|
+
"command": "create",
|
|
1920
|
+
"handler_type": "bridge",
|
|
1921
|
+
"csharp_handler": "present",
|
|
1922
|
+
"destructive": true,
|
|
1923
|
+
"timeout": 30000
|
|
1924
|
+
},
|
|
1925
|
+
{
|
|
1926
|
+
"bridgeCommand": "prefab.hierarchy",
|
|
1927
|
+
"group": "prefab",
|
|
1928
|
+
"command": "hierarchy",
|
|
1929
|
+
"handler_type": "bridge",
|
|
1930
|
+
"csharp_handler": "present",
|
|
1931
|
+
"destructive": false,
|
|
1932
|
+
"timeout": 30000
|
|
1933
|
+
},
|
|
1934
|
+
{
|
|
1935
|
+
"bridgeCommand": "prefab.info",
|
|
1936
|
+
"group": "prefab",
|
|
1937
|
+
"command": "info",
|
|
1938
|
+
"handler_type": "bridge",
|
|
1939
|
+
"csharp_handler": "present",
|
|
1940
|
+
"destructive": false,
|
|
1941
|
+
"timeout": 30000
|
|
1942
|
+
},
|
|
1943
|
+
{
|
|
1944
|
+
"bridgeCommand": "prefab.instantiate",
|
|
1945
|
+
"group": "prefab",
|
|
1946
|
+
"command": "instantiate",
|
|
1947
|
+
"handler_type": "bridge",
|
|
1948
|
+
"csharp_handler": "present",
|
|
1949
|
+
"destructive": false,
|
|
1950
|
+
"timeout": 30000
|
|
1951
|
+
},
|
|
1952
|
+
{
|
|
1953
|
+
"bridgeCommand": "prefab.modify",
|
|
1954
|
+
"group": "prefab",
|
|
1955
|
+
"command": "modify",
|
|
1956
|
+
"handler_type": "bridge",
|
|
1957
|
+
"csharp_handler": "present",
|
|
1958
|
+
"destructive": true,
|
|
1959
|
+
"timeout": 30000
|
|
1960
|
+
},
|
|
1961
|
+
{
|
|
1962
|
+
"bridgeCommand": "prefab.overrides.apply",
|
|
1963
|
+
"group": "prefab",
|
|
1964
|
+
"command": "overrides.apply",
|
|
1965
|
+
"handler_type": "bridge",
|
|
1966
|
+
"csharp_handler": "present",
|
|
1967
|
+
"destructive": true,
|
|
1968
|
+
"timeout": 30000
|
|
1969
|
+
},
|
|
1970
|
+
{
|
|
1971
|
+
"bridgeCommand": "prefab.overrides.revert",
|
|
1972
|
+
"group": "prefab",
|
|
1973
|
+
"command": "overrides.revert",
|
|
1974
|
+
"handler_type": "bridge",
|
|
1975
|
+
"csharp_handler": "present",
|
|
1976
|
+
"destructive": true,
|
|
1977
|
+
"timeout": 30000
|
|
1978
|
+
},
|
|
1979
|
+
{
|
|
1980
|
+
"bridgeCommand": "prefab.stage",
|
|
1981
|
+
"group": "prefab",
|
|
1982
|
+
"command": "stage",
|
|
1983
|
+
"handler_type": "bridge",
|
|
1984
|
+
"csharp_handler": "present",
|
|
1985
|
+
"destructive": false,
|
|
1986
|
+
"timeout": 30000
|
|
1987
|
+
},
|
|
1988
|
+
{
|
|
1989
|
+
"bridgeCommand": "prefab.stage-close",
|
|
1990
|
+
"group": "prefab",
|
|
1991
|
+
"command": "stage-close",
|
|
1992
|
+
"handler_type": "bridge",
|
|
1993
|
+
"csharp_handler": "present",
|
|
1994
|
+
"destructive": false,
|
|
1995
|
+
"timeout": 30000
|
|
1996
|
+
},
|
|
1997
|
+
{
|
|
1998
|
+
"bridgeCommand": "prefab.stage-open",
|
|
1999
|
+
"group": "prefab",
|
|
2000
|
+
"command": "stage-open",
|
|
2001
|
+
"handler_type": "bridge",
|
|
2002
|
+
"csharp_handler": "present",
|
|
2003
|
+
"destructive": false,
|
|
2004
|
+
"timeout": 30000
|
|
2005
|
+
},
|
|
2006
|
+
{
|
|
2007
|
+
"bridgeCommand": "prefab.stage-save",
|
|
2008
|
+
"group": "prefab",
|
|
2009
|
+
"command": "stage-save",
|
|
2010
|
+
"handler_type": "bridge",
|
|
2011
|
+
"csharp_handler": "present",
|
|
2012
|
+
"destructive": true,
|
|
2013
|
+
"timeout": 30000
|
|
2014
|
+
},
|
|
2015
|
+
{
|
|
2016
|
+
"bridgeCommand": "prefab.unpack",
|
|
2017
|
+
"group": "prefab",
|
|
2018
|
+
"command": "unpack",
|
|
2019
|
+
"handler_type": "bridge",
|
|
2020
|
+
"csharp_handler": "present",
|
|
2021
|
+
"destructive": false,
|
|
2022
|
+
"timeout": 30000
|
|
2023
|
+
},
|
|
2024
|
+
{
|
|
2025
|
+
"bridgeCommand": "prefab.variant.create",
|
|
2026
|
+
"group": "prefab",
|
|
2027
|
+
"command": "variant.create",
|
|
2028
|
+
"handler_type": "bridge",
|
|
2029
|
+
"csharp_handler": "present",
|
|
2030
|
+
"destructive": true,
|
|
2031
|
+
"timeout": 30000
|
|
2032
|
+
},
|
|
2033
|
+
{
|
|
2034
|
+
"bridgeCommand": "probuilder.append-vertices-to-edge",
|
|
2035
|
+
"group": "probuilder",
|
|
2036
|
+
"command": "append-vertices-to-edge",
|
|
2037
|
+
"handler_type": "bridge",
|
|
2038
|
+
"csharp_handler": "present",
|
|
2039
|
+
"destructive": false,
|
|
2040
|
+
"timeout": 30000
|
|
2041
|
+
},
|
|
2042
|
+
{
|
|
2043
|
+
"bridgeCommand": "probuilder.auto-smooth",
|
|
2044
|
+
"group": "probuilder",
|
|
2045
|
+
"command": "auto-smooth",
|
|
2046
|
+
"handler_type": "bridge",
|
|
2047
|
+
"csharp_handler": "present",
|
|
2048
|
+
"destructive": false,
|
|
2049
|
+
"timeout": 30000
|
|
2050
|
+
},
|
|
2051
|
+
{
|
|
2052
|
+
"bridgeCommand": "probuilder.bevel-edges",
|
|
2053
|
+
"group": "probuilder",
|
|
2054
|
+
"command": "bevel-edges",
|
|
2055
|
+
"handler_type": "bridge",
|
|
2056
|
+
"csharp_handler": "present",
|
|
2057
|
+
"destructive": false,
|
|
2058
|
+
"timeout": 30000
|
|
2059
|
+
},
|
|
2060
|
+
{
|
|
2061
|
+
"bridgeCommand": "probuilder.bridge-edges",
|
|
2062
|
+
"group": "probuilder",
|
|
2063
|
+
"command": "bridge-edges",
|
|
2064
|
+
"handler_type": "bridge",
|
|
2065
|
+
"csharp_handler": "present",
|
|
2066
|
+
"destructive": false,
|
|
2067
|
+
"timeout": 30000
|
|
2068
|
+
},
|
|
2069
|
+
{
|
|
2070
|
+
"bridgeCommand": "probuilder.center-pivot",
|
|
2071
|
+
"group": "probuilder",
|
|
2072
|
+
"command": "center-pivot",
|
|
2073
|
+
"handler_type": "bridge",
|
|
2074
|
+
"csharp_handler": "present",
|
|
2075
|
+
"destructive": false,
|
|
2076
|
+
"timeout": 30000
|
|
2077
|
+
},
|
|
2078
|
+
{
|
|
2079
|
+
"bridgeCommand": "probuilder.combine-meshes",
|
|
2080
|
+
"group": "probuilder",
|
|
2081
|
+
"command": "combine-meshes",
|
|
2082
|
+
"handler_type": "bridge",
|
|
2083
|
+
"csharp_handler": "present",
|
|
2084
|
+
"destructive": false,
|
|
2085
|
+
"timeout": 30000
|
|
2086
|
+
},
|
|
2087
|
+
{
|
|
2088
|
+
"bridgeCommand": "probuilder.connect-elements",
|
|
2089
|
+
"group": "probuilder",
|
|
2090
|
+
"command": "connect-elements",
|
|
2091
|
+
"handler_type": "bridge",
|
|
2092
|
+
"csharp_handler": "present",
|
|
2093
|
+
"destructive": false,
|
|
2094
|
+
"timeout": 30000
|
|
2095
|
+
},
|
|
2096
|
+
{
|
|
2097
|
+
"bridgeCommand": "probuilder.convert-to-probuilder",
|
|
2098
|
+
"group": "probuilder",
|
|
2099
|
+
"command": "convert-to-probuilder",
|
|
2100
|
+
"handler_type": "bridge",
|
|
2101
|
+
"csharp_handler": "present",
|
|
2102
|
+
"destructive": false,
|
|
2103
|
+
"timeout": 30000
|
|
2104
|
+
},
|
|
2105
|
+
{
|
|
2106
|
+
"bridgeCommand": "probuilder.create-poly-shape",
|
|
2107
|
+
"group": "probuilder",
|
|
2108
|
+
"command": "create-poly-shape",
|
|
2109
|
+
"handler_type": "bridge",
|
|
2110
|
+
"csharp_handler": "present",
|
|
2111
|
+
"destructive": false,
|
|
2112
|
+
"timeout": 30000
|
|
2113
|
+
},
|
|
2114
|
+
{
|
|
2115
|
+
"bridgeCommand": "probuilder.create-polygon",
|
|
2116
|
+
"group": "probuilder",
|
|
2117
|
+
"command": "create-polygon",
|
|
2118
|
+
"handler_type": "bridge",
|
|
2119
|
+
"csharp_handler": "present",
|
|
2120
|
+
"destructive": false,
|
|
2121
|
+
"timeout": 30000
|
|
2122
|
+
},
|
|
2123
|
+
{
|
|
2124
|
+
"bridgeCommand": "probuilder.create-shape",
|
|
2125
|
+
"group": "probuilder",
|
|
2126
|
+
"command": "create-shape",
|
|
2127
|
+
"handler_type": "bridge",
|
|
2128
|
+
"csharp_handler": "present",
|
|
2129
|
+
"destructive": false,
|
|
2130
|
+
"timeout": 30000
|
|
2131
|
+
},
|
|
2132
|
+
{
|
|
2133
|
+
"bridgeCommand": "probuilder.delete-faces",
|
|
2134
|
+
"group": "probuilder",
|
|
2135
|
+
"command": "delete-faces",
|
|
2136
|
+
"handler_type": "bridge",
|
|
2137
|
+
"csharp_handler": "present",
|
|
2138
|
+
"destructive": false,
|
|
2139
|
+
"timeout": 30000
|
|
2140
|
+
},
|
|
2141
|
+
{
|
|
2142
|
+
"bridgeCommand": "probuilder.detach-faces",
|
|
2143
|
+
"group": "probuilder",
|
|
2144
|
+
"command": "detach-faces",
|
|
2145
|
+
"handler_type": "bridge",
|
|
2146
|
+
"csharp_handler": "present",
|
|
2147
|
+
"destructive": false,
|
|
2148
|
+
"timeout": 30000
|
|
2149
|
+
},
|
|
2150
|
+
{
|
|
2151
|
+
"bridgeCommand": "probuilder.duplicate-and-flip",
|
|
2152
|
+
"group": "probuilder",
|
|
2153
|
+
"command": "duplicate-and-flip",
|
|
2154
|
+
"handler_type": "bridge",
|
|
2155
|
+
"csharp_handler": "present",
|
|
2156
|
+
"destructive": false,
|
|
2157
|
+
"timeout": 30000
|
|
2158
|
+
},
|
|
2159
|
+
{
|
|
2160
|
+
"bridgeCommand": "probuilder.extrude-edges",
|
|
2161
|
+
"group": "probuilder",
|
|
2162
|
+
"command": "extrude-edges",
|
|
2163
|
+
"handler_type": "bridge",
|
|
2164
|
+
"csharp_handler": "present",
|
|
2165
|
+
"destructive": false,
|
|
2166
|
+
"timeout": 30000
|
|
2167
|
+
},
|
|
2168
|
+
{
|
|
2169
|
+
"bridgeCommand": "probuilder.extrude-faces",
|
|
2170
|
+
"group": "probuilder",
|
|
2171
|
+
"command": "extrude-faces",
|
|
2172
|
+
"handler_type": "bridge",
|
|
2173
|
+
"csharp_handler": "present",
|
|
2174
|
+
"destructive": false,
|
|
2175
|
+
"timeout": 30000
|
|
2176
|
+
},
|
|
2177
|
+
{
|
|
2178
|
+
"bridgeCommand": "probuilder.flip-normals",
|
|
2179
|
+
"group": "probuilder",
|
|
2180
|
+
"command": "flip-normals",
|
|
2181
|
+
"handler_type": "bridge",
|
|
2182
|
+
"csharp_handler": "present",
|
|
2183
|
+
"destructive": false,
|
|
2184
|
+
"timeout": 30000
|
|
2185
|
+
},
|
|
2186
|
+
{
|
|
2187
|
+
"bridgeCommand": "probuilder.freeze-transform",
|
|
2188
|
+
"group": "probuilder",
|
|
2189
|
+
"command": "freeze-transform",
|
|
2190
|
+
"handler_type": "bridge",
|
|
2191
|
+
"csharp_handler": "present",
|
|
2192
|
+
"destructive": false,
|
|
2193
|
+
"timeout": 30000
|
|
2194
|
+
},
|
|
2195
|
+
{
|
|
2196
|
+
"bridgeCommand": "probuilder.insert-vertex",
|
|
2197
|
+
"group": "probuilder",
|
|
2198
|
+
"command": "insert-vertex",
|
|
2199
|
+
"handler_type": "bridge",
|
|
2200
|
+
"csharp_handler": "present",
|
|
2201
|
+
"destructive": false,
|
|
2202
|
+
"timeout": 30000
|
|
2203
|
+
},
|
|
2204
|
+
{
|
|
2205
|
+
"bridgeCommand": "probuilder.merge-faces",
|
|
2206
|
+
"group": "probuilder",
|
|
2207
|
+
"command": "merge-faces",
|
|
2208
|
+
"handler_type": "bridge",
|
|
2209
|
+
"csharp_handler": "present",
|
|
2210
|
+
"destructive": false,
|
|
2211
|
+
"timeout": 30000
|
|
2212
|
+
},
|
|
2213
|
+
{
|
|
2214
|
+
"bridgeCommand": "probuilder.merge-objects",
|
|
2215
|
+
"group": "probuilder",
|
|
2216
|
+
"command": "merge-objects",
|
|
2217
|
+
"handler_type": "bridge",
|
|
2218
|
+
"csharp_handler": "present",
|
|
2219
|
+
"destructive": false,
|
|
2220
|
+
"timeout": 30000
|
|
2221
|
+
},
|
|
2222
|
+
{
|
|
2223
|
+
"bridgeCommand": "probuilder.merge-vertices",
|
|
2224
|
+
"group": "probuilder",
|
|
2225
|
+
"command": "merge-vertices",
|
|
2226
|
+
"handler_type": "bridge",
|
|
2227
|
+
"csharp_handler": "present",
|
|
2228
|
+
"destructive": false,
|
|
2229
|
+
"timeout": 30000
|
|
2230
|
+
},
|
|
2231
|
+
{
|
|
2232
|
+
"bridgeCommand": "probuilder.mesh-info",
|
|
2233
|
+
"group": "probuilder",
|
|
2234
|
+
"command": "mesh-info",
|
|
2235
|
+
"handler_type": "bridge",
|
|
2236
|
+
"csharp_handler": "present",
|
|
2237
|
+
"destructive": false,
|
|
2238
|
+
"timeout": 30000
|
|
2239
|
+
},
|
|
2240
|
+
{
|
|
2241
|
+
"bridgeCommand": "probuilder.move-vertices",
|
|
2242
|
+
"group": "probuilder",
|
|
2243
|
+
"command": "move-vertices",
|
|
2244
|
+
"handler_type": "bridge",
|
|
2245
|
+
"csharp_handler": "present",
|
|
2246
|
+
"destructive": false,
|
|
2247
|
+
"timeout": 30000
|
|
2248
|
+
},
|
|
2249
|
+
{
|
|
2250
|
+
"bridgeCommand": "probuilder.ping",
|
|
2251
|
+
"group": "probuilder",
|
|
2252
|
+
"command": "ping",
|
|
2253
|
+
"handler_type": "bridge",
|
|
2254
|
+
"csharp_handler": "present",
|
|
2255
|
+
"destructive": false,
|
|
2256
|
+
"timeout": 30000
|
|
2257
|
+
},
|
|
2258
|
+
{
|
|
2259
|
+
"bridgeCommand": "probuilder.repair-mesh",
|
|
2260
|
+
"group": "probuilder",
|
|
2261
|
+
"command": "repair-mesh",
|
|
2262
|
+
"handler_type": "bridge",
|
|
2263
|
+
"csharp_handler": "present",
|
|
2264
|
+
"destructive": false,
|
|
2265
|
+
"timeout": 30000
|
|
2266
|
+
},
|
|
2267
|
+
{
|
|
2268
|
+
"bridgeCommand": "probuilder.scene",
|
|
2269
|
+
"group": "probuilder",
|
|
2270
|
+
"command": "scene",
|
|
2271
|
+
"handler_type": "bridge",
|
|
2272
|
+
"csharp_handler": "present",
|
|
2273
|
+
"destructive": false,
|
|
2274
|
+
"timeout": 30000,
|
|
2275
|
+
"requires_packages": [
|
|
2276
|
+
"com.unity.probuilder"
|
|
2277
|
+
]
|
|
2278
|
+
},
|
|
2279
|
+
{
|
|
2280
|
+
"bridgeCommand": "probuilder.select-faces",
|
|
2281
|
+
"group": "probuilder",
|
|
2282
|
+
"command": "select-faces",
|
|
2283
|
+
"handler_type": "bridge",
|
|
2284
|
+
"csharp_handler": "present",
|
|
2285
|
+
"destructive": false,
|
|
2286
|
+
"timeout": 30000
|
|
2287
|
+
},
|
|
2288
|
+
{
|
|
2289
|
+
"bridgeCommand": "probuilder.set-face-color",
|
|
2290
|
+
"group": "probuilder",
|
|
2291
|
+
"command": "set-face-color",
|
|
2292
|
+
"handler_type": "bridge",
|
|
2293
|
+
"csharp_handler": "present",
|
|
2294
|
+
"destructive": false,
|
|
2295
|
+
"timeout": 30000
|
|
2296
|
+
},
|
|
2297
|
+
{
|
|
2298
|
+
"bridgeCommand": "probuilder.set-face-material",
|
|
2299
|
+
"group": "probuilder",
|
|
2300
|
+
"command": "set-face-material",
|
|
2301
|
+
"handler_type": "bridge",
|
|
2302
|
+
"csharp_handler": "present",
|
|
2303
|
+
"destructive": false,
|
|
2304
|
+
"timeout": 30000
|
|
2305
|
+
},
|
|
2306
|
+
{
|
|
2307
|
+
"bridgeCommand": "probuilder.set-face-uvs",
|
|
2308
|
+
"group": "probuilder",
|
|
2309
|
+
"command": "set-face-uvs",
|
|
2310
|
+
"handler_type": "bridge",
|
|
2311
|
+
"csharp_handler": "present",
|
|
2312
|
+
"destructive": false,
|
|
2313
|
+
"timeout": 30000
|
|
2314
|
+
},
|
|
2315
|
+
{
|
|
2316
|
+
"bridgeCommand": "probuilder.set-pivot",
|
|
2317
|
+
"group": "probuilder",
|
|
2318
|
+
"command": "set-pivot",
|
|
2319
|
+
"handler_type": "bridge",
|
|
2320
|
+
"csharp_handler": "present",
|
|
2321
|
+
"destructive": false,
|
|
2322
|
+
"timeout": 30000
|
|
2323
|
+
},
|
|
2324
|
+
{
|
|
2325
|
+
"bridgeCommand": "probuilder.set-smoothing",
|
|
2326
|
+
"group": "probuilder",
|
|
2327
|
+
"command": "set-smoothing",
|
|
2328
|
+
"handler_type": "bridge",
|
|
2329
|
+
"csharp_handler": "present",
|
|
2330
|
+
"destructive": false,
|
|
2331
|
+
"timeout": 30000
|
|
2332
|
+
},
|
|
2333
|
+
{
|
|
2334
|
+
"bridgeCommand": "probuilder.split-vertices",
|
|
2335
|
+
"group": "probuilder",
|
|
2336
|
+
"command": "split-vertices",
|
|
2337
|
+
"handler_type": "bridge",
|
|
2338
|
+
"csharp_handler": "present",
|
|
2339
|
+
"destructive": false,
|
|
2340
|
+
"timeout": 30000
|
|
2341
|
+
},
|
|
2342
|
+
{
|
|
2343
|
+
"bridgeCommand": "probuilder.subdivide",
|
|
2344
|
+
"group": "probuilder",
|
|
2345
|
+
"command": "subdivide",
|
|
2346
|
+
"handler_type": "bridge",
|
|
2347
|
+
"csharp_handler": "present",
|
|
2348
|
+
"destructive": false,
|
|
2349
|
+
"timeout": 30000
|
|
2350
|
+
},
|
|
2351
|
+
{
|
|
2352
|
+
"bridgeCommand": "probuilder.validate-mesh",
|
|
2353
|
+
"group": "probuilder",
|
|
2354
|
+
"command": "validate-mesh",
|
|
2355
|
+
"handler_type": "bridge",
|
|
2356
|
+
"csharp_handler": "present",
|
|
2357
|
+
"destructive": false,
|
|
2358
|
+
"timeout": 30000
|
|
2359
|
+
},
|
|
2360
|
+
{
|
|
2361
|
+
"bridgeCommand": "probuilder.weld-vertices",
|
|
2362
|
+
"group": "probuilder",
|
|
2363
|
+
"command": "weld-vertices",
|
|
2364
|
+
"handler_type": "bridge",
|
|
2365
|
+
"csharp_handler": "present",
|
|
2366
|
+
"destructive": false,
|
|
2367
|
+
"timeout": 30000
|
|
2368
|
+
},
|
|
2369
|
+
{
|
|
2370
|
+
"bridgeCommand": "profiler.areas",
|
|
2371
|
+
"group": "profiler",
|
|
2372
|
+
"command": "areas",
|
|
2373
|
+
"handler_type": "bridge",
|
|
2374
|
+
"csharp_handler": "present",
|
|
2375
|
+
"destructive": false,
|
|
2376
|
+
"timeout": 30000
|
|
2377
|
+
},
|
|
2378
|
+
{
|
|
2379
|
+
"bridgeCommand": "profiler.capture",
|
|
2380
|
+
"group": "profiler",
|
|
2381
|
+
"command": "capture",
|
|
2382
|
+
"handler_type": "bridge",
|
|
2383
|
+
"csharp_handler": "present",
|
|
2384
|
+
"destructive": true,
|
|
2385
|
+
"timeout": 30000
|
|
2386
|
+
},
|
|
2387
|
+
{
|
|
2388
|
+
"bridgeCommand": "profiler.clear",
|
|
2389
|
+
"group": "profiler",
|
|
2390
|
+
"command": "clear",
|
|
2391
|
+
"handler_type": "bridge",
|
|
2392
|
+
"csharp_handler": "present",
|
|
2393
|
+
"destructive": false,
|
|
2394
|
+
"timeout": 30000
|
|
2395
|
+
},
|
|
2396
|
+
{
|
|
2397
|
+
"bridgeCommand": "profiler.counter",
|
|
2398
|
+
"group": "profiler",
|
|
2399
|
+
"command": "counter",
|
|
2400
|
+
"handler_type": "bridge",
|
|
2401
|
+
"csharp_handler": "present",
|
|
2402
|
+
"destructive": false,
|
|
2403
|
+
"timeout": 30000
|
|
2404
|
+
},
|
|
2405
|
+
{
|
|
2406
|
+
"bridgeCommand": "profiler.deep",
|
|
2407
|
+
"group": "profiler",
|
|
2408
|
+
"command": "deep",
|
|
2409
|
+
"handler_type": "bridge",
|
|
2410
|
+
"csharp_handler": "present",
|
|
2411
|
+
"destructive": false,
|
|
2412
|
+
"timeout": 30000
|
|
2413
|
+
},
|
|
2414
|
+
{
|
|
2415
|
+
"bridgeCommand": "profiler.export",
|
|
2416
|
+
"group": "profiler",
|
|
2417
|
+
"command": "export",
|
|
2418
|
+
"handler_type": "bridge",
|
|
2419
|
+
"csharp_handler": "present",
|
|
2420
|
+
"destructive": true,
|
|
2421
|
+
"timeout": 30000
|
|
2422
|
+
},
|
|
2423
|
+
{
|
|
2424
|
+
"bridgeCommand": "profiler.frame",
|
|
2425
|
+
"group": "profiler",
|
|
2426
|
+
"command": "frame",
|
|
2427
|
+
"handler_type": "bridge",
|
|
2428
|
+
"csharp_handler": "present",
|
|
2429
|
+
"destructive": false,
|
|
2430
|
+
"timeout": 30000
|
|
2431
|
+
},
|
|
2432
|
+
{
|
|
2433
|
+
"bridgeCommand": "profiler.frame-debugger.disable",
|
|
2434
|
+
"group": "profiler",
|
|
2435
|
+
"command": "frame-debugger.disable",
|
|
2436
|
+
"handler_type": "bridge",
|
|
2437
|
+
"csharp_handler": "present",
|
|
2438
|
+
"destructive": false,
|
|
2439
|
+
"timeout": 30000
|
|
2440
|
+
},
|
|
2441
|
+
{
|
|
2442
|
+
"bridgeCommand": "profiler.frame-debugger.enable",
|
|
2443
|
+
"group": "profiler",
|
|
2444
|
+
"command": "frame-debugger.enable",
|
|
2445
|
+
"handler_type": "bridge",
|
|
2446
|
+
"csharp_handler": "present",
|
|
2447
|
+
"destructive": false,
|
|
2448
|
+
"timeout": 30000
|
|
2449
|
+
},
|
|
2450
|
+
{
|
|
2451
|
+
"bridgeCommand": "profiler.frame-debugger.events",
|
|
2452
|
+
"group": "profiler",
|
|
2453
|
+
"command": "frame-debugger.events",
|
|
2454
|
+
"handler_type": "bridge",
|
|
2455
|
+
"csharp_handler": "present",
|
|
2456
|
+
"destructive": false,
|
|
2457
|
+
"timeout": 30000
|
|
2458
|
+
},
|
|
2459
|
+
{
|
|
2460
|
+
"bridgeCommand": "profiler.hierarchy",
|
|
2461
|
+
"group": "profiler",
|
|
2462
|
+
"command": "hierarchy",
|
|
2463
|
+
"handler_type": "bridge",
|
|
2464
|
+
"csharp_handler": "present",
|
|
2465
|
+
"destructive": false,
|
|
2466
|
+
"timeout": 30000
|
|
2467
|
+
},
|
|
2468
|
+
{
|
|
2469
|
+
"bridgeCommand": "profiler.load",
|
|
2470
|
+
"group": "profiler",
|
|
2471
|
+
"command": "load",
|
|
2472
|
+
"handler_type": "bridge",
|
|
2473
|
+
"csharp_handler": "present",
|
|
2474
|
+
"destructive": false,
|
|
2475
|
+
"timeout": 30000
|
|
2476
|
+
},
|
|
2477
|
+
{
|
|
2478
|
+
"bridgeCommand": "profiler.memory",
|
|
2479
|
+
"group": "profiler",
|
|
2480
|
+
"command": "memory",
|
|
2481
|
+
"handler_type": "bridge",
|
|
2482
|
+
"csharp_handler": "present",
|
|
2483
|
+
"destructive": false,
|
|
2484
|
+
"timeout": 30000
|
|
2485
|
+
},
|
|
2486
|
+
{
|
|
2487
|
+
"bridgeCommand": "profiler.memory-snapshot.compare",
|
|
2488
|
+
"group": "profiler",
|
|
2489
|
+
"command": "memory-snapshot.compare",
|
|
2490
|
+
"handler_type": "bridge",
|
|
2491
|
+
"csharp_handler": "present",
|
|
2492
|
+
"destructive": false,
|
|
2493
|
+
"timeout": 30000
|
|
2494
|
+
},
|
|
2495
|
+
{
|
|
2496
|
+
"bridgeCommand": "profiler.memory-snapshot.list",
|
|
2497
|
+
"group": "profiler",
|
|
2498
|
+
"command": "memory-snapshot.list",
|
|
2499
|
+
"handler_type": "bridge",
|
|
2500
|
+
"csharp_handler": "present",
|
|
2501
|
+
"destructive": false,
|
|
2502
|
+
"timeout": 30000
|
|
2503
|
+
},
|
|
2504
|
+
{
|
|
2505
|
+
"bridgeCommand": "profiler.memory-snapshot.take",
|
|
2506
|
+
"group": "profiler",
|
|
2507
|
+
"command": "memory-snapshot.take",
|
|
2508
|
+
"handler_type": "bridge",
|
|
2509
|
+
"csharp_handler": "present",
|
|
2510
|
+
"destructive": true,
|
|
2511
|
+
"timeout": 30000,
|
|
2512
|
+
"requires_packages": [
|
|
2513
|
+
"com.unity.memoryprofiler"
|
|
2514
|
+
]
|
|
2515
|
+
},
|
|
2516
|
+
{
|
|
2517
|
+
"bridgeCommand": "profiler.module-enable",
|
|
2518
|
+
"group": "profiler",
|
|
2519
|
+
"command": "module-enable",
|
|
2520
|
+
"handler_type": "bridge",
|
|
2521
|
+
"csharp_handler": "present",
|
|
2522
|
+
"destructive": false,
|
|
2523
|
+
"timeout": 30000
|
|
2524
|
+
},
|
|
2525
|
+
{
|
|
2526
|
+
"bridgeCommand": "profiler.modules",
|
|
2527
|
+
"group": "profiler",
|
|
2528
|
+
"command": "modules",
|
|
2529
|
+
"handler_type": "bridge",
|
|
2530
|
+
"csharp_handler": "present",
|
|
2531
|
+
"destructive": false,
|
|
2532
|
+
"timeout": 30000
|
|
2533
|
+
},
|
|
2534
|
+
{
|
|
2535
|
+
"bridgeCommand": "profiler.object-memory",
|
|
2536
|
+
"group": "profiler",
|
|
2537
|
+
"command": "object-memory",
|
|
2538
|
+
"handler_type": "bridge",
|
|
2539
|
+
"csharp_handler": "present",
|
|
2540
|
+
"destructive": false,
|
|
2541
|
+
"timeout": 30000
|
|
2542
|
+
},
|
|
2543
|
+
{
|
|
2544
|
+
"bridgeCommand": "profiler.pause",
|
|
2545
|
+
"group": "profiler",
|
|
2546
|
+
"command": "pause",
|
|
2547
|
+
"handler_type": "bridge",
|
|
2548
|
+
"csharp_handler": "present",
|
|
2549
|
+
"destructive": false,
|
|
2550
|
+
"timeout": 30000
|
|
2551
|
+
},
|
|
2552
|
+
{
|
|
2553
|
+
"bridgeCommand": "profiler.rendering-stats",
|
|
2554
|
+
"group": "profiler",
|
|
2555
|
+
"command": "rendering-stats",
|
|
2556
|
+
"handler_type": "bridge",
|
|
2557
|
+
"csharp_handler": "present",
|
|
2558
|
+
"destructive": false,
|
|
2559
|
+
"timeout": 30000
|
|
2560
|
+
},
|
|
2561
|
+
{
|
|
2562
|
+
"bridgeCommand": "profiler.script-stats",
|
|
2563
|
+
"group": "profiler",
|
|
2564
|
+
"command": "script-stats",
|
|
2565
|
+
"handler_type": "bridge",
|
|
2566
|
+
"csharp_handler": "present",
|
|
2567
|
+
"destructive": false,
|
|
2568
|
+
"timeout": 30000
|
|
2569
|
+
},
|
|
2570
|
+
{
|
|
2571
|
+
"bridgeCommand": "profiler.start",
|
|
2572
|
+
"group": "profiler",
|
|
2573
|
+
"command": "start",
|
|
2574
|
+
"handler_type": "bridge",
|
|
2575
|
+
"csharp_handler": "present",
|
|
2576
|
+
"destructive": false,
|
|
2577
|
+
"timeout": 30000
|
|
2578
|
+
},
|
|
2579
|
+
{
|
|
2580
|
+
"bridgeCommand": "profiler.status",
|
|
2581
|
+
"group": "profiler",
|
|
2582
|
+
"command": "status",
|
|
2583
|
+
"handler_type": "bridge",
|
|
2584
|
+
"csharp_handler": "present",
|
|
2585
|
+
"destructive": false,
|
|
2586
|
+
"timeout": 30000
|
|
2587
|
+
},
|
|
2588
|
+
{
|
|
2589
|
+
"bridgeCommand": "profiler.stop",
|
|
2590
|
+
"group": "profiler",
|
|
2591
|
+
"command": "stop",
|
|
2592
|
+
"handler_type": "bridge",
|
|
2593
|
+
"csharp_handler": "present",
|
|
2594
|
+
"destructive": false,
|
|
2595
|
+
"timeout": 30000
|
|
2596
|
+
},
|
|
2597
|
+
{
|
|
2598
|
+
"bridgeCommand": "project-tool.list",
|
|
2599
|
+
"group": "project-tool",
|
|
2600
|
+
"command": "list",
|
|
2601
|
+
"handler_type": "bridge",
|
|
2602
|
+
"csharp_handler": "present",
|
|
2603
|
+
"destructive": false,
|
|
2604
|
+
"timeout": 30000
|
|
2605
|
+
},
|
|
2606
|
+
{
|
|
2607
|
+
"bridgeCommand": "project-tool.run",
|
|
2608
|
+
"group": "project-tool",
|
|
2609
|
+
"command": "run",
|
|
2610
|
+
"handler_type": "bridge",
|
|
2611
|
+
"csharp_handler": "present",
|
|
2612
|
+
"destructive": false,
|
|
2613
|
+
"timeout": 30000
|
|
2614
|
+
},
|
|
2615
|
+
{
|
|
2616
|
+
"bridgeCommand": "project.audio-settings",
|
|
2617
|
+
"group": "project",
|
|
2618
|
+
"command": "audio-settings",
|
|
2619
|
+
"handler_type": "bridge",
|
|
2620
|
+
"csharp_handler": "present",
|
|
2621
|
+
"destructive": false,
|
|
2622
|
+
"timeout": 30000
|
|
2623
|
+
},
|
|
2624
|
+
{
|
|
2625
|
+
"bridgeCommand": "project.audio-settings.set",
|
|
2626
|
+
"group": "project",
|
|
2627
|
+
"command": "audio-settings.set",
|
|
2628
|
+
"handler_type": "bridge",
|
|
2629
|
+
"csharp_handler": "present",
|
|
2630
|
+
"destructive": true,
|
|
2631
|
+
"timeout": 30000
|
|
2632
|
+
},
|
|
2633
|
+
{
|
|
2634
|
+
"bridgeCommand": "project.info",
|
|
2635
|
+
"group": "project",
|
|
2636
|
+
"command": "info",
|
|
2637
|
+
"handler_type": "bridge",
|
|
2638
|
+
"csharp_handler": "present",
|
|
2639
|
+
"destructive": false,
|
|
2640
|
+
"timeout": 30000
|
|
2641
|
+
},
|
|
2642
|
+
{
|
|
2643
|
+
"bridgeCommand": "project.input-settings",
|
|
2644
|
+
"group": "project",
|
|
2645
|
+
"command": "input-settings",
|
|
2646
|
+
"handler_type": "bridge",
|
|
2647
|
+
"csharp_handler": "present",
|
|
2648
|
+
"destructive": false,
|
|
2649
|
+
"timeout": 30000
|
|
2650
|
+
},
|
|
2651
|
+
{
|
|
2652
|
+
"bridgeCommand": "project.input-settings.set",
|
|
2653
|
+
"group": "project",
|
|
2654
|
+
"command": "input-settings.set",
|
|
2655
|
+
"handler_type": "bridge",
|
|
2656
|
+
"csharp_handler": "present",
|
|
2657
|
+
"destructive": true,
|
|
2658
|
+
"timeout": 30000
|
|
2659
|
+
},
|
|
2660
|
+
{
|
|
2661
|
+
"bridgeCommand": "project.layer.add",
|
|
2662
|
+
"group": "project",
|
|
2663
|
+
"command": "layer.add",
|
|
2664
|
+
"handler_type": "bridge",
|
|
2665
|
+
"csharp_handler": "present",
|
|
2666
|
+
"destructive": true,
|
|
2667
|
+
"timeout": 30000
|
|
2668
|
+
},
|
|
2669
|
+
{
|
|
2670
|
+
"bridgeCommand": "project.layer.remove",
|
|
2671
|
+
"group": "project",
|
|
2672
|
+
"command": "layer.remove",
|
|
2673
|
+
"handler_type": "bridge",
|
|
2674
|
+
"csharp_handler": "present",
|
|
2675
|
+
"destructive": true,
|
|
2676
|
+
"timeout": 30000
|
|
2677
|
+
},
|
|
2678
|
+
{
|
|
2679
|
+
"bridgeCommand": "project.layers",
|
|
2680
|
+
"group": "project",
|
|
2681
|
+
"command": "layers",
|
|
2682
|
+
"handler_type": "bridge",
|
|
2683
|
+
"csharp_handler": "present",
|
|
2684
|
+
"destructive": false,
|
|
2685
|
+
"timeout": 30000
|
|
2686
|
+
},
|
|
2687
|
+
{
|
|
2688
|
+
"bridgeCommand": "project.player-settings",
|
|
2689
|
+
"group": "project",
|
|
2690
|
+
"command": "player-settings",
|
|
2691
|
+
"handler_type": "bridge",
|
|
2692
|
+
"csharp_handler": "present",
|
|
2693
|
+
"destructive": false,
|
|
2694
|
+
"timeout": 30000
|
|
2695
|
+
},
|
|
2696
|
+
{
|
|
2697
|
+
"bridgeCommand": "project.player-settings.set",
|
|
2698
|
+
"group": "project",
|
|
2699
|
+
"command": "player-settings.set",
|
|
2700
|
+
"handler_type": "bridge",
|
|
2701
|
+
"csharp_handler": "present",
|
|
2702
|
+
"destructive": true,
|
|
2703
|
+
"timeout": 30000
|
|
2704
|
+
},
|
|
2705
|
+
{
|
|
2706
|
+
"bridgeCommand": "project.tag.add",
|
|
2707
|
+
"group": "project",
|
|
2708
|
+
"command": "tag.add",
|
|
2709
|
+
"handler_type": "bridge",
|
|
2710
|
+
"csharp_handler": "present",
|
|
2711
|
+
"destructive": true,
|
|
2712
|
+
"timeout": 30000
|
|
2713
|
+
},
|
|
2714
|
+
{
|
|
2715
|
+
"bridgeCommand": "project.tag.remove",
|
|
2716
|
+
"group": "project",
|
|
2717
|
+
"command": "tag.remove",
|
|
2718
|
+
"handler_type": "bridge",
|
|
2719
|
+
"csharp_handler": "present",
|
|
2720
|
+
"destructive": true,
|
|
2721
|
+
"timeout": 30000
|
|
2722
|
+
},
|
|
2723
|
+
{
|
|
2724
|
+
"bridgeCommand": "project.tags",
|
|
2725
|
+
"group": "project",
|
|
2726
|
+
"command": "tags",
|
|
2727
|
+
"handler_type": "bridge",
|
|
2728
|
+
"csharp_handler": "present",
|
|
2729
|
+
"destructive": false,
|
|
2730
|
+
"timeout": 30000
|
|
2731
|
+
},
|
|
2732
|
+
{
|
|
2733
|
+
"bridgeCommand": "project.time-settings",
|
|
2734
|
+
"group": "project",
|
|
2735
|
+
"command": "time-settings",
|
|
2736
|
+
"handler_type": "bridge",
|
|
2737
|
+
"csharp_handler": "present",
|
|
2738
|
+
"destructive": false,
|
|
2739
|
+
"timeout": 30000
|
|
2740
|
+
},
|
|
2741
|
+
{
|
|
2742
|
+
"bridgeCommand": "project.time-settings.set",
|
|
2743
|
+
"group": "project",
|
|
2744
|
+
"command": "time-settings.set",
|
|
2745
|
+
"handler_type": "bridge",
|
|
2746
|
+
"csharp_handler": "present",
|
|
2747
|
+
"destructive": true,
|
|
2748
|
+
"timeout": 30000
|
|
2749
|
+
},
|
|
2750
|
+
{
|
|
2751
|
+
"bridgeCommand": "reflect.member",
|
|
2752
|
+
"group": "reflect",
|
|
2753
|
+
"command": "member",
|
|
2754
|
+
"handler_type": "offline",
|
|
2755
|
+
"csharp_handler": "none",
|
|
2756
|
+
"destructive": false,
|
|
2757
|
+
"timeout": 30000
|
|
2758
|
+
},
|
|
2759
|
+
{
|
|
2760
|
+
"bridgeCommand": "reflect.search",
|
|
2761
|
+
"group": "reflect",
|
|
2762
|
+
"command": "search",
|
|
2763
|
+
"handler_type": "offline",
|
|
2764
|
+
"csharp_handler": "none",
|
|
2765
|
+
"destructive": false,
|
|
2766
|
+
"timeout": 30000
|
|
2767
|
+
},
|
|
2768
|
+
{
|
|
2769
|
+
"bridgeCommand": "reflect.type",
|
|
2770
|
+
"group": "reflect",
|
|
2771
|
+
"command": "type",
|
|
2772
|
+
"handler_type": "offline",
|
|
2773
|
+
"csharp_handler": "none",
|
|
2774
|
+
"destructive": false,
|
|
2775
|
+
"timeout": 30000
|
|
2776
|
+
},
|
|
2777
|
+
{
|
|
2778
|
+
"bridgeCommand": "reflection.method.call",
|
|
2779
|
+
"group": "reflection",
|
|
2780
|
+
"command": "method.call",
|
|
2781
|
+
"handler_type": "bridge",
|
|
2782
|
+
"csharp_handler": "present",
|
|
2783
|
+
"destructive": true,
|
|
2784
|
+
"timeout": 30000
|
|
2785
|
+
},
|
|
2786
|
+
{
|
|
2787
|
+
"bridgeCommand": "reflection.method.find",
|
|
2788
|
+
"group": "reflection",
|
|
2789
|
+
"command": "method.find",
|
|
2790
|
+
"handler_type": "bridge",
|
|
2791
|
+
"csharp_handler": "present",
|
|
2792
|
+
"destructive": false,
|
|
2793
|
+
"timeout": 30000
|
|
2794
|
+
},
|
|
2795
|
+
{
|
|
2796
|
+
"bridgeCommand": "runtime-tool.list",
|
|
2797
|
+
"group": "runtime-tool",
|
|
2798
|
+
"command": "list",
|
|
2799
|
+
"handler_type": "bridge",
|
|
2800
|
+
"csharp_handler": "present",
|
|
2801
|
+
"destructive": false,
|
|
2802
|
+
"timeout": 30000
|
|
2803
|
+
},
|
|
2804
|
+
{
|
|
2805
|
+
"bridgeCommand": "runtime-tool.run",
|
|
2806
|
+
"group": "runtime-tool",
|
|
2807
|
+
"command": "run",
|
|
2808
|
+
"handler_type": "bridge",
|
|
2809
|
+
"csharp_handler": "present",
|
|
2810
|
+
"destructive": false,
|
|
2811
|
+
"timeout": 30000
|
|
2812
|
+
},
|
|
2813
|
+
{
|
|
2814
|
+
"bridgeCommand": "runtime.console",
|
|
2815
|
+
"group": "runtime",
|
|
2816
|
+
"command": "console",
|
|
2817
|
+
"handler_type": "bridge-runtime",
|
|
2818
|
+
"csharp_handler": "none",
|
|
2819
|
+
"destructive": false,
|
|
2820
|
+
"timeout": 10000
|
|
2821
|
+
},
|
|
2822
|
+
{
|
|
2823
|
+
"bridgeCommand": "runtime.input.key",
|
|
2824
|
+
"group": "runtime",
|
|
2825
|
+
"command": "input.key",
|
|
2826
|
+
"handler_type": "bridge-runtime",
|
|
2827
|
+
"csharp_handler": "none",
|
|
2828
|
+
"destructive": false,
|
|
2829
|
+
"timeout": 10000,
|
|
2830
|
+
"requires_packages": [
|
|
2831
|
+
"com.unity.inputsystem"
|
|
2832
|
+
]
|
|
2833
|
+
},
|
|
2834
|
+
{
|
|
2835
|
+
"bridgeCommand": "runtime.input.pointer",
|
|
2836
|
+
"group": "runtime",
|
|
2837
|
+
"command": "input.pointer",
|
|
2838
|
+
"handler_type": "bridge-runtime",
|
|
2839
|
+
"csharp_handler": "none",
|
|
2840
|
+
"destructive": false,
|
|
2841
|
+
"timeout": 10000,
|
|
2842
|
+
"requires_packages": [
|
|
2843
|
+
"com.unity.inputsystem"
|
|
2844
|
+
]
|
|
2845
|
+
},
|
|
2846
|
+
{
|
|
2847
|
+
"bridgeCommand": "runtime.log",
|
|
2848
|
+
"group": "runtime",
|
|
2849
|
+
"command": "log",
|
|
2850
|
+
"handler_type": "bridge-runtime",
|
|
2851
|
+
"csharp_handler": "none",
|
|
2852
|
+
"destructive": false,
|
|
2853
|
+
"timeout": 10000
|
|
2854
|
+
},
|
|
2855
|
+
{
|
|
2856
|
+
"bridgeCommand": "runtime.state",
|
|
2857
|
+
"group": "runtime",
|
|
2858
|
+
"command": "state",
|
|
2859
|
+
"handler_type": "bridge-runtime",
|
|
2860
|
+
"csharp_handler": "none",
|
|
2861
|
+
"destructive": false,
|
|
2862
|
+
"timeout": 10000
|
|
2863
|
+
},
|
|
2864
|
+
{
|
|
2865
|
+
"bridgeCommand": "runtime.target-framerate.set",
|
|
2866
|
+
"group": "runtime",
|
|
2867
|
+
"command": "target-framerate.set",
|
|
2868
|
+
"handler_type": "bridge-runtime",
|
|
2869
|
+
"csharp_handler": "none",
|
|
2870
|
+
"destructive": false,
|
|
2871
|
+
"timeout": 10000
|
|
2872
|
+
},
|
|
2873
|
+
{
|
|
2874
|
+
"bridgeCommand": "runtime.time-scale.set",
|
|
2875
|
+
"group": "runtime",
|
|
2876
|
+
"command": "time-scale.set",
|
|
2877
|
+
"handler_type": "bridge-runtime",
|
|
2878
|
+
"csharp_handler": "none",
|
|
2879
|
+
"destructive": false,
|
|
2880
|
+
"timeout": 10000
|
|
2881
|
+
},
|
|
2882
|
+
{
|
|
2883
|
+
"bridgeCommand": "runtime.ui.capture-element",
|
|
2884
|
+
"group": "runtime",
|
|
2885
|
+
"command": "ui.capture-element",
|
|
2886
|
+
"handler_type": "bridge-runtime",
|
|
2887
|
+
"csharp_handler": "none",
|
|
2888
|
+
"destructive": false,
|
|
2889
|
+
"timeout": 15000
|
|
2890
|
+
},
|
|
2891
|
+
{
|
|
2892
|
+
"bridgeCommand": "scene.active",
|
|
2893
|
+
"group": "scene",
|
|
2894
|
+
"command": "active",
|
|
2895
|
+
"handler_type": "bridge",
|
|
2896
|
+
"csharp_handler": "present",
|
|
2897
|
+
"destructive": false,
|
|
2898
|
+
"timeout": 30000
|
|
2899
|
+
},
|
|
2900
|
+
{
|
|
2901
|
+
"bridgeCommand": "scene.build-settings",
|
|
2902
|
+
"group": "scene",
|
|
2903
|
+
"command": "build-settings",
|
|
2904
|
+
"handler_type": "bridge",
|
|
2905
|
+
"csharp_handler": "present",
|
|
2906
|
+
"destructive": false,
|
|
2907
|
+
"timeout": 30000
|
|
2908
|
+
},
|
|
2909
|
+
{
|
|
2910
|
+
"bridgeCommand": "scene.create",
|
|
2911
|
+
"group": "scene",
|
|
2912
|
+
"command": "create",
|
|
2913
|
+
"handler_type": "bridge",
|
|
2914
|
+
"csharp_handler": "present",
|
|
2915
|
+
"destructive": true,
|
|
2916
|
+
"timeout": 30000
|
|
2917
|
+
},
|
|
2918
|
+
{
|
|
2919
|
+
"bridgeCommand": "scene.data",
|
|
2920
|
+
"group": "scene",
|
|
2921
|
+
"command": "data",
|
|
2922
|
+
"handler_type": "bridge",
|
|
2923
|
+
"csharp_handler": "present",
|
|
2924
|
+
"destructive": false,
|
|
2925
|
+
"timeout": 30000
|
|
2926
|
+
},
|
|
2927
|
+
{
|
|
2928
|
+
"bridgeCommand": "scene.gameobject",
|
|
2929
|
+
"group": "scene",
|
|
2930
|
+
"command": "gameobject",
|
|
2931
|
+
"handler_type": "bridge",
|
|
2932
|
+
"csharp_handler": "present",
|
|
2933
|
+
"destructive": false,
|
|
2934
|
+
"timeout": 30000
|
|
2935
|
+
},
|
|
2936
|
+
{
|
|
2937
|
+
"bridgeCommand": "scene.gameobject.component",
|
|
2938
|
+
"group": "scene",
|
|
2939
|
+
"command": "gameobject.component",
|
|
2940
|
+
"handler_type": "bridge",
|
|
2941
|
+
"csharp_handler": "present",
|
|
2942
|
+
"destructive": false,
|
|
2943
|
+
"timeout": 30000
|
|
2944
|
+
},
|
|
2945
|
+
{
|
|
2946
|
+
"bridgeCommand": "scene.gameobject.components",
|
|
2947
|
+
"group": "scene",
|
|
2948
|
+
"command": "gameobject.components",
|
|
2949
|
+
"handler_type": "bridge",
|
|
2950
|
+
"csharp_handler": "present",
|
|
2951
|
+
"destructive": false,
|
|
2952
|
+
"timeout": 30000
|
|
2953
|
+
},
|
|
2954
|
+
{
|
|
2955
|
+
"bridgeCommand": "scene.hierarchy",
|
|
2956
|
+
"group": "scene",
|
|
2957
|
+
"command": "hierarchy",
|
|
2958
|
+
"handler_type": "bridge",
|
|
2959
|
+
"csharp_handler": "present",
|
|
2960
|
+
"destructive": false,
|
|
2961
|
+
"timeout": 30000
|
|
2962
|
+
},
|
|
2963
|
+
{
|
|
2964
|
+
"bridgeCommand": "scene.list-opened",
|
|
2965
|
+
"group": "scene",
|
|
2966
|
+
"command": "list-opened",
|
|
2967
|
+
"handler_type": "bridge",
|
|
2968
|
+
"csharp_handler": "present",
|
|
2969
|
+
"destructive": false,
|
|
2970
|
+
"timeout": 30000
|
|
2971
|
+
},
|
|
2972
|
+
{
|
|
2973
|
+
"bridgeCommand": "scene.load",
|
|
2974
|
+
"group": "scene",
|
|
2975
|
+
"command": "load",
|
|
2976
|
+
"handler_type": "bridge",
|
|
2977
|
+
"csharp_handler": "present",
|
|
2978
|
+
"destructive": false,
|
|
2979
|
+
"timeout": 30000
|
|
2980
|
+
},
|
|
2981
|
+
{
|
|
2982
|
+
"bridgeCommand": "scene.move-object",
|
|
2983
|
+
"group": "scene",
|
|
2984
|
+
"command": "move-object",
|
|
2985
|
+
"handler_type": "bridge",
|
|
2986
|
+
"csharp_handler": "present",
|
|
2987
|
+
"destructive": false,
|
|
2988
|
+
"timeout": 30000
|
|
2989
|
+
},
|
|
2990
|
+
{
|
|
2991
|
+
"bridgeCommand": "scene.save",
|
|
2992
|
+
"group": "scene",
|
|
2993
|
+
"command": "save",
|
|
2994
|
+
"handler_type": "bridge",
|
|
2995
|
+
"csharp_handler": "present",
|
|
2996
|
+
"destructive": true,
|
|
2997
|
+
"timeout": 30000
|
|
2998
|
+
},
|
|
2999
|
+
{
|
|
3000
|
+
"bridgeCommand": "scene.set-active",
|
|
3001
|
+
"group": "scene",
|
|
3002
|
+
"command": "set-active",
|
|
3003
|
+
"handler_type": "bridge",
|
|
3004
|
+
"csharp_handler": "present",
|
|
3005
|
+
"destructive": false,
|
|
3006
|
+
"timeout": 30000
|
|
3007
|
+
},
|
|
3008
|
+
{
|
|
3009
|
+
"bridgeCommand": "scene.unload",
|
|
3010
|
+
"group": "scene",
|
|
3011
|
+
"command": "unload",
|
|
3012
|
+
"handler_type": "bridge",
|
|
3013
|
+
"csharp_handler": "present",
|
|
3014
|
+
"destructive": true,
|
|
3015
|
+
"timeout": 30000
|
|
3016
|
+
},
|
|
3017
|
+
{
|
|
3018
|
+
"bridgeCommand": "scene.validate",
|
|
3019
|
+
"group": "scene",
|
|
3020
|
+
"command": "validate",
|
|
3021
|
+
"handler_type": "bridge",
|
|
3022
|
+
"csharp_handler": "present",
|
|
3023
|
+
"destructive": false,
|
|
3024
|
+
"timeout": 30000
|
|
3025
|
+
},
|
|
3026
|
+
{
|
|
3027
|
+
"bridgeCommand": "scene.view-frame",
|
|
3028
|
+
"group": "scene",
|
|
3029
|
+
"command": "view-frame",
|
|
3030
|
+
"handler_type": "bridge",
|
|
3031
|
+
"csharp_handler": "present",
|
|
3032
|
+
"destructive": false,
|
|
3033
|
+
"timeout": 30000
|
|
3034
|
+
},
|
|
3035
|
+
{
|
|
3036
|
+
"bridgeCommand": "screenshot.editor-element",
|
|
3037
|
+
"group": "screenshot",
|
|
3038
|
+
"command": "editor-element",
|
|
3039
|
+
"handler_type": "bridge",
|
|
3040
|
+
"csharp_handler": "present",
|
|
3041
|
+
"destructive": false,
|
|
3042
|
+
"timeout": 30000
|
|
3043
|
+
},
|
|
3044
|
+
{
|
|
3045
|
+
"bridgeCommand": "screenshot.game-view",
|
|
3046
|
+
"group": "screenshot",
|
|
3047
|
+
"command": "game-view",
|
|
3048
|
+
"handler_type": "bridge",
|
|
3049
|
+
"csharp_handler": "present",
|
|
3050
|
+
"destructive": true,
|
|
3051
|
+
"timeout": 30000
|
|
3052
|
+
},
|
|
3053
|
+
{
|
|
3054
|
+
"bridgeCommand": "screenshot.isolated-object",
|
|
3055
|
+
"group": "screenshot",
|
|
3056
|
+
"command": "isolated-object",
|
|
3057
|
+
"handler_type": "bridge",
|
|
3058
|
+
"csharp_handler": "present",
|
|
3059
|
+
"destructive": true,
|
|
3060
|
+
"timeout": 30000
|
|
3061
|
+
},
|
|
3062
|
+
{
|
|
3063
|
+
"bridgeCommand": "screenshot.orbit",
|
|
3064
|
+
"group": "screenshot",
|
|
3065
|
+
"command": "orbit",
|
|
3066
|
+
"handler_type": "bridge",
|
|
3067
|
+
"csharp_handler": "present",
|
|
3068
|
+
"destructive": true,
|
|
3069
|
+
"timeout": 30000
|
|
3070
|
+
},
|
|
3071
|
+
{
|
|
3072
|
+
"bridgeCommand": "screenshot.scene-view",
|
|
3073
|
+
"group": "screenshot",
|
|
3074
|
+
"command": "scene-view",
|
|
3075
|
+
"handler_type": "bridge",
|
|
3076
|
+
"csharp_handler": "present",
|
|
3077
|
+
"destructive": true,
|
|
3078
|
+
"timeout": 30000
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"bridgeCommand": "screenshot.screen",
|
|
3082
|
+
"group": "screenshot",
|
|
3083
|
+
"command": "screen",
|
|
3084
|
+
"handler_type": "bridge",
|
|
3085
|
+
"csharp_handler": "present",
|
|
3086
|
+
"destructive": true,
|
|
3087
|
+
"timeout": 30000
|
|
3088
|
+
},
|
|
3089
|
+
{
|
|
3090
|
+
"bridgeCommand": "screenshot.surround",
|
|
3091
|
+
"group": "screenshot",
|
|
3092
|
+
"command": "surround",
|
|
3093
|
+
"handler_type": "bridge",
|
|
3094
|
+
"csharp_handler": "present",
|
|
3095
|
+
"destructive": true,
|
|
3096
|
+
"timeout": 30000
|
|
3097
|
+
},
|
|
3098
|
+
{
|
|
3099
|
+
"bridgeCommand": "scriptable-object.create",
|
|
3100
|
+
"group": "scriptable-object",
|
|
3101
|
+
"command": "create",
|
|
3102
|
+
"handler_type": "bridge",
|
|
3103
|
+
"csharp_handler": "present",
|
|
3104
|
+
"destructive": true,
|
|
3105
|
+
"timeout": 30000
|
|
3106
|
+
},
|
|
3107
|
+
{
|
|
3108
|
+
"bridgeCommand": "scriptable-object.info",
|
|
3109
|
+
"group": "scriptable-object",
|
|
3110
|
+
"command": "info",
|
|
3111
|
+
"handler_type": "bridge",
|
|
3112
|
+
"csharp_handler": "present",
|
|
3113
|
+
"destructive": false,
|
|
3114
|
+
"timeout": 30000
|
|
3115
|
+
},
|
|
3116
|
+
{
|
|
3117
|
+
"bridgeCommand": "scriptable-object.list-types",
|
|
3118
|
+
"group": "scriptable-object",
|
|
3119
|
+
"command": "list-types",
|
|
3120
|
+
"handler_type": "bridge",
|
|
3121
|
+
"csharp_handler": "present",
|
|
3122
|
+
"destructive": false,
|
|
3123
|
+
"timeout": 30000
|
|
3124
|
+
},
|
|
3125
|
+
{
|
|
3126
|
+
"bridgeCommand": "scriptable-object.modify",
|
|
3127
|
+
"group": "scriptable-object",
|
|
3128
|
+
"command": "modify",
|
|
3129
|
+
"handler_type": "bridge",
|
|
3130
|
+
"csharp_handler": "present",
|
|
3131
|
+
"destructive": true,
|
|
3132
|
+
"timeout": 30000
|
|
3133
|
+
},
|
|
3134
|
+
{
|
|
3135
|
+
"bridgeCommand": "shader.create",
|
|
3136
|
+
"group": "shader",
|
|
3137
|
+
"command": "create",
|
|
3138
|
+
"handler_type": "bridge",
|
|
3139
|
+
"csharp_handler": "present",
|
|
3140
|
+
"destructive": true,
|
|
3141
|
+
"timeout": 30000
|
|
3142
|
+
},
|
|
3143
|
+
{
|
|
3144
|
+
"bridgeCommand": "shader.delete",
|
|
3145
|
+
"group": "shader",
|
|
3146
|
+
"command": "delete",
|
|
3147
|
+
"handler_type": "bridge",
|
|
3148
|
+
"csharp_handler": "present",
|
|
3149
|
+
"destructive": true,
|
|
3150
|
+
"timeout": 30000
|
|
3151
|
+
},
|
|
3152
|
+
{
|
|
3153
|
+
"bridgeCommand": "shader.get-data",
|
|
3154
|
+
"group": "shader",
|
|
3155
|
+
"command": "get-data",
|
|
3156
|
+
"handler_type": "bridge",
|
|
3157
|
+
"csharp_handler": "present",
|
|
3158
|
+
"destructive": false,
|
|
3159
|
+
"timeout": 30000
|
|
3160
|
+
},
|
|
3161
|
+
{
|
|
3162
|
+
"bridgeCommand": "shader.info",
|
|
3163
|
+
"group": "shader",
|
|
3164
|
+
"command": "info",
|
|
3165
|
+
"handler_type": "bridge",
|
|
3166
|
+
"csharp_handler": "present",
|
|
3167
|
+
"destructive": false,
|
|
3168
|
+
"timeout": 30000
|
|
3169
|
+
},
|
|
3170
|
+
{
|
|
3171
|
+
"bridgeCommand": "shader.list",
|
|
3172
|
+
"group": "shader",
|
|
3173
|
+
"command": "list",
|
|
3174
|
+
"handler_type": "bridge",
|
|
3175
|
+
"csharp_handler": "present",
|
|
3176
|
+
"destructive": false,
|
|
3177
|
+
"timeout": 30000
|
|
3178
|
+
},
|
|
3179
|
+
{
|
|
3180
|
+
"bridgeCommand": "shader.read",
|
|
3181
|
+
"group": "shader",
|
|
3182
|
+
"command": "read",
|
|
3183
|
+
"handler_type": "bridge",
|
|
3184
|
+
"csharp_handler": "present",
|
|
3185
|
+
"destructive": false,
|
|
3186
|
+
"timeout": 30000
|
|
3187
|
+
},
|
|
3188
|
+
{
|
|
3189
|
+
"bridgeCommand": "shader.update",
|
|
3190
|
+
"group": "shader",
|
|
3191
|
+
"command": "update",
|
|
3192
|
+
"handler_type": "bridge",
|
|
3193
|
+
"csharp_handler": "present",
|
|
3194
|
+
"destructive": true,
|
|
3195
|
+
"timeout": 30000
|
|
3196
|
+
},
|
|
3197
|
+
{
|
|
3198
|
+
"bridgeCommand": "test.cancel",
|
|
3199
|
+
"group": "test",
|
|
3200
|
+
"command": "cancel",
|
|
3201
|
+
"handler_type": "hybrid",
|
|
3202
|
+
"csharp_handler": "none",
|
|
3203
|
+
"destructive": false,
|
|
3204
|
+
"timeout": 60000
|
|
3205
|
+
},
|
|
3206
|
+
{
|
|
3207
|
+
"bridgeCommand": "test.run",
|
|
3208
|
+
"group": "test",
|
|
3209
|
+
"command": "run",
|
|
3210
|
+
"handler_type": "hybrid",
|
|
3211
|
+
"csharp_handler": "none",
|
|
3212
|
+
"destructive": false,
|
|
3213
|
+
"timeout": 600000
|
|
3214
|
+
},
|
|
3215
|
+
{
|
|
3216
|
+
"bridgeCommand": "tests.list",
|
|
3217
|
+
"group": "tests",
|
|
3218
|
+
"command": "list",
|
|
3219
|
+
"handler_type": "bridge",
|
|
3220
|
+
"csharp_handler": "present",
|
|
3221
|
+
"destructive": false,
|
|
3222
|
+
"timeout": 30000
|
|
3223
|
+
},
|
|
3224
|
+
{
|
|
3225
|
+
"bridgeCommand": "texture.create",
|
|
3226
|
+
"group": "texture",
|
|
3227
|
+
"command": "create",
|
|
3228
|
+
"handler_type": "bridge",
|
|
3229
|
+
"csharp_handler": "present",
|
|
3230
|
+
"destructive": true,
|
|
3231
|
+
"timeout": 30000
|
|
3232
|
+
},
|
|
3233
|
+
{
|
|
3234
|
+
"bridgeCommand": "texture.delete",
|
|
3235
|
+
"group": "texture",
|
|
3236
|
+
"command": "delete",
|
|
3237
|
+
"handler_type": "bridge",
|
|
3238
|
+
"csharp_handler": "present",
|
|
3239
|
+
"destructive": true,
|
|
3240
|
+
"timeout": 30000
|
|
3241
|
+
},
|
|
3242
|
+
{
|
|
3243
|
+
"bridgeCommand": "texture.generate",
|
|
3244
|
+
"group": "texture",
|
|
3245
|
+
"command": "generate",
|
|
3246
|
+
"handler_type": "bridge",
|
|
3247
|
+
"csharp_handler": "present",
|
|
3248
|
+
"destructive": true,
|
|
3249
|
+
"timeout": 30000
|
|
3250
|
+
},
|
|
3251
|
+
{
|
|
3252
|
+
"bridgeCommand": "texture.import-settings",
|
|
3253
|
+
"group": "texture",
|
|
3254
|
+
"command": "import-settings",
|
|
3255
|
+
"handler_type": "bridge",
|
|
3256
|
+
"csharp_handler": "present",
|
|
3257
|
+
"destructive": true,
|
|
3258
|
+
"timeout": 30000
|
|
3259
|
+
},
|
|
3260
|
+
{
|
|
3261
|
+
"bridgeCommand": "texture.info",
|
|
3262
|
+
"group": "texture",
|
|
3263
|
+
"command": "info",
|
|
3264
|
+
"handler_type": "bridge",
|
|
3265
|
+
"csharp_handler": "present",
|
|
3266
|
+
"destructive": false,
|
|
3267
|
+
"timeout": 30000
|
|
3268
|
+
},
|
|
3269
|
+
{
|
|
3270
|
+
"bridgeCommand": "texture.modify",
|
|
3271
|
+
"group": "texture",
|
|
3272
|
+
"command": "modify",
|
|
3273
|
+
"handler_type": "bridge",
|
|
3274
|
+
"csharp_handler": "present",
|
|
3275
|
+
"destructive": true,
|
|
3276
|
+
"timeout": 30000
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
"bridgeCommand": "texture.sprite",
|
|
3280
|
+
"group": "texture",
|
|
3281
|
+
"command": "sprite",
|
|
3282
|
+
"handler_type": "bridge",
|
|
3283
|
+
"csharp_handler": "present",
|
|
3284
|
+
"destructive": true,
|
|
3285
|
+
"timeout": 30000
|
|
3286
|
+
},
|
|
3287
|
+
{
|
|
3288
|
+
"bridgeCommand": "timeline.clip.add",
|
|
3289
|
+
"group": "timeline",
|
|
3290
|
+
"command": "clip.add",
|
|
3291
|
+
"handler_type": "bridge",
|
|
3292
|
+
"csharp_handler": "present",
|
|
3293
|
+
"destructive": true,
|
|
3294
|
+
"timeout": 30000,
|
|
3295
|
+
"requires_packages": [
|
|
3296
|
+
"com.unity.timeline"
|
|
3297
|
+
]
|
|
3298
|
+
},
|
|
3299
|
+
{
|
|
3300
|
+
"bridgeCommand": "timeline.create",
|
|
3301
|
+
"group": "timeline",
|
|
3302
|
+
"command": "create",
|
|
3303
|
+
"handler_type": "bridge",
|
|
3304
|
+
"csharp_handler": "present",
|
|
3305
|
+
"destructive": true,
|
|
3306
|
+
"timeout": 30000,
|
|
3307
|
+
"requires_packages": [
|
|
3308
|
+
"com.unity.timeline"
|
|
3309
|
+
]
|
|
3310
|
+
},
|
|
3311
|
+
{
|
|
3312
|
+
"bridgeCommand": "timeline.info",
|
|
3313
|
+
"group": "timeline",
|
|
3314
|
+
"command": "info",
|
|
3315
|
+
"handler_type": "bridge",
|
|
3316
|
+
"csharp_handler": "present",
|
|
3317
|
+
"destructive": false,
|
|
3318
|
+
"timeout": 30000,
|
|
3319
|
+
"requires_packages": [
|
|
3320
|
+
"com.unity.timeline"
|
|
3321
|
+
]
|
|
3322
|
+
},
|
|
3323
|
+
{
|
|
3324
|
+
"bridgeCommand": "timeline.track.add",
|
|
3325
|
+
"group": "timeline",
|
|
3326
|
+
"command": "track.add",
|
|
3327
|
+
"handler_type": "bridge",
|
|
3328
|
+
"csharp_handler": "present",
|
|
3329
|
+
"destructive": true,
|
|
3330
|
+
"timeout": 30000,
|
|
3331
|
+
"requires_packages": [
|
|
3332
|
+
"com.unity.timeline"
|
|
3333
|
+
]
|
|
3334
|
+
},
|
|
3335
|
+
{
|
|
3336
|
+
"bridgeCommand": "tools.describe",
|
|
3337
|
+
"group": "tools",
|
|
3338
|
+
"command": "describe",
|
|
3339
|
+
"handler_type": "offline",
|
|
3340
|
+
"csharp_handler": "none",
|
|
3341
|
+
"destructive": false,
|
|
3342
|
+
"timeout": 30000
|
|
3343
|
+
},
|
|
3344
|
+
{
|
|
3345
|
+
"bridgeCommand": "tools.group",
|
|
3346
|
+
"group": "tools",
|
|
3347
|
+
"command": "group",
|
|
3348
|
+
"handler_type": "offline",
|
|
3349
|
+
"csharp_handler": "none",
|
|
3350
|
+
"destructive": false,
|
|
3351
|
+
"timeout": 30000
|
|
3352
|
+
},
|
|
3353
|
+
{
|
|
3354
|
+
"bridgeCommand": "tools.group-list",
|
|
3355
|
+
"group": "tools",
|
|
3356
|
+
"command": "group-list",
|
|
3357
|
+
"handler_type": "offline",
|
|
3358
|
+
"csharp_handler": "none",
|
|
3359
|
+
"destructive": false,
|
|
3360
|
+
"timeout": 30000
|
|
3361
|
+
},
|
|
3362
|
+
{
|
|
3363
|
+
"bridgeCommand": "tools.search",
|
|
3364
|
+
"group": "tools",
|
|
3365
|
+
"command": "search",
|
|
3366
|
+
"handler_type": "offline",
|
|
3367
|
+
"csharp_handler": "none",
|
|
3368
|
+
"destructive": false,
|
|
3369
|
+
"timeout": 30000
|
|
3370
|
+
},
|
|
3371
|
+
{
|
|
3372
|
+
"bridgeCommand": "type.schema",
|
|
3373
|
+
"group": "reflection",
|
|
3374
|
+
"command": "type.schema",
|
|
3375
|
+
"handler_type": "bridge",
|
|
3376
|
+
"csharp_handler": "present",
|
|
3377
|
+
"destructive": false,
|
|
3378
|
+
"timeout": 30000
|
|
3379
|
+
},
|
|
3380
|
+
{
|
|
3381
|
+
"bridgeCommand": "ui.attach-document",
|
|
3382
|
+
"group": "ui",
|
|
3383
|
+
"command": "attach-document",
|
|
3384
|
+
"handler_type": "bridge",
|
|
3385
|
+
"csharp_handler": "present",
|
|
3386
|
+
"destructive": false,
|
|
3387
|
+
"timeout": 30000
|
|
3388
|
+
},
|
|
3389
|
+
{
|
|
3390
|
+
"bridgeCommand": "ui.button.create",
|
|
3391
|
+
"group": "ui",
|
|
3392
|
+
"command": "button.create",
|
|
3393
|
+
"handler_type": "bridge",
|
|
3394
|
+
"csharp_handler": "present",
|
|
3395
|
+
"destructive": false,
|
|
3396
|
+
"timeout": 30000
|
|
3397
|
+
},
|
|
3398
|
+
{
|
|
3399
|
+
"bridgeCommand": "ui.canvas.create",
|
|
3400
|
+
"group": "ui",
|
|
3401
|
+
"command": "canvas.create",
|
|
3402
|
+
"handler_type": "bridge",
|
|
3403
|
+
"csharp_handler": "present",
|
|
3404
|
+
"destructive": false,
|
|
3405
|
+
"timeout": 30000
|
|
3406
|
+
},
|
|
3407
|
+
{
|
|
3408
|
+
"bridgeCommand": "ui.create-panel-settings",
|
|
3409
|
+
"group": "ui",
|
|
3410
|
+
"command": "create-panel-settings",
|
|
3411
|
+
"handler_type": "bridge",
|
|
3412
|
+
"csharp_handler": "present",
|
|
3413
|
+
"destructive": true,
|
|
3414
|
+
"timeout": 30000
|
|
3415
|
+
},
|
|
3416
|
+
{
|
|
3417
|
+
"bridgeCommand": "ui.detach-document",
|
|
3418
|
+
"group": "ui",
|
|
3419
|
+
"command": "detach-document",
|
|
3420
|
+
"handler_type": "bridge",
|
|
3421
|
+
"csharp_handler": "present",
|
|
3422
|
+
"destructive": false,
|
|
3423
|
+
"timeout": 30000
|
|
3424
|
+
},
|
|
3425
|
+
{
|
|
3426
|
+
"bridgeCommand": "ui.document.create",
|
|
3427
|
+
"group": "ui",
|
|
3428
|
+
"command": "document.create",
|
|
3429
|
+
"handler_type": "bridge",
|
|
3430
|
+
"csharp_handler": "present",
|
|
3431
|
+
"destructive": true,
|
|
3432
|
+
"timeout": 30000
|
|
3433
|
+
},
|
|
3434
|
+
{
|
|
3435
|
+
"bridgeCommand": "ui.document.delete",
|
|
3436
|
+
"group": "ui",
|
|
3437
|
+
"command": "document.delete",
|
|
3438
|
+
"handler_type": "bridge",
|
|
3439
|
+
"csharp_handler": "present",
|
|
3440
|
+
"destructive": true,
|
|
3441
|
+
"timeout": 30000
|
|
3442
|
+
},
|
|
3443
|
+
{
|
|
3444
|
+
"bridgeCommand": "ui.document.info",
|
|
3445
|
+
"group": "ui",
|
|
3446
|
+
"command": "document.info",
|
|
3447
|
+
"handler_type": "bridge",
|
|
3448
|
+
"csharp_handler": "present",
|
|
3449
|
+
"destructive": false,
|
|
3450
|
+
"timeout": 30000
|
|
3451
|
+
},
|
|
3452
|
+
{
|
|
3453
|
+
"bridgeCommand": "ui.document.update",
|
|
3454
|
+
"group": "ui",
|
|
3455
|
+
"command": "document.update",
|
|
3456
|
+
"handler_type": "bridge",
|
|
3457
|
+
"csharp_handler": "present",
|
|
3458
|
+
"destructive": true,
|
|
3459
|
+
"timeout": 30000
|
|
3460
|
+
},
|
|
3461
|
+
{
|
|
3462
|
+
"bridgeCommand": "ui.get-visual-tree",
|
|
3463
|
+
"group": "ui",
|
|
3464
|
+
"command": "get-visual-tree",
|
|
3465
|
+
"handler_type": "bridge",
|
|
3466
|
+
"csharp_handler": "present",
|
|
3467
|
+
"destructive": false,
|
|
3468
|
+
"timeout": 30000
|
|
3469
|
+
},
|
|
3470
|
+
{
|
|
3471
|
+
"bridgeCommand": "ui.hierarchy",
|
|
3472
|
+
"group": "ui",
|
|
3473
|
+
"command": "hierarchy",
|
|
3474
|
+
"handler_type": "bridge",
|
|
3475
|
+
"csharp_handler": "present",
|
|
3476
|
+
"destructive": false,
|
|
3477
|
+
"timeout": 30000
|
|
3478
|
+
},
|
|
3479
|
+
{
|
|
3480
|
+
"bridgeCommand": "ui.image.create",
|
|
3481
|
+
"group": "ui",
|
|
3482
|
+
"command": "image.create",
|
|
3483
|
+
"handler_type": "bridge",
|
|
3484
|
+
"csharp_handler": "present",
|
|
3485
|
+
"destructive": false,
|
|
3486
|
+
"timeout": 30000
|
|
3487
|
+
},
|
|
3488
|
+
{
|
|
3489
|
+
"bridgeCommand": "ui.link-stylesheet",
|
|
3490
|
+
"group": "ui",
|
|
3491
|
+
"command": "link-stylesheet",
|
|
3492
|
+
"handler_type": "bridge",
|
|
3493
|
+
"csharp_handler": "present",
|
|
3494
|
+
"destructive": true,
|
|
3495
|
+
"timeout": 30000
|
|
3496
|
+
},
|
|
3497
|
+
{
|
|
3498
|
+
"bridgeCommand": "ui.list-documents",
|
|
3499
|
+
"group": "ui",
|
|
3500
|
+
"command": "list-documents",
|
|
3501
|
+
"handler_type": "bridge",
|
|
3502
|
+
"csharp_handler": "present",
|
|
3503
|
+
"destructive": false,
|
|
3504
|
+
"timeout": 30000
|
|
3505
|
+
},
|
|
3506
|
+
{
|
|
3507
|
+
"bridgeCommand": "ui.modify-visual-element",
|
|
3508
|
+
"group": "ui",
|
|
3509
|
+
"command": "modify-visual-element",
|
|
3510
|
+
"handler_type": "bridge",
|
|
3511
|
+
"csharp_handler": "present",
|
|
3512
|
+
"destructive": false,
|
|
3513
|
+
"timeout": 30000
|
|
3514
|
+
},
|
|
3515
|
+
{
|
|
3516
|
+
"bridgeCommand": "ui.render-preview",
|
|
3517
|
+
"group": "ui",
|
|
3518
|
+
"command": "render-preview",
|
|
3519
|
+
"handler_type": "bridge",
|
|
3520
|
+
"csharp_handler": "present",
|
|
3521
|
+
"destructive": true,
|
|
3522
|
+
"timeout": 30000
|
|
3523
|
+
},
|
|
3524
|
+
{
|
|
3525
|
+
"bridgeCommand": "ui.text.create",
|
|
3526
|
+
"group": "ui",
|
|
3527
|
+
"command": "text.create",
|
|
3528
|
+
"handler_type": "bridge",
|
|
3529
|
+
"csharp_handler": "present",
|
|
3530
|
+
"destructive": false,
|
|
3531
|
+
"timeout": 30000
|
|
3532
|
+
},
|
|
3533
|
+
{
|
|
3534
|
+
"bridgeCommand": "ui.update-panel-settings",
|
|
3535
|
+
"group": "ui",
|
|
3536
|
+
"command": "update-panel-settings",
|
|
3537
|
+
"handler_type": "bridge",
|
|
3538
|
+
"csharp_handler": "present",
|
|
3539
|
+
"destructive": true,
|
|
3540
|
+
"timeout": 30000
|
|
3541
|
+
},
|
|
3542
|
+
{
|
|
3543
|
+
"bridgeCommand": "urp.feature.add",
|
|
3544
|
+
"group": "urp",
|
|
3545
|
+
"command": "feature.add",
|
|
3546
|
+
"handler_type": "bridge",
|
|
3547
|
+
"csharp_handler": "present",
|
|
3548
|
+
"destructive": true,
|
|
3549
|
+
"timeout": 30000,
|
|
3550
|
+
"requires_packages": [
|
|
3551
|
+
"com.unity.render-pipelines.universal"
|
|
3552
|
+
]
|
|
3553
|
+
},
|
|
3554
|
+
{
|
|
3555
|
+
"bridgeCommand": "urp.feature.configure",
|
|
3556
|
+
"group": "urp",
|
|
3557
|
+
"command": "feature.configure",
|
|
3558
|
+
"handler_type": "bridge",
|
|
3559
|
+
"csharp_handler": "present",
|
|
3560
|
+
"destructive": true,
|
|
3561
|
+
"timeout": 30000,
|
|
3562
|
+
"requires_packages": [
|
|
3563
|
+
"com.unity.render-pipelines.universal"
|
|
3564
|
+
]
|
|
3565
|
+
},
|
|
3566
|
+
{
|
|
3567
|
+
"bridgeCommand": "urp.feature.list",
|
|
3568
|
+
"group": "urp",
|
|
3569
|
+
"command": "feature.list",
|
|
3570
|
+
"handler_type": "bridge",
|
|
3571
|
+
"csharp_handler": "present",
|
|
3572
|
+
"destructive": false,
|
|
3573
|
+
"timeout": 30000,
|
|
3574
|
+
"requires_packages": [
|
|
3575
|
+
"com.unity.render-pipelines.universal"
|
|
3576
|
+
]
|
|
3577
|
+
},
|
|
3578
|
+
{
|
|
3579
|
+
"bridgeCommand": "urp.feature.remove",
|
|
3580
|
+
"group": "urp",
|
|
3581
|
+
"command": "feature.remove",
|
|
3582
|
+
"handler_type": "bridge",
|
|
3583
|
+
"csharp_handler": "present",
|
|
3584
|
+
"destructive": true,
|
|
3585
|
+
"timeout": 30000,
|
|
3586
|
+
"requires_packages": [
|
|
3587
|
+
"com.unity.render-pipelines.universal"
|
|
3588
|
+
]
|
|
3589
|
+
},
|
|
3590
|
+
{
|
|
3591
|
+
"bridgeCommand": "urp.feature.toggle",
|
|
3592
|
+
"group": "urp",
|
|
3593
|
+
"command": "feature.toggle",
|
|
3594
|
+
"handler_type": "bridge",
|
|
3595
|
+
"csharp_handler": "present",
|
|
3596
|
+
"destructive": true,
|
|
3597
|
+
"timeout": 30000,
|
|
3598
|
+
"requires_packages": [
|
|
3599
|
+
"com.unity.render-pipelines.universal"
|
|
3600
|
+
]
|
|
3601
|
+
},
|
|
3602
|
+
{
|
|
3603
|
+
"bridgeCommand": "urp.settings.get",
|
|
3604
|
+
"group": "urp",
|
|
3605
|
+
"command": "settings.get",
|
|
3606
|
+
"handler_type": "bridge",
|
|
3607
|
+
"csharp_handler": "present",
|
|
3608
|
+
"destructive": false,
|
|
3609
|
+
"timeout": 30000,
|
|
3610
|
+
"requires_packages": [
|
|
3611
|
+
"com.unity.render-pipelines.universal"
|
|
3612
|
+
]
|
|
3613
|
+
},
|
|
3614
|
+
{
|
|
3615
|
+
"bridgeCommand": "urp.settings.set",
|
|
3616
|
+
"group": "urp",
|
|
3617
|
+
"command": "settings.set",
|
|
3618
|
+
"handler_type": "bridge",
|
|
3619
|
+
"csharp_handler": "present",
|
|
3620
|
+
"destructive": true,
|
|
3621
|
+
"timeout": 30000,
|
|
3622
|
+
"requires_packages": [
|
|
3623
|
+
"com.unity.render-pipelines.universal"
|
|
3624
|
+
]
|
|
3625
|
+
},
|
|
3626
|
+
{
|
|
3627
|
+
"bridgeCommand": "urp.volume.add-effect",
|
|
3628
|
+
"group": "urp",
|
|
3629
|
+
"command": "volume.add-effect",
|
|
3630
|
+
"handler_type": "bridge",
|
|
3631
|
+
"csharp_handler": "present",
|
|
3632
|
+
"destructive": false,
|
|
3633
|
+
"timeout": 30000,
|
|
3634
|
+
"requires_packages": [
|
|
3635
|
+
"com.unity.render-pipelines.universal"
|
|
3636
|
+
]
|
|
3637
|
+
},
|
|
3638
|
+
{
|
|
3639
|
+
"bridgeCommand": "urp.volume.create",
|
|
3640
|
+
"group": "urp",
|
|
3641
|
+
"command": "volume.create",
|
|
3642
|
+
"handler_type": "bridge",
|
|
3643
|
+
"csharp_handler": "present",
|
|
3644
|
+
"destructive": false,
|
|
3645
|
+
"timeout": 30000,
|
|
3646
|
+
"requires_packages": [
|
|
3647
|
+
"com.unity.render-pipelines.universal"
|
|
3648
|
+
]
|
|
3649
|
+
},
|
|
3650
|
+
{
|
|
3651
|
+
"bridgeCommand": "urp.volume.info",
|
|
3652
|
+
"group": "urp",
|
|
3653
|
+
"command": "volume.info",
|
|
3654
|
+
"handler_type": "bridge",
|
|
3655
|
+
"csharp_handler": "present",
|
|
3656
|
+
"destructive": false,
|
|
3657
|
+
"timeout": 30000,
|
|
3658
|
+
"requires_packages": [
|
|
3659
|
+
"com.unity.render-pipelines.universal"
|
|
3660
|
+
]
|
|
3661
|
+
},
|
|
3662
|
+
{
|
|
3663
|
+
"bridgeCommand": "urp.volume.list",
|
|
3664
|
+
"group": "urp",
|
|
3665
|
+
"command": "volume.list",
|
|
3666
|
+
"handler_type": "bridge",
|
|
3667
|
+
"csharp_handler": "present",
|
|
3668
|
+
"destructive": false,
|
|
3669
|
+
"timeout": 30000,
|
|
3670
|
+
"requires_packages": [
|
|
3671
|
+
"com.unity.render-pipelines.universal"
|
|
3672
|
+
]
|
|
3673
|
+
},
|
|
3674
|
+
{
|
|
3675
|
+
"bridgeCommand": "urp.volume.set",
|
|
3676
|
+
"group": "urp",
|
|
3677
|
+
"command": "volume.set",
|
|
3678
|
+
"handler_type": "bridge",
|
|
3679
|
+
"csharp_handler": "present",
|
|
3680
|
+
"destructive": false,
|
|
3681
|
+
"timeout": 30000,
|
|
3682
|
+
"requires_packages": [
|
|
3683
|
+
"com.unity.render-pipelines.universal"
|
|
3684
|
+
]
|
|
3685
|
+
},
|
|
3686
|
+
{
|
|
3687
|
+
"bridgeCommand": "vfx.control.pause",
|
|
3688
|
+
"group": "vfx",
|
|
3689
|
+
"command": "control.pause",
|
|
3690
|
+
"handler_type": "bridge",
|
|
3691
|
+
"csharp_handler": "present",
|
|
3692
|
+
"destructive": false,
|
|
3693
|
+
"timeout": 30000,
|
|
3694
|
+
"requires_packages": [
|
|
3695
|
+
"com.unity.visualeffectgraph"
|
|
3696
|
+
]
|
|
3697
|
+
},
|
|
3698
|
+
{
|
|
3699
|
+
"bridgeCommand": "vfx.control.play",
|
|
3700
|
+
"group": "vfx",
|
|
3701
|
+
"command": "control.play",
|
|
3702
|
+
"handler_type": "bridge",
|
|
3703
|
+
"csharp_handler": "present",
|
|
3704
|
+
"destructive": false,
|
|
3705
|
+
"timeout": 30000,
|
|
3706
|
+
"requires_packages": [
|
|
3707
|
+
"com.unity.visualeffectgraph"
|
|
3708
|
+
]
|
|
3709
|
+
},
|
|
3710
|
+
{
|
|
3711
|
+
"bridgeCommand": "vfx.control.reinitialize",
|
|
3712
|
+
"group": "vfx",
|
|
3713
|
+
"command": "control.reinitialize",
|
|
3714
|
+
"handler_type": "bridge",
|
|
3715
|
+
"csharp_handler": "present",
|
|
3716
|
+
"destructive": false,
|
|
3717
|
+
"timeout": 30000,
|
|
3718
|
+
"requires_packages": [
|
|
3719
|
+
"com.unity.visualeffectgraph"
|
|
3720
|
+
]
|
|
3721
|
+
},
|
|
3722
|
+
{
|
|
3723
|
+
"bridgeCommand": "vfx.control.set-rate",
|
|
3724
|
+
"group": "vfx",
|
|
3725
|
+
"command": "control.set-rate",
|
|
3726
|
+
"handler_type": "bridge",
|
|
3727
|
+
"csharp_handler": "present",
|
|
3728
|
+
"destructive": false,
|
|
3729
|
+
"timeout": 30000,
|
|
3730
|
+
"requires_packages": [
|
|
3731
|
+
"com.unity.visualeffectgraph"
|
|
3732
|
+
]
|
|
3733
|
+
},
|
|
3734
|
+
{
|
|
3735
|
+
"bridgeCommand": "vfx.control.set-seed",
|
|
3736
|
+
"group": "vfx",
|
|
3737
|
+
"command": "control.set-seed",
|
|
3738
|
+
"handler_type": "bridge",
|
|
3739
|
+
"csharp_handler": "present",
|
|
3740
|
+
"destructive": false,
|
|
3741
|
+
"timeout": 30000,
|
|
3742
|
+
"requires_packages": [
|
|
3743
|
+
"com.unity.visualeffectgraph"
|
|
3744
|
+
]
|
|
3745
|
+
},
|
|
3746
|
+
{
|
|
3747
|
+
"bridgeCommand": "vfx.control.stop",
|
|
3748
|
+
"group": "vfx",
|
|
3749
|
+
"command": "control.stop",
|
|
3750
|
+
"handler_type": "bridge",
|
|
3751
|
+
"csharp_handler": "present",
|
|
3752
|
+
"destructive": false,
|
|
3753
|
+
"timeout": 30000,
|
|
3754
|
+
"requires_packages": [
|
|
3755
|
+
"com.unity.visualeffectgraph"
|
|
3756
|
+
]
|
|
3757
|
+
},
|
|
3758
|
+
{
|
|
3759
|
+
"bridgeCommand": "vfx.effect.add",
|
|
3760
|
+
"group": "vfx",
|
|
3761
|
+
"command": "effect.add",
|
|
3762
|
+
"handler_type": "bridge",
|
|
3763
|
+
"csharp_handler": "present",
|
|
3764
|
+
"destructive": false,
|
|
3765
|
+
"timeout": 30000,
|
|
3766
|
+
"requires_packages": [
|
|
3767
|
+
"com.unity.visualeffectgraph"
|
|
3768
|
+
]
|
|
3769
|
+
},
|
|
3770
|
+
{
|
|
3771
|
+
"bridgeCommand": "vfx.effect.assign",
|
|
3772
|
+
"group": "vfx",
|
|
3773
|
+
"command": "effect.assign",
|
|
3774
|
+
"handler_type": "bridge",
|
|
3775
|
+
"csharp_handler": "present",
|
|
3776
|
+
"destructive": false,
|
|
3777
|
+
"timeout": 30000,
|
|
3778
|
+
"requires_packages": [
|
|
3779
|
+
"com.unity.visualeffectgraph"
|
|
3780
|
+
]
|
|
3781
|
+
},
|
|
3782
|
+
{
|
|
3783
|
+
"bridgeCommand": "vfx.effect.info",
|
|
3784
|
+
"group": "vfx",
|
|
3785
|
+
"command": "effect.info",
|
|
3786
|
+
"handler_type": "bridge",
|
|
3787
|
+
"csharp_handler": "present",
|
|
3788
|
+
"destructive": false,
|
|
3789
|
+
"timeout": 30000,
|
|
3790
|
+
"requires_packages": [
|
|
3791
|
+
"com.unity.visualeffectgraph"
|
|
3792
|
+
]
|
|
3793
|
+
},
|
|
3794
|
+
{
|
|
3795
|
+
"bridgeCommand": "vfx.graph.create",
|
|
3796
|
+
"group": "vfx",
|
|
3797
|
+
"command": "graph.create",
|
|
3798
|
+
"handler_type": "bridge",
|
|
3799
|
+
"csharp_handler": "present",
|
|
3800
|
+
"destructive": true,
|
|
3801
|
+
"timeout": 30000,
|
|
3802
|
+
"requires_packages": [
|
|
3803
|
+
"com.unity.visualeffectgraph"
|
|
3804
|
+
]
|
|
3805
|
+
},
|
|
3806
|
+
{
|
|
3807
|
+
"bridgeCommand": "vfx.graph.info",
|
|
3808
|
+
"group": "vfx",
|
|
3809
|
+
"command": "graph.info",
|
|
3810
|
+
"handler_type": "bridge",
|
|
3811
|
+
"csharp_handler": "present",
|
|
3812
|
+
"destructive": false,
|
|
3813
|
+
"timeout": 30000,
|
|
3814
|
+
"requires_packages": [
|
|
3815
|
+
"com.unity.visualeffectgraph"
|
|
3816
|
+
]
|
|
3817
|
+
},
|
|
3818
|
+
{
|
|
3819
|
+
"bridgeCommand": "vfx.line-create",
|
|
3820
|
+
"group": "vfx",
|
|
3821
|
+
"command": "line-create",
|
|
3822
|
+
"handler_type": "bridge",
|
|
3823
|
+
"csharp_handler": "present",
|
|
3824
|
+
"destructive": false,
|
|
3825
|
+
"timeout": 30000
|
|
3826
|
+
},
|
|
3827
|
+
{
|
|
3828
|
+
"bridgeCommand": "vfx.line-positions",
|
|
3829
|
+
"group": "vfx",
|
|
3830
|
+
"command": "line-positions",
|
|
3831
|
+
"handler_type": "bridge",
|
|
3832
|
+
"csharp_handler": "present",
|
|
3833
|
+
"destructive": false,
|
|
3834
|
+
"timeout": 30000
|
|
3835
|
+
},
|
|
3836
|
+
{
|
|
3837
|
+
"bridgeCommand": "vfx.parameter",
|
|
3838
|
+
"group": "vfx",
|
|
3839
|
+
"command": "parameter",
|
|
3840
|
+
"handler_type": "bridge",
|
|
3841
|
+
"csharp_handler": "present",
|
|
3842
|
+
"destructive": false,
|
|
3843
|
+
"timeout": 30000,
|
|
3844
|
+
"requires_packages": [
|
|
3845
|
+
"com.unity.visualeffectgraph"
|
|
3846
|
+
]
|
|
3847
|
+
},
|
|
3848
|
+
{
|
|
3849
|
+
"bridgeCommand": "vfx.particle-create",
|
|
3850
|
+
"group": "vfx",
|
|
3851
|
+
"command": "particle-create",
|
|
3852
|
+
"handler_type": "bridge",
|
|
3853
|
+
"csharp_handler": "present",
|
|
3854
|
+
"destructive": false,
|
|
3855
|
+
"timeout": 30000
|
|
3856
|
+
},
|
|
3857
|
+
{
|
|
3858
|
+
"bridgeCommand": "vfx.particle-emission",
|
|
3859
|
+
"group": "vfx",
|
|
3860
|
+
"command": "particle-emission",
|
|
3861
|
+
"handler_type": "bridge",
|
|
3862
|
+
"csharp_handler": "present",
|
|
3863
|
+
"destructive": false,
|
|
3864
|
+
"timeout": 30000
|
|
3865
|
+
},
|
|
3866
|
+
{
|
|
3867
|
+
"bridgeCommand": "vfx.particle-info",
|
|
3868
|
+
"group": "vfx",
|
|
3869
|
+
"command": "particle-info",
|
|
3870
|
+
"handler_type": "bridge",
|
|
3871
|
+
"csharp_handler": "present",
|
|
3872
|
+
"destructive": false,
|
|
3873
|
+
"timeout": 30000
|
|
3874
|
+
},
|
|
3875
|
+
{
|
|
3876
|
+
"bridgeCommand": "vfx.particle-main",
|
|
3877
|
+
"group": "vfx",
|
|
3878
|
+
"command": "particle-main",
|
|
3879
|
+
"handler_type": "bridge",
|
|
3880
|
+
"csharp_handler": "present",
|
|
3881
|
+
"destructive": false,
|
|
3882
|
+
"timeout": 30000
|
|
3883
|
+
},
|
|
3884
|
+
{
|
|
3885
|
+
"bridgeCommand": "vfx.particle-shape",
|
|
3886
|
+
"group": "vfx",
|
|
3887
|
+
"command": "particle-shape",
|
|
3888
|
+
"handler_type": "bridge",
|
|
3889
|
+
"csharp_handler": "present",
|
|
3890
|
+
"destructive": false,
|
|
3891
|
+
"timeout": 30000
|
|
3892
|
+
},
|
|
3893
|
+
{
|
|
3894
|
+
"bridgeCommand": "vfx.particle.clear",
|
|
3895
|
+
"group": "vfx",
|
|
3896
|
+
"command": "particle.clear",
|
|
3897
|
+
"handler_type": "bridge",
|
|
3898
|
+
"csharp_handler": "present",
|
|
3899
|
+
"destructive": false,
|
|
3900
|
+
"timeout": 30000
|
|
3901
|
+
},
|
|
3902
|
+
{
|
|
3903
|
+
"bridgeCommand": "vfx.particle.pause",
|
|
3904
|
+
"group": "vfx",
|
|
3905
|
+
"command": "particle.pause",
|
|
3906
|
+
"handler_type": "bridge",
|
|
3907
|
+
"csharp_handler": "present",
|
|
3908
|
+
"destructive": false,
|
|
3909
|
+
"timeout": 30000
|
|
3910
|
+
},
|
|
3911
|
+
{
|
|
3912
|
+
"bridgeCommand": "vfx.particle.play",
|
|
3913
|
+
"group": "vfx",
|
|
3914
|
+
"command": "particle.play",
|
|
3915
|
+
"handler_type": "bridge",
|
|
3916
|
+
"csharp_handler": "present",
|
|
3917
|
+
"destructive": false,
|
|
3918
|
+
"timeout": 30000
|
|
3919
|
+
},
|
|
3920
|
+
{
|
|
3921
|
+
"bridgeCommand": "vfx.particle.stop",
|
|
3922
|
+
"group": "vfx",
|
|
3923
|
+
"command": "particle.stop",
|
|
3924
|
+
"handler_type": "bridge",
|
|
3925
|
+
"csharp_handler": "present",
|
|
3926
|
+
"destructive": false,
|
|
3927
|
+
"timeout": 30000
|
|
3928
|
+
},
|
|
3929
|
+
{
|
|
3930
|
+
"bridgeCommand": "vfx.template.create",
|
|
3931
|
+
"group": "vfx",
|
|
3932
|
+
"command": "template.create",
|
|
3933
|
+
"handler_type": "bridge",
|
|
3934
|
+
"csharp_handler": "present",
|
|
3935
|
+
"destructive": true,
|
|
3936
|
+
"timeout": 30000,
|
|
3937
|
+
"requires_packages": [
|
|
3938
|
+
"com.unity.visualeffectgraph"
|
|
3939
|
+
]
|
|
3940
|
+
},
|
|
3941
|
+
{
|
|
3942
|
+
"bridgeCommand": "vfx.template.list",
|
|
3943
|
+
"group": "vfx",
|
|
3944
|
+
"command": "template.list",
|
|
3945
|
+
"handler_type": "bridge",
|
|
3946
|
+
"csharp_handler": "present",
|
|
3947
|
+
"destructive": false,
|
|
3948
|
+
"timeout": 30000,
|
|
3949
|
+
"requires_packages": [
|
|
3950
|
+
"com.unity.visualeffectgraph"
|
|
3951
|
+
]
|
|
3952
|
+
},
|
|
3953
|
+
{
|
|
3954
|
+
"bridgeCommand": "vfx.trail.create",
|
|
3955
|
+
"group": "vfx",
|
|
3956
|
+
"command": "trail.create",
|
|
3957
|
+
"handler_type": "bridge",
|
|
3958
|
+
"csharp_handler": "present",
|
|
3959
|
+
"destructive": false,
|
|
3960
|
+
"timeout": 30000
|
|
3961
|
+
},
|
|
3962
|
+
{
|
|
3963
|
+
"bridgeCommand": "vfx.trail.set",
|
|
3964
|
+
"group": "vfx",
|
|
3965
|
+
"command": "trail.set",
|
|
3966
|
+
"handler_type": "bridge",
|
|
3967
|
+
"csharp_handler": "present",
|
|
3968
|
+
"destructive": false,
|
|
3969
|
+
"timeout": 30000
|
|
3970
|
+
}
|
|
3971
|
+
]
|
|
3972
|
+
}
|