Difference between revisions of "GLTF Overrides"
(Use template for warning.) |
(Replace script example with more optimized version.) |
||
Line 52: | Line 52: | ||
{ | { | ||
enable = !enable; | enable = !enable; | ||
list toDo; | list toDo; | ||
list transforms = llGetPrimitiveParams([PRIM_GLTF_BASE_COLOR,ALL_SIDES]); //Get transform info for each face. | list transforms = llGetPrimitiveParams([PRIM_GLTF_BASE_COLOR,ALL_SIDES]); //Get transform info for each face. | ||
list repeats = llList2ListSlice(transforms,0,-1,9,1); //Store repeat information for each face in a list | |||
list offsets = llList2ListSlice(transforms,0,-1,9,2); //Same as above, but for offset info. | |||
integer faceCount = llGetLinkNumberOfSides(0); //Get the number of faces in this prim. | integer faceCount = llGetLinkNumberOfSides(0); //Get the number of faces in this prim. | ||
Line 63: | Line 64: | ||
{ | { | ||
//Loop to build out toDo list while preserving transforms of each face. | //Loop to build out toDo list while preserving transforms of each face. | ||
toDo += [PRIM_GLTF_BASE_COLOR, i, "", llList2Vector(repeats,i), llList2Vector(offsets,i), "", ""]; //Start glTF command while preserving existing transforms for active face. | |||
toDo += llList2ListSlice(["",0.5,"", PRIM_GLTF_ALPHA_MODE_BLEND],0,-1,2,enable); //Either set the face to 50% transparent and alpha blending mode, or revert to material defaults, based on the value of enable. | |||
toDo += [PRIM_GLTF_BASE_COLOR, i, "", repeats, offsets, "", ""]; //Start glTF command while preserving existing transforms for active face. | |||
toDo += ["", ""]; //Finish the glTF command, but don't change anything. | toDo += ["", ""]; //Finish the glTF command, but don't change anything. | ||
} | } | ||
llSetLinkPrimitiveParamsFast(0,toDo); //Make the changes. | llSetLinkPrimitiveParamsFast(0,toDo); //Make the changes. | ||
llSay(0, "Making surfaces " + llList2String(["default","transparent"],enable)); | |||
} | } | ||
} | } | ||
</syntaxhighlight> | </syntaxhighlight> |
Revision as of 16:20, 22 December 2023
What are they?
glTF overrides are an implementation detail of PBR materials, which only makes sense when a glTF material is applied to a face of a prim.
A glTF override is a collection of changes applied on top of a glTF material asset, plus texture transforms.
Texture transforms
glTF texture transforms behave differently than their Blinn-Phong counterparts, and instead follow the [KHR_texture_transform spec]. Because of this, texture animations are animated independently of the texture transforms.
Applying a glTF material from LSL
These prim params affect the glTF material on a face:
- PRIM_RENDER_MATERIAL
- PRIM_GLTF_BASE_COLOR
- PRIM_GLTF_NORMAL
- PRIM_GLTF_METALLIC_ROUGHNESS
- PRIM_GLTF_EMISSIVE
When setting PRIM_RENDER_MATERIAL on a face, most of the glTF overrides will be cleared on that face, with the exception of texture transforms (repeats, offsets, and rotation_in_radians).
The rest of these prim params are for glTF overrides. For example, PRIM_GLTF_BASE_COLOR includes the glTF base color property overrides as well as the base color texture transform. Setting nearly any glTF override to the empty string ("") will unset it, causing the property of the underlying glTF material asset to be used instead.
This parameter's arguments are GLTF overrides.
Warning: Setting an argument to the empty string ("") will clear the respective override. GLTF texture transforms are always overrides, so setting them to the empty string ("") will clear them. See this example for a workaround. The SL team is open to feedback on LSL improvements for GLTF. |
Note that it is not possible to read properties of the underlying glTF material asset from scripts. If a property is unset, it will be the empty string ("") when read from a script.
Attempting to set a glTF override when PRIM_RENDER_MATERIAL is NULL_KEY will clear most glTF overrides on that face, with the exceptions of texture transforms.
Permissions
When a no-mod glTF material is applied to a prim face, its glTF overrides cannot be modified, with the exception of texture transforms.
Examples
Set all faces of a prim to 50% transparent, while preserving texture transforms.
integer enable;
default
{
state_entry()
{
llSay(0, "glTF alpha script!");
}
touch_start(integer total_number)
{
enable = !enable;
list toDo;
list transforms = llGetPrimitiveParams([PRIM_GLTF_BASE_COLOR,ALL_SIDES]); //Get transform info for each face.
list repeats = llList2ListSlice(transforms,0,-1,9,1); //Store repeat information for each face in a list
list offsets = llList2ListSlice(transforms,0,-1,9,2); //Same as above, but for offset info.
integer faceCount = llGetLinkNumberOfSides(0); //Get the number of faces in this prim.
integer i;
for(; i < faceCount; ++i) //Act on all faces of this prim.
{
//Loop to build out toDo list while preserving transforms of each face.
toDo += [PRIM_GLTF_BASE_COLOR, i, "", llList2Vector(repeats,i), llList2Vector(offsets,i), "", ""]; //Start glTF command while preserving existing transforms for active face.
toDo += llList2ListSlice(["",0.5,"", PRIM_GLTF_ALPHA_MODE_BLEND],0,-1,2,enable); //Either set the face to 50% transparent and alpha blending mode, or revert to material defaults, based on the value of enable.
toDo += ["", ""]; //Finish the glTF command, but don't change anything.
}
llSetLinkPrimitiveParamsFast(0,toDo); //Make the changes.
llSay(0, "Making surfaces " + llList2String(["default","transparent"],enable));
}
}