Difference between revisions of "GLTF Overrides"

From Second Life Wiki
Jump to navigation Jump to search
(Add more prominent warning about caveat surrounding texture transforms. Minor formatting changes.)
(Minor formatting tweak.)
Line 25: Line 25:
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.
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.


{{KBwarning|Currently, texture transforms are (destructively) overwritten, meaning that setting an empty string ("") will cause them to revert to their appropriate default values instead, losing the original value. This may change in future.}}
{{KBwarning|Currently, texture transforms are (destructively) overwritten, meaning that setting an empty string ("") will cause them to revert to their appropriate default values instead, losing the original value. <b>This may change in future.</b>}}


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.
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.

Revision as of 08:10, 21 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:

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.

KBwarning.png Warning: Currently, texture transforms are (destructively) overwritten, meaning that setting an empty string ("") will cause them to revert to their appropriate default values instead, losing the original value. This may change in future.

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.