Message 1 of 1
Scripted plugin creates helper with bounding box

Not applicable
07-26-2018
05:40 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report
Hi all,
I'm creating a scripted helper plugin. It generates a point that has the bounding box activated in the viewport. A regular Point helper does not have this. Any ideas why? There are no keys frames associated with the scripted one. Please see the below code for creation and the screenshot has the scripted one (at origin) and a regular Point helper for reference.
Appreciate the help.
plugin helper MyRootNode name:"RootNode" category:"Control Nodes" classID:#(0x5d5ffb99, 0x1f1b102a) extends:Point version:1.0 ( parameters main rollout:AssetRollout ( assetType type:#string default:"" ui:assetTypeEditBox ) function GetAssetType = ( return (this.assetType) ) function SetAssetType assetType = ( this.assetType = assetType ) rollout AssetRollout "Root Node" width:168 height:309 ( edittext assetTypeEditBox "" pos:[1,75] width:162 height:17 ) ) --MyRootNode()