Community Tip - Did you know you can set a signature that will be added to all your posts? Set it here! X
Hello,
I am wanting to change the color of my model but don't quite know where to do this in Vuforia Studio? I know Unity allows you to make a Material and then can turn that into any color you want to slap onto the desired model. I was wanting to know how can I change my model color?
Thank You,
Solved! Go to Solution.
Hi @kingsbury ,
One of the ways to change the color of the 3D Model is as follows:
$scope.colorChange = function()
{
$scope.view.wdg['modelItem-1']['color']='rgba(0,0,255,0.3)';
}
Hope this helps!
Hi @kingsbury ,
One of the ways to change the color of the 3D Model is as follows:
$scope.colorChange = function()
{
$scope.view.wdg['modelItem-1']['color']='rgba(0,0,255,0.3)';
}
Hope this helps!
