Notifications
Clear all

[Closed] Switch To Spline Creation

I know if I type

max create mode

The commandpanel switches from whatever it is to Create mode.

But is there a way through script to go into the “Spline” subcategory instead of “Geometry”?

  • Neil
2 Replies

Hi Neil,
there’s a trick you can use if nothing better is found:


(
	-- starts the creation of a line and switches to Shapes subcategory
	startObjectCreation line
	
	-- switches to another panel to abort line creation
	setCommandPanelTaskMode #modify
	
	-- switches back to creation panel which is still in Shapes subcategory
	setCommandPanelTaskMode #create
)

It’s not the best, but I hope it helps.

  • Enrico

Thanks, startObjectCreation line was exactly what I needed.

  • Neil