Difference between revisions of "GLTF Overrides"

From Second Life Wiki
Jump to navigation Jump to search
m
m (removed 'terrain' typo)
Line 2: Line 2:
  |mode=warning
  |mode=warning
  |title_desc=Future feature
  |title_desc=Future feature
  |desc=This function will be supported in the upcoming PBR Terrain project.</b><br/>Currently it will only work in supported testing areas with a supported test viewer.
  |desc=This function will be supported in the upcoming PBR project.</b><br/>Currently it will only work in supported testing areas with a supported test viewer.
  }}
  }}



Revision as of 09:12, 21 November 2023

Emblem-important-red.png Warning! Future feature

This function will be supported in the upcoming PBR project.
Currently it will only work in supported testing areas with a supported test viewer.

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. Currently, setting a texture transform to empty strings ("") will set them to the default value instead.

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.