Editor: access to the editor instance from the browser inspector
See original GitHub issueDescription of the problem
It used to be possible to access the editor instance from the chrome inspector by simply typing editor
. This no longer works, I used to use this all the time to edit certain things that couldn’t be changed using UI. editor.selected
for example.
Would simply adding window["editor"] = editor
in the index.html suffice here?
Issue Analytics
- State:
- Created 4 years ago
- Reactions:2
- Comments:7 (5 by maintainers)
Top Results From Across the Web
IAM basic and predefined roles reference - Google Cloud
This page lists all basic and predefined roles for Identity and Access Management (IAM). To learn more about IAM roles, see Roles and...
Read more >How to access one class instance in editor script?
I am trying to create instances of my own event class in inspector via reflection. using UnityEngine; using System.Collections; using System.
Read more >How to Inspect Element: Simple Methods for Editing a Web Page
Open Google Chrome and access a website. In this example, we're using hostinger.com. Right-click anywhere on the website and choose Inspect. Use ...
Read more >How to Edit CSS Using Google Chrome Developer Tools
In this guide, you will learn how to use Google Chrome's Developer Tools to inspect an element, modify CSS, and preview CSS changes...
Read more >How to Use Inspect Element in Chrome, Safari, and Firefox
Right-click any part of the page and choose Inspect Element. Right-clicking a specific page element will open that element in the inspector view ......
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Actually, I do think we should do a
window.editor = editor
(and probablywindow.THREE = THREE
). It’s good to be able to run scripts from the console some times.How’s this? #18349