Author Topic: Corona Proxy Viewport Display mode toggle  (Read 3926 times)

2017-10-12, 15:52:30

harumscarum

  • Active Users
  • **
  • Posts: 34
    • View Profile
    • ZNAK
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)

2017-10-13, 11:15:22
Reply #1

Njen

  • Active Users
  • **
  • Posts: 557
    • View Profile
    • Cyan Eyed
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
)

2017-10-13, 12:02:09
Reply #2

harumscarum

  • Active Users
  • **
  • Posts: 34
    • View Profile
    • ZNAK
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


2018-10-22, 16:15:13
Reply #3

maru

  • Corona Team
  • Active Users
  • ****
  • Posts: 13657
  • Marcin
    • View Profile
Does not sound feasible from the UI perspective. (especially for multiple selections)
Will be probably added through Proxy Lister.
May have some workarounds.
Marcin Miodek | chaos-corona.com
3D Support Team Lead - Corona | contact us

2019-02-28, 16:37:14
Reply #4

bencehrotko

  • Users
  • *
  • Posts: 3
    • View Profile
Will be probably added through Proxy Lister.

Hey,

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