If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Exciting News: Chaos acquires EvolveLAB = AI-Powered Design.
To learn more, please visit this page!
New! You can now log in to the forums with your chaos.com account as well as your forum account.
I'm working on an office tower(300 meter height) & Hotel (180m) ...we want to show to the clients a night shot...is there aleatory way to turn on/off lights? (about 1400 lights)
off
--------------------------------
sel = lights as array
for b=1 to sel.count do
if not sel[b].istarget then
(
sel[b].enabled = false
)
else()
-----------------------------------
on
----------------------------------
sel = lights as array
for b=1 to sel.count do
if not sel[b].istarget then
(
sel[b].enabled = true
)
else()
---------------------------------
you can also turn off all the lights in the global switches
Comment