Any thoughts on this, is it good or bad idea and why?
Add “relative” key-tag to nodepath manipulation methods
self.NP.setY(self.NP,3) #this is not too bad
self.myLongAndDescriptivNameForNodePath.setY(self.myLongAndDescriptivNameForNodePath,3)
self.NP.setY("rel",3)
Or maybe even go so far as to use relative as default?
And pass “abs” or render to use global coordinate system? Maybe add configuration option as to not break compatibilty with existing programs?
I skimmed trough some of my code, and it looks like i use relative to self mode more often than not.
EDIT1:
Thought came to me when i wrote code which looks like this:
x = self.myLongAndDescriptiveNameForNodePath
x.setY(x,distance)