Search found 2 matches

by koiko
Wed May 29, 2019 2:59 pm
Forum: R.U.B.E discussion
Topic: Image resize script using PTM ratio and level building
Replies: 10
Views: 48542

Re: Image resize script using PTM ratio and level building

Why is there no R.U.B.E method to check whether Shift is pressed? There is one for Ctrl and Alt but not Shift. I would expect that Shift + key would allow me to reverse the hook action of pressing the key alone. For example if the hook was about rotating a body would be useful to use Shift to revert...
by koiko
Thu Apr 04, 2019 10:22 pm
Forum: Bug reports
Topic: Broken path after duplicating objects
Replies: 7
Views: 59427

Re: Broken path after duplicating objects

For anyone interested, a workaround for the duplicate(object) bug is the following (supposed that we need to duplicate the first selected object): object[] selectedObjects = getSelectedObjects(); object prototype= selectedObjects[0]; object newObject= addObject(prototype.getFile(), prototype.pos); T...