Zero Figure Action SAFE?
RiverSoft Art
Posts: 6,572
I needed a way to quickly zero out the bones and pose controls. Through spelunking around, I found out about:
Since DzZeroFigurePoseAction looks like a normal class, I tried:
var action = new DzZeroFigurePoseAction();
action.executeAction();
This works. My question is, is this doing anything unsafe? (Like creating orphaned controls or something).
Comments
See the Action Trigger sample for the safer way to trigger an action.
-Rob
Thank you very much!