Impressive!
The only immediate issue I’m facing is that when I’m dragging instances around the explorer, I can’t scroll up and down the explorer with the middle mouse wheel (whilst holding down left click on an instance and dragging it). it’s pretty janky/glitchy - probably something to do with the smooth scrolling behaviour?
Already been not-so-secretly daily driving this for the past couple of days, and I have to say - I really like this!
I noticed keybinds get all sorts of messed up while you’re in the Script Editor though - it’s a royal pain in the bum to copy, paste, duplicate or delete scripts while I’m working
Other than that, a big fan of everything going on here! I personally quite like the smooth scrolling, though I do wish it was properly running at my monitor’s native refresh rate - it barely hits 60 FPS on my big screen while scrolling through a large place file due to the amount of UI on the screen.
Known issue, I know the fix, expecting it to be knocked out in January.
Just deployed some pretty dramatic performance fixes. Can you restart Studio until you see the title bar saying Explorer (v0.7)
, and see if that improved anything?
Oh sorry, I mean changing the text size so we can display more content in the explorer list at once.
No, it is more spaced out.
Added the issues that I noticed so far (the last few days). I’m sure that some are already known though.
Thanks to the team behind this!
Unfortunately not. And I guess you get a free error message too! - I have no idea when or why that came up.
This is a game changer to the point I might switch to this.
Awesome for QOL, not much to say here.
I love options!
Thanks for this feedback, we’ll definitely take this into consideration
Does it not look cluttered with everything close to each other?
I personally believe we should be able to customize the spacing for ourselves using the new options menu. (ashvin take notes)
Looks great so far, only issue that I found currently is that the PluginDebugService, is sorted by Name and is not pinned at the top like it was before, so you would always have to scroll down to edit/update your local plugin.
With the Beta:
Without the Beta:
Wow so good it looks and works, way more better.
A fix for this is in flight, should hopefully come tomorrow.
Lots of positives here but PLEASE can we remove the space in incremental names? (Or at least have some option to a separator)
Yes, the choice would be good I think. I want it super close together to make it easier to navigate, if people want them spaced out like this then they can.
What’s the reason behind this?
Easy indexing. It’s better to do workspace.InstanceName
rather than workspace["Instance Name"]
for many people.
Just a minor annoyance of referencing the instance in code (either script or command line):
--With space:
workspace["Part 1"].Anchored = true
--Without space:
workspace.Part1.Anchored = true