Chaos Corona Forum

Chaos Corona for 3ds Max => [Max] Feature Requests => [Max] Resolved Feature Requests => Topic started by: harumscarum on 2017-10-12, 15:52:30

Title: Corona Proxy Viewport Display mode toggle
Post by: harumscarum on 2017-10-12, 15:52:30
Would appreciate for single hotkey (toggle) solution to switch between PointCloud and FullMesh viewport display methods for multiple selected Corona Proxies

Also PointCloud mode is missing small plane at the bottom of CoronaProxy so it clearly visible where is its bottom is (useful when manually placing objects on the surface)
Title: Re: Corona Proxy Viewport Display mode toggle
Post by: Njen on 2017-10-13, 11:15:22
Turn these two maxscripts into buttons:

Pointcloud:
Code: [Select]
for o in selection where ClassOf o == CProxy do
(
o.previzType = 2
)

Full mesh:
Code: [Select]
for o in selection where ClassOf o == CProxy do
(
o.previzType = 3
o.cacheInRam = on
)
Title: Re: Corona Proxy Viewport Display mode toggle
Post by: harumscarum on 2017-10-13, 12:02:09
thanks!
is it possible to make it toggle so only one hotkey would be necessary?

if multiple FullMesh and PointCloud selected it will switch it all to PointCloud
if only FullMesh selected - to PointCloud
if PoinCloud selected - to FullMesh

thanks again

Title: Re: Corona Proxy Viewport Display mode toggle
Post by: maru on 2018-10-22, 16:15:13
Does not sound feasible from the UI perspective. (especially for multiple selections)
Will be probably added through Proxy Lister.
May have some workarounds.
Title: Re: Corona Proxy Viewport Display mode toggle
Post by: bencehrotko on 2019-02-28, 16:37:14
Will be probably added through Proxy Lister.

Hey,

Any news on if this will make it to version 4 maybe?