The formOpacity tag is used as a modifier on the default opacity value of all materials on a bot shape.
This allows bot shapes to be semi-transparent.
A formOpacity value of 1 means that the bot's mesh materials are effectively in their default opacity and transparency state.
A formOpacity value < 1 means that the bot's mesh materials become transparent and that the formOpacity value is used to modify each material's default opacity level.
A formOpacity value of 0 would make the bot invisible.
formOpacity is implemented for all mesh and material based bot shapes, including custom glTF models and the keyboard.
This PR adds support for a new
formOpacity
tag.The
formOpacity
tag is used as a modifier on the default opacity value of all materials on a bot shape. This allows bot shapes to be semi-transparent.formOpacity
value of1
means that the bot's mesh materials are effectively in their default opacity and transparency state.formOpacity
value< 1
means that the bot's mesh materials become transparent and that theformOpacity
value is used to modify each material's default opacity level.formOpacity
value of0
would make the bot invisible.formOpacity
is implemented for all mesh and material based bot shapes, including custom glTF models and the keyboard.