You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think it would be really convenient if the clipboard was more like an List than just a single object. This would allow the in-game console more flexibility during runtime. For example, instead of doing GameObject thisBarrel = (GameObject)Paste(); we could do something more like GameObject thisBarrel = (GameObject)Paste[0]; To copy an object into a specific spot, maybe you could have the clipboard app allow you to add new items, or remove items, and then select an item to assign before you click the 'Copy Gameobject' button in the Inspector.
The text was updated successfully, but these errors were encountered:
I actually started working on a branch with this feature. I can merge it in 30 minutes or less. It's not the most refined thing in the world, but it should work.
All I have to do is a final test to make sure everything is working.
Describe the new feature or enhancement
I think it would be really convenient if the clipboard was more like an List than just a single object. This would allow the in-game console more flexibility during runtime. For example, instead of doing
GameObject thisBarrel = (GameObject)Paste();
we could do something more likeGameObject thisBarrel = (GameObject)Paste[0];
To copy an object into a specific spot, maybe you could have the clipboard app allow you to add new items, or remove items, and then select an item to assign before you click the 'Copy Gameobject' button in the Inspector.The text was updated successfully, but these errors were encountered: