1
[Max] I need help! / Re: Faster Triplanar Setup (Script)
« on: 2025-09-10, 11:04:22 »
There is some script that transforms a material to triplear quickly, maps with 10 textures is hell
Having trouble verifying your license? If you are seeing a license verification message or are unable to access your Chaos products, please follow these simple steps to fix sign-in issues. If you have already tried this and are still unable to access your Chaos products, please contact Support.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
global isVantageLinkActive = false --
macroScript StartVantageLink
category:"Corona 12 Update 1 Vantage Live Link"
buttonText:"CVLink" -- Nombre del botón
toolTip:"CoronaVantage"
(
on execute do (
isVantageLinkActive = not isVantageLinkActive
if isVantageLinkActive then (
if Corona != undefined and Corona.CoronaFp != undefined and isProperty Corona.CoronaFp #vantageLiveLink then (
try (
Corona.CoronaFp.vantageLiveLink()
messageBox "Vantage Live Link Started" title:"Corona Vantage"
) catch (
messageBox "Error: Unable to start Vantage Live Link!" title:"Corona Vantage"
)
) else (
messageBox "Error: Vantage Live Link function not found!" title:"Corona Vantage"
isVantageLinkActive = false
)
) else (
messageBox "Vantage Live Link Stopped" title:"Corona Vantage"
)
)
on isChecked return isVantageLinkActive
)