I’ve been having this issue too. There are a group parts in my place at the same Y Position. Selecting them all, changing the Y Position only, and pressing enter should apply only that one change to the selection. Instead, after doing that, the CFrame of the first part selected is applied to every part in the selection.
Finally! No more CFrameValues or making parts for teleporting objects!
My only suggestion is to add support for this in scripts:
local ExampleCFrame = CFrame.new()
ExampleCFrame.Position = Vector3.new(1,2,3)
Basically how you would do RaycastParams, but you can actually add stuff to the .new() if you choose so.
Also, related to Attributes, when will it be possible to tween attributes? That has been my only complaint with attributes. But Apple Silicon support first please
That would require making CFrames (and thus Vector3s) mutable which isn’t possible.
I think the reason they haven’t added that is because it would be impossible to tell if an attribute exists or an attribute value does just by using :GetAttribute(). There would have to be more instance methods.
To change position of cframes you can simply do:
newCFrame = oldCFrame - oldCFrame.Position + Vector3.new(x, y, z)
Then just replace the Vector3.new(x, y, z) with the position you want
Can you fix it?
Was about to report it also, now let’s hope it will be fixed in the upcoming updates. It even happens when not even changing the values.
Oh my god… it includes… the camera…
OH MY GOD IT INCLUDES THE CAMERA!
Thank you!!! I needed this so much!
You can literally edit the exact camera position via the properties window, save that information to your script and bam, perfect camera angle. No more guessing!
This is a great update. But I would also like to continue to search ‘Position’ and ‘Orientation’, since I’ve been doing that for- I don’t know- 4 years.
UPDATE 11/04/2022:
All bugs reported as of November 4th have been fixed and will be available soon in one of the next updates. Namely:
- searching for “Position” or “Orientation” also shows the respective CFrame property
- selecting multiple instances and editing just some of the values updates only those values and keeps everything else as-is
- selecting multiple instances correctly shows fields where values differ as “empty”
Thank you for your feedback!
@sthaple @M_nzter @GreatGuyBoom @alex_png @kyly1982 @DevJanick @avodey
This comment is comedy gold
This was much needed for the 85 years that I have in ROBLOX
why does this only support the first 6 paramaters? Seems like such an obvious thing to add
ok so “simplicity” is the answer, if we cant have the values shown in their own subcategory can we at least set them in the attribute? i want to port over cframe values that i have to this new system but im unable to as it cuts them down to 6 paramaters.
Can you explain what you mean? The 6 values (3 translation, 3 orientation) are enough to uniquely specify a CFrame. Maybe you’re talking about the 12 numbers stored in the underlying CFrame (3 translation, 9 matrix), but you can still copy values over.
If you have a specific use case and your data is only available with the 12 values, you can use a small script, CFrame.new()
supports a constructor taking 12 values.
The problem is that it lacks compatibility with other Roblox API that return CFrames with the full 12 values, lets say you hypothetically had a process that collected the object space and set that value to an attribute, with the current system that CFrame would break, when it really doesnt need to.
https://gyazo.com/261cbdbf4866957abfc585a434548814 as illustrated by this gif you cant.
Oh, abstraction. My brain is too small for any level of understanding of vector math so… I’ll just take it.
I REALLY LIKE THIS CHANGE! I always wondered why you cant visualize cframes with position and rotation so this is great!
In your gif, it looks like you’re pasting this string [...] -11, -1, 3.67e-11, 5.27e-11
with something I can’t see in the beginning and close to 0 values. What is the string you’re trying to paste?
The widget currently accepts formats with 6 values (3 translation, 3 orientation), only 3 values (translation only, preserves orientation) and identity (a single 0 value), but we can add support for pasting a string of 12 values (3+9 for matrix) if that’s what you’re after. Thanks
yes this is what im reffering to, would make the implemenation complete to me and many others. Thanks!
Amazing update, especially the attributes support was something I needed for a long time. I’m surprised CFrames didn’t get this type of treatment sooner considering how they’re even more important than Vector3s to the engine.