Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                

cl gltf

2.0.0

A library to parse and serialize the glTF file format.

About cl-gltf

This library implements the glTF file format both for parsing and serialising, as well as several extensions to the specification. glTF is a pretty good format for 3D scene interchange and delivery.

How To

For the purposes of this tutorial we'll assume the package org.shirakumo.fraf.gltf has the local nickname gltf. After loading the library, you can parse a glTF or GLB file as follows:

(gltf:with-gltf (gltf #p"my-model.gltf")
  (describe gltf))

describe will emit the full structure of the parsed glTF file. From there you can use the accessors from this package to traverse the structures and convert the information as you need.

Of particular importance are the accessors, which provide a convenient way to parse out the information from the raw underlying byte buffers that they index into. An accessor is a sequence, so you can simply use length and elt to traverse the data.

However, note that cl-gltf makes no assumptions about a math library or anything of the sort, so by default it will parse the data out to vectors of the respective element type (usually floats). That buffer will also be shared between elt calls to avoid excessive consing. Thus, if you are just copying the data out of the buffers to another place, this should be ideal.

However, if you would like to customise the way the data is read out, such as to convert it into other structures automatically, you can do so. Either set the element-reader function on the accessor, or provide a specialised method on the construct-element-reader function. See the respective docstrings for more info.

Supported Extensions

The following official extension specs are explicitly supported:

  • AGI_articulations

  • EXT_lights_image_based

  • KHR_lights_punctual

  • KHR_collision_shapes

  • KHR_rigid_bodies

  • MSFT_lod

  • MSFT_packing_occlusionRoughnessMetallic

System Information

2.0.0
Yukari Hafner
zlib

Definition Index

  • ORG.SHIRAKUMO.FRAF.GLTF

      No documentation provided.
      • EXTERNAL CLASS

        GLTF

            Source
            Base of a GLTF file's representation.
            
            A GLTF instance is a collection of subobjects, which may nest and
            refer to each other.
            
            Once you are done, you **must** call CLOSE on the instance to ensure
            backing buffers and other associated resources are properly freed.
            
            See PARSE
            See WITH-GLTF
            See GLTF-ELEMENT
            See URI
            See BUFFERS
            See BUFFER-VIEWS
            See ACCESSORS
            See ASSET
            See CAMERAS
            See MESHES
            See IMAGES
            See SAMPLERS
            See TEXTURES
            See MATERIALS
            See SKINS
            See NODES
            See ANIMATIONS
            See SCENES
          • EXTERNAL CLASS

            LIGHT

                Source
                No documentation provided.
              • EXTERNAL CLASS

                NODE

                    Source
                    Represents a node in the scene graph.
                    
                    A node may have transformation information associated with it, as well
                    as several child nodes or a mesh. A node may also not have any
                    children or meshes, such as in the case of bones or cameras.
                    
                    See CAMERA
                    See PARENT
                    See CHILDREN
                    See SKIN
                    See MESH
                    See MATRIX
                    See ROTATION
                    See SCALE
                    See TRANSLATION
                    See WEIGHTS
                  • EXTERNAL CLASS

                    SHAPE

                        Source
                        No documentation provided.
                      • EXTERNAL FUNCTION

                        MERGE-BUFFERS

                          • GLTF
                          Source
                          Reduces buffers to a single STATIC-BUFFERS.
                          
                          If the glTF already has no or a single buffer, no changes are made.
                          Otherwise buffers are merged to one and all buffer views are adjusted
                          to point to the new buffer.
                          
                          Returns the modified glTF.
                          
                          See SERIALIZE
                        • EXTERNAL FUNCTION

                          PARSE

                            • FILE
                            • &KEY
                            • START
                            • END
                            • MMAP
                            Source
                            Parses a glTF file and returns the constructed GLTF instance.
                            
                            This function can parse glTF files in both textual glTF format with
                            external buffers, glTF format with embedded buffers, and GLB binary
                            format from files, strings, and streams.
                            
                            Note: you **must** call CLOSE on the glTF file or its individual
                            buffers when you are done with the file. Failing to do so will cause
                            file descriptors or other resources to stay allocated indefinitely. It
                            is therefore strongly recommended that you use WITH-GLTF to handle the
                            resource cleanup safely.
                            
                            Consequently, any access to BUFFERs, BUFFER-VIEWs, or ACCESSORs after
                            CLOSE has been called on the GLTF instance or the respective
                            underlying buffer leads to undefined behaviour. DON'T DO IT.
                            
                            See WITH-GLTF
                            See GLTF (type)
                          • EXTERNAL FUNCTION

                            SERIALIZE

                              • GLTF
                              • FILE
                              • &REST
                              • ARGS
                              • &KEY
                              • IF-EXISTS
                              • UPDATE-ASSET-GENERATOR
                              Source
                              Serialize a glTF object to a file.
                              
                              This function can serialize glTF files both in textual glTF format
                              with external buffers, glTF format with embedded buffers, and GLB
                              binary format to files and file streams.
                              
                              NOTE: when serialising a file with multiple buffers to a GLB file,
                              this function will call MERGE-BUFFERS for you, which modifies the glTF
                              structure.
                              
                              You may want to call one of NORMALIZE-BUFFERS, MERGE-BUFFERS,
                              URLIFY-BUFFERS prior to calling SERIALIZE to consolidate the buffers
                              to suit the format you want. For instance, if you want to create a
                              single text JSON file, you should use URLIFY-BUFFERS. If you want to
                              create a single JSON+DATA file, you should call MERGE-BUFFERS. If you
                              want to avoid having any data stored in the JSON, you should call
                              NORMALIZE-BUFFERS.
                              
                              If UPDATE-ASSET-GENERATOR is true, the GENERATOR field in the ASSET of
                              the glTF is updated to reflect this library as the generator.
                              
                              See MERGE-BUFFERS
                              See NORMALIZE-BUFFERS
                              See URLIFY-BUFFERS
                            • EXTERNAL GENERIC-FUNCTION

                              ACCESSORS

                                • OBJECT
                                Accesses the array of accessor objects.
                                
                                See ACCESSOR
                                See GLTF
                              • EXTERNAL GENERIC-FUNCTION

                                (SETF ACCESSORS)

                                  • NEW-VALUE
                                  • OBJECT
                                  No documentation provided.
                                • EXTERNAL GENERIC-FUNCTION

                                  ALBEDO

                                    • OBJECT
                                    Accesses the texture-info for the albedo channel of the material.
                                    
                                    See TEXTURE-INFO
                                    See PBR
                                  • EXTERNAL GENERIC-FUNCTION

                                    (SETF ALBEDO)

                                      • NEW-VALUE
                                      • OBJECT
                                      No documentation provided.
                                    • EXTERNAL GENERIC-FUNCTION

                                      ALBEDO-FACTOR

                                        • OBJECT
                                        Accesses the albedo-factor for the material.
                                        
                                        This should be an array of four float values representing the
                                        per-channel strength factors.
                                        
                                        See PBR
                                      • EXTERNAL GENERIC-FUNCTION

                                        ALPHA-CUTOFF

                                          • OBJECT
                                          Accesses the alpha cutoff value when the material is in mask mode.
                                          
                                          See MATERIAL
                                        • EXTERNAL GENERIC-FUNCTION

                                          ALPHA-MODE

                                            • OBJECT
                                            Accesses the alpha-blending mode of the material.
                                            
                                            Can be one of the following:
                                              :OPAQUE
                                              :MASK
                                              :BLEND
                                            
                                            See MATERIAL
                                          • EXTERNAL GENERIC-FUNCTION

                                            (SETF ALPHA-MODE)

                                              • NEW-VALUE
                                              • OBJECT
                                              No documentation provided.
                                            • EXTERNAL GENERIC-FUNCTION

                                              ANGULAR-AXES

                                                • OBJECT
                                                No documentation provided.
                                              • EXTERNAL GENERIC-FUNCTION

                                                (SETF ANIMATIONS)

                                                  • NEW-VALUE
                                                  • OBJECT
                                                  No documentation provided.
                                                • EXTERNAL GENERIC-FUNCTION

                                                  ARTICULATIONS

                                                    • OBJECT
                                                    No documentation provided.
                                                  • EXTERNAL GENERIC-FUNCTION

                                                    ASSET

                                                      • OBJECT
                                                      Accesses the asset object.
                                                      
                                                      See ASSET
                                                      See GLTF
                                                    • EXTERNAL GENERIC-FUNCTION

                                                      (SETF ASSET)

                                                        • NEW-VALUE
                                                        • OBJECT
                                                        No documentation provided.
                                                      • EXTERNAL GENERIC-FUNCTION

                                                        ATTRIBUTES

                                                          • OBJECT
                                                          Accesses the hash table of mesh attributes.
                                                          
                                                          The values are ACCESSORs
                                                          The keys are keywords, out of:
                                                            :POSITION
                                                            :NORMAL
                                                            :TANGENT
                                                            :TEXCOORD_0 ...
                                                            :COLOR_0 ...
                                                            :JOINTS_0 ...
                                                            :WEIGHTS_0 ...
                                                          
                                                          See ACCESSOR
                                                          See MESH-PRIMITIVE
                                                        • EXTERNAL GENERIC-FUNCTION

                                                          (SETF ATTRIBUTES)

                                                            • NEW-VALUE
                                                            • OBJECT
                                                            No documentation provided.
                                                          • EXTERNAL GENERIC-FUNCTION

                                                            BUFFER

                                                              • OBJECT
                                                              Returns the buffer indexed into by the buffer-view.
                                                              
                                                              See BUFFER
                                                              See BUFFER-VIEW
                                                            • EXTERNAL GENERIC-FUNCTION

                                                              (SETF BUFFER)

                                                                • NEW-VALUE
                                                                • OBJECT
                                                                No documentation provided.
                                                              • EXTERNAL GENERIC-FUNCTION

                                                                BUFFER-VIEW

                                                                  • OBJECT
                                                                  Returns the buffer-view this accessor indexes into.
                                                                  
                                                                  See ACCESSOR
                                                                • EXTERNAL GENERIC-FUNCTION

                                                                  (SETF BUFFER-VIEW)

                                                                    • NEW-VALUE
                                                                    • OBJECT
                                                                    No documentation provided.
                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                    BUFFERS

                                                                      • OBJECT
                                                                      Accesses the array of buffer objects.
                                                                      
                                                                      See GLTF
                                                                      See BUFFER
                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                      (SETF BUFFERS)

                                                                        • NEW-VALUE
                                                                        • OBJECT
                                                                        No documentation provided.
                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                        (SETF BYTE-LENGTH)

                                                                          • NEW-VALUE
                                                                          • OBJECT
                                                                          No documentation provided.
                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                          (SETF BYTE-OFFSET)

                                                                            • NEW-VALUE
                                                                            • OBJECT
                                                                            No documentation provided.
                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                            BYTE-STRIDE

                                                                              • OBJECT
                                                                              Returns the number of bytes between valid elements in the buffer.
                                                                              
                                                                              Note that this may be NIL.
                                                                              
                                                                              See ACCESSOR
                                                                              See BUFFER-VIEW
                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                              (SETF BYTE-STRIDE)

                                                                                • NEW-VALUE
                                                                                • OBJECT
                                                                                No documentation provided.
                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                CAMERA

                                                                                  • OBJECT
                                                                                  Accesses the camera attached to the node.
                                                                                  
                                                                                  See CAMERA
                                                                                  See NODE
                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                  (SETF CAMERA)

                                                                                    • NEW-VALUE
                                                                                    • OBJECT
                                                                                    No documentation provided.
                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                    CAMERAS

                                                                                      • OBJECT
                                                                                      Accesses the array of camera objects.
                                                                                      
                                                                                      See CAMERA
                                                                                      See GLTF
                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                      (SETF CAMERAS)

                                                                                        • NEW-VALUE
                                                                                        • OBJECT
                                                                                        No documentation provided.
                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                        CENTER-OF-MASS

                                                                                          • OBJECT
                                                                                          No documentation provided.
                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                          (SETF CHANNELS)

                                                                                            • NEW-VALUE
                                                                                            • OBJECT
                                                                                            No documentation provided.
                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                            CHILDREN

                                                                                              • OBJECT
                                                                                              Accesses the array of child nodes.
                                                                                              
                                                                                              See NODE
                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                              (SETF CHILDREN)

                                                                                                • NEW-VALUE
                                                                                                • OBJECT
                                                                                                No documentation provided.
                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                COLLIDER

                                                                                                  • OBJECT
                                                                                                  No documentation provided.
                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                  (SETF COLLIDER)

                                                                                                    • NEW-VALUE
                                                                                                    • OBJECT
                                                                                                    No documentation provided.
                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                    COLOR

                                                                                                      • OBJECT
                                                                                                      No documentation provided.
                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                      (SETF COLOR)

                                                                                                        • NEW-VALUE
                                                                                                        • OBJECT
                                                                                                        No documentation provided.
                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                        COMPONENT-TYPE

                                                                                                          • OBJECT
                                                                                                          Returns the compound component type this accessor reads.
                                                                                                          
                                                                                                          Barring extensions, this can be one of:
                                                                                                            :SCALAR
                                                                                                            :VEC2
                                                                                                            :VEC3
                                                                                                            :VEC4
                                                                                                            :MAT2
                                                                                                            :MAT3
                                                                                                            :MAT4
                                                                                                          
                                                                                                          See ACCESSOR
                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                          CONNECTED-NODE

                                                                                                            • OBJECT
                                                                                                            No documentation provided.
                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                            CONSTRUCT-ELEMENT-READER

                                                                                                              • ELEMENT-TYPE
                                                                                                              • COMPONENT-TYPE
                                                                                                              Construct a reader function for the given element.
                                                                                                              
                                                                                                              ELEMENT-TYPE can be (barring extensions) one of the following:
                                                                                                                :SCALAR
                                                                                                                :VEC2
                                                                                                                :VEC3
                                                                                                                :VEC4
                                                                                                                :MAT2
                                                                                                                :MAT3
                                                                                                                :MAT4
                                                                                                              
                                                                                                              COMPONENT-TYPE can be (barring extensions) one of the following:
                                                                                                                :INT8
                                                                                                                :UINT8
                                                                                                                :INT16
                                                                                                                :UINT16
                                                                                                                :INT32
                                                                                                                :UINT32
                                                                                                                :INT64
                                                                                                                :UINT64
                                                                                                                :FLOAT
                                                                                                                :DOUBLE
                                                                                                              
                                                                                                              This function should return a function of one argument, a
                                                                                                              CFFI:FOREIGN-POINTER, and two return values: the read value at the
                                                                                                              pointer and a pointer to the memory region immediately following the
                                                                                                              read element.
                                                                                                              
                                                                                                              See ACCESSOR (type)
                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                              CONSTRUCT-ELEMENT-WRITER

                                                                                                                • ELEMENT-TYPE
                                                                                                                • COMPONENT-TYPE
                                                                                                                Construct a reader function for the given element.
                                                                                                                
                                                                                                                ELEMENT-TYPE can be (barring extensions) one of the following:
                                                                                                                  :SCALAR
                                                                                                                  :VEC2
                                                                                                                  :VEC3
                                                                                                                  :VEC4
                                                                                                                  :MAT2
                                                                                                                  :MAT3
                                                                                                                  :MAT4
                                                                                                                
                                                                                                                COMPONENT-TYPE can be (barring extensions) one of the following:
                                                                                                                  :INT8
                                                                                                                  :UINT8
                                                                                                                  :INT16
                                                                                                                  :UINT16
                                                                                                                  :INT32
                                                                                                                  :UINT32
                                                                                                                  :INT64
                                                                                                                  :UINT64
                                                                                                                  :FLOAT
                                                                                                                  :DOUBLE
                                                                                                                
                                                                                                                This function should return a function of two arguments: the value to
                                                                                                                write and a CFFI:FOREIGN-POINTER, and one return value: a pointer to
                                                                                                                the memory region immediately following the read element.
                                                                                                                
                                                                                                                See ACCESSOR (type)
                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                COPYRIGHT

                                                                                                                  • OBJECT
                                                                                                                  Accesses a string noting the copyright information.
                                                                                                                  
                                                                                                                  See ASSET
                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                  (SETF COPYRIGHT)

                                                                                                                    • NEW-VALUE
                                                                                                                    • OBJECT
                                                                                                                    No documentation provided.
                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                    DOUBLE-SIDED-P

                                                                                                                      • OBJECT
                                                                                                                      Accesses whether the material should be double-sided or not.
                                                                                                                      
                                                                                                                      See MATERIAL
                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                      ELEMENT-READER

                                                                                                                        • ELEMENT-TYPE
                                                                                                                        Source
                                                                                                                        Accesses the function used to read out values from the underlying buffer memory.
                                                                                                                        
                                                                                                                        Unless manually set, this function is computed by calling
                                                                                                                        CONSTRUCT-ELEMENT-READER using the accessor's component-type and
                                                                                                                        element-type.
                                                                                                                        
                                                                                                                        See CONSTRUCT-ELEMENT-READER
                                                                                                                        See ACCESSOR
                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                        ELEMENT-TYPE

                                                                                                                          • OBJECT
                                                                                                                          Returns the underlying type of values read by the accessor for each compound value.
                                                                                                                          
                                                                                                                          Barring extensions, this can be one of:
                                                                                                                            :INT8
                                                                                                                            :UINT8
                                                                                                                            :INT16
                                                                                                                            :UINT16
                                                                                                                            :INT32
                                                                                                                            :UINT32
                                                                                                                            :INT64
                                                                                                                            :UINT64
                                                                                                                            :FLOAT
                                                                                                                            :DOUBLE
                                                                                                                          
                                                                                                                          See ACCESSOR
                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                          ELEMENT-WRITER

                                                                                                                            • ELEMENT-TYPE
                                                                                                                            Source
                                                                                                                            Accesses the function used to write values to the underlying buffer memory.
                                                                                                                            
                                                                                                                            Unless manually set, this function is computed by calling
                                                                                                                            CONSTRUCT-ELEMENT-WRITER using the accessor's component-type and
                                                                                                                            element-type.
                                                                                                                            
                                                                                                                            See CONSTRUCT-ELEMENT-WRITER
                                                                                                                            See ACCESSOR
                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                            EMISSIVE-FACTOR

                                                                                                                              • OBJECT
                                                                                                                              Accesses the emission factor of the emission-map.
                                                                                                                              
                                                                                                                              Should be an array of three floats.
                                                                                                                              
                                                                                                                              See MATERIAL
                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                              (SETF EXTENSIONS)

                                                                                                                                • NEW-VALUE
                                                                                                                                • OBJECT
                                                                                                                                No documentation provided.
                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                EXTRAS

                                                                                                                                  • OBJECT
                                                                                                                                  Accessor to opaque extras blobs.
                                                                                                                                  
                                                                                                                                  See GLTF-ELEMENT
                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                  (SETF EXTRAS)

                                                                                                                                    • NEW-VALUE
                                                                                                                                    • OBJECT
                                                                                                                                    No documentation provided.
                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                    FOV

                                                                                                                                      • OBJECT
                                                                                                                                      Accesses the field of view value of the camera.
                                                                                                                                      
                                                                                                                                      See PERSPECTIVE-CAMERA
                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                      (SETF FOV)

                                                                                                                                        • NEW-VALUE
                                                                                                                                        • OBJECT
                                                                                                                                        No documentation provided.
                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                        GENERATOR

                                                                                                                                          • OBJECT
                                                                                                                                          Accesses a string noting the software used to generate the file.
                                                                                                                                          
                                                                                                                                          See ASSET
                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                          (SETF GENERATOR)

                                                                                                                                            • NEW-VALUE
                                                                                                                                            • OBJECT
                                                                                                                                            No documentation provided.
                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                            GLTF

                                                                                                                                              • OBJECT
                                                                                                                                              Returns the base GLTF instance this element is associated with.
                                                                                                                                              
                                                                                                                                              See GLTF-ELEMENT
                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                              GRAVITY-FACTOR

                                                                                                                                                • OBJECT
                                                                                                                                                No documentation provided.
                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                HEIGHT

                                                                                                                                                  • OBJECT
                                                                                                                                                  No documentation provided.
                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                  (SETF HEIGHT)

                                                                                                                                                    • NEW-VALUE
                                                                                                                                                    • OBJECT
                                                                                                                                                    No documentation provided.
                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                    IDX

                                                                                                                                                      • OBJECT
                                                                                                                                                      Returns the index of the element within its collection.
                                                                                                                                                      
                                                                                                                                                      See INDEXED-ELEMENT
                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                      (SETF IDX)

                                                                                                                                                        • NEW-VALUE
                                                                                                                                                        • OBJECT
                                                                                                                                                        No documentation provided.
                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                        IMAGE-LIGHTS

                                                                                                                                                          • OBJECT
                                                                                                                                                          No documentation provided.
                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                          IMAGES

                                                                                                                                                            • OBJECT
                                                                                                                                                            Accesses the array of image objects.
                                                                                                                                                            
                                                                                                                                                            See IMAGE
                                                                                                                                                            See GLTF
                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                            (SETF IMAGES)

                                                                                                                                                              • NEW-VALUE
                                                                                                                                                              • OBJECT
                                                                                                                                                              No documentation provided.
                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                              (SETF INDICES)

                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                • OBJECT
                                                                                                                                                                No documentation provided.
                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                INITIAL-VALUE

                                                                                                                                                                  • OBJECT
                                                                                                                                                                  No documentation provided.
                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                  INNER-ANGLE

                                                                                                                                                                    • OBJECT
                                                                                                                                                                    No documentation provided.
                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                    (SETF INNER-ANGLE)

                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                      • OBJECT
                                                                                                                                                                      No documentation provided.
                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                      (SETF INPUT)

                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                        • OBJECT
                                                                                                                                                                        No documentation provided.
                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                        INTENSITY

                                                                                                                                                                          • OBJECT
                                                                                                                                                                          No documentation provided.
                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                          (SETF INTENSITY)

                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                            • OBJECT
                                                                                                                                                                            No documentation provided.
                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                            INTERPOLATION

                                                                                                                                                                              • OBJECT
                                                                                                                                                                              Accesses to the interpolation type of the animation sampler.
                                                                                                                                                                              
                                                                                                                                                                              Can be one of the following:
                                                                                                                                                                                :STEP
                                                                                                                                                                                :LINEAR
                                                                                                                                                                                :CUBICSPLINE
                                                                                                                                                                              
                                                                                                                                                                              See ANIMATION-SAMPLER
                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                              JOINT-LIMITS

                                                                                                                                                                                • OBJECT
                                                                                                                                                                                No documentation provided.
                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                JOINTS

                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                  Accesses the array of nodes used as joints for the skin.
                                                                                                                                                                                  
                                                                                                                                                                                  See NODE
                                                                                                                                                                                  See SKIN
                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                  (SETF JOINTS)

                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                    KIND

                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                      (SETF KIND)

                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                        KINEMATIC-P

                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                          (SETF KINEMATIC-P)

                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                            LIGHT

                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                              (SETF LIGHT)

                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                LIGHTS

                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                  (SETF LIGHTS)

                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                    LINEAR-AXES

                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                      (SETF LINEAR-AXES)

                                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                        LINEAR-VELOCITY

                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                          LODS

                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                            (SETF LODS)

                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                              MAG-FILTER

                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                Accesses to the magnification filter of the sampler.
                                                                                                                                                                                                                
                                                                                                                                                                                                                Can be one of the following:
                                                                                                                                                                                                                  :NEAREST
                                                                                                                                                                                                                  :LINEAR
                                                                                                                                                                                                                
                                                                                                                                                                                                                See SAMPLER
                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                (SETF MAG-FILTER)

                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                  MASS

                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                    (SETF MASS)

                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                      (SETF MATERIAL)

                                                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                        MATERIALS

                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                          Accesses the array of material objects.
                                                                                                                                                                                                                          
                                                                                                                                                                                                                          See MATERIAL
                                                                                                                                                                                                                          See GLTF
                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                          (SETF MATERIALS)

                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                            MATRIX

                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                              Accesses the transformation matrix attached to the node.
                                                                                                                                                                                                                              
                                                                                                                                                                                                                              The matrix should be a 16-element float array representing the 4x4
                                                                                                                                                                                                                              matrix.
                                                                                                                                                                                                                              
                                                                                                                                                                                                                              See NODE
                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                              (SETF MATRIX)

                                                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                MAXIMUM

                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                  Returns a representation of the maximal value of any values this accessor may read.
                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                  This is typically either a single scalar value or an array of values.
                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                  See ACCESSOR
                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                  (SETF MAXIMUM)

                                                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                    MAXIMUM-VALUE

                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                      MESH

                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                        Accesses the mesh attached to the node.
                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                        See MESH
                                                                                                                                                                                                                                        See NODE
                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                        (SETF MESH)

                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                          MESHES

                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                            Accesses the array of mesh objects.
                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                            See MESH
                                                                                                                                                                                                                                            See GLTF
                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                            (SETF MESHES)

                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                              METALLIC-FACTOR

                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                Accesses the metalness-factor for the material.
                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                See PBR
                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                MIME-TYPE

                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                  Accesses to the string mime-type of the image.
                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                  Should be either:
                                                                                                                                                                                                                                                    "image/jpeg"
                                                                                                                                                                                                                                                    "image/png"
                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                  See IMAGE
                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                  (SETF MIME-TYPE)

                                                                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                    MIN-FILTER

                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                      Accesses to the minification filter of the sampler.
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      Can be one of the following:
                                                                                                                                                                                                                                                        :NEAREST
                                                                                                                                                                                                                                                        :LINEAR
                                                                                                                                                                                                                                                        :NEAREST-MIPMAP-NEAREST
                                                                                                                                                                                                                                                        :LINEAR-MIPMAP-NEAREST
                                                                                                                                                                                                                                                        :NEAREST-MIPMAP-LINEAR
                                                                                                                                                                                                                                                        :LINEAR-MIPMAP-LINEAR
                                                                                                                                                                                                                                                      
                                                                                                                                                                                                                                                      See SAMPLER
                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                      (SETF MIN-FILTER)

                                                                                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                        MIN-VERSION

                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                          Accesses a string specifying the minimum version required to parse the file successfully.
                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                          See ASSET
                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                          (SETF MIN-VERSION)

                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                            MINIMUM

                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                              Returns a representation of the minimal value of any values this accessor may read.
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              This is typically either a single scalar value or an array of values.
                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                              See ACCESSOR
                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                              (SETF MINIMUM)

                                                                                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                MINIMUM-VALUE

                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                  MODE

                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                    Accesses the "mode" of the vertices in the mesh.
                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                    Can be one of the following:
                                                                                                                                                                                                                                                                      :POINTS
                                                                                                                                                                                                                                                                      :LINES
                                                                                                                                                                                                                                                                      :LINE-LOOP
                                                                                                                                                                                                                                                                      :LINE-STRIP
                                                                                                                                                                                                                                                                      :TRIANGLES
                                                                                                                                                                                                                                                                      :TRIANGLE-STRIP
                                                                                                                                                                                                                                                                      :TRIANGLE-FAN
                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                    See MESH-PRIMITIVE
                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                    (SETF MODE)

                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                      NAME

                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                        Accesses the name of the element. May be NIL or a STRING.
                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                        See NAMED-ELEMENT
                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                        (SETF NAME)

                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                          (SETF NODE)

                                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                            NODES

                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                              Accesses the array of node objects.
                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                              See NODE
                                                                                                                                                                                                                                                                              See SCENE
                                                                                                                                                                                                                                                                              See GLTF
                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                              (SETF NODES)

                                                                                                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                NORMALIZED

                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                  Returns whether the values in the buffer are normalized or not.
                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                  See ACCESSOR
                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                  (SETF NORMALIZED)

                                                                                                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                    OUTER-ANGLE

                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                      (SETF OUTER-ANGLE)

                                                                                                                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                        (SETF OUTPUT)

                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                          PARENT

                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                            Accesses the parent of the node.
                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                            See NODE
                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                            (SETF PARENT)

                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                              PATH

                                                                                                                                                                                                                                                                                                • ELEMENT
                                                                                                                                                                                                                                                                                                Accesses for the property that the channel animates.
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                Can be one of the following:
                                                                                                                                                                                                                                                                                                  :TRANSLATION
                                                                                                                                                                                                                                                                                                  :ROTATION
                                                                                                                                                                                                                                                                                                  :SCALE
                                                                                                                                                                                                                                                                                                  :WEIGHTS
                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                See ANIMATION-CHANNEL
                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                (SETF PATH)

                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                  PBR

                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                    Accesses the PBR material descriptor.
                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                    See PBR
                                                                                                                                                                                                                                                                                                    See MATERIAL
                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                    (SETF PBR)

                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                      PHYSICS-JOINT

                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                        POINTING-VECTOR

                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                          (SETF PRIMITIVES)

                                                                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                            RADIUS

                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                              (SETF RADIUS)

                                                                                                                                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                RADIUS-BOTTOM

                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                  RADIUS-TOP

                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                    (SETF RADIUS-TOP)

                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                      RANGE

                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                        (SETF RANGE)

                                                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                          RESTITUTION

                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                            (SETF RESTITUTION)

                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                              RIGIDBODY

                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                (SETF RIGIDBODY)

                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                  ROTATION

                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                    Accesses the rotation quaternion attached to the node.
                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                    Expressed as a 4-element float array.
                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                    See NODE
                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                    (SETF ROTATION)

                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                      ROUGHNESS-FACTOR

                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                        Accesses the roughness-factor for the material.
                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                        See PBR
                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                        SAMPLER

                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                          Accesses the sampler used for the texture.
                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                          See SAMPLER
                                                                                                                                                                                                                                                                                                                                          See TEXTURE
                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                          (SETF SAMPLER)

                                                                                                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                            (SETF SAMPLERS)

                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                              SCALE

                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                Accesses the scalar applied to each normal of the normal-map texture.
                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                See TEXTURE-INFO
                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                (SETF SCALE)

                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                  SCENES

                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                    Accesses the array of scene objects.
                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                    See SCENE
                                                                                                                                                                                                                                                                                                                                                    See GLTF
                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                    (SETF SCENES)

                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                      SHAPE

                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                        (SETF SHAPE)

                                                                                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                          SHAPES

                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                            (SETF SHAPES)

                                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                              SIZE

                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                Returns the number of elements this accessor may read.
                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                See ACCESSOR
                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                (SETF SIZE)

                                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                  SKELETON

                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                    Accesses the node that represents the root of the skeleton for the skin.
                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                    See NODE
                                                                                                                                                                                                                                                                                                                                                                    See SKIN
                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                    (SETF SKELETON)

                                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                      SKIN

                                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                                        Accesses the skin attached to the node.
                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                        See SKIN
                                                                                                                                                                                                                                                                                                                                                                        See NODE
                                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                        (SETF SKIN)

                                                                                                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                          SKINS

                                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                                            Accesses the array of skin objects.
                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                            See SKIN
                                                                                                                                                                                                                                                                                                                                                                            See GLTF
                                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                            (SETF SKINS)

                                                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                              SOURCE

                                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                Accesses the source image of the texture.
                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                See IMAGE
                                                                                                                                                                                                                                                                                                                                                                                See TEXTURE
                                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                (SETF SOURCE)

                                                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                  SPECULAR-IMAGES

                                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                    SPRING-CONSTANT

                                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                      SPRING-DAMPING

                                                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                        STAGES

                                                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                          (SETF STAGES)

                                                                                                                                                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                            START

                                                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                              Returns a pointer to the start of the memory region represented by the buffer, view, or accessor.
                                                                                                                                                                                                                                                                                                                                                                                              
                                                                                                                                                                                                                                                                                                                                                                                              See BUFFER
                                                                                                                                                                                                                                                                                                                                                                                              See BUFFER-VIEW
                                                                                                                                                                                                                                                                                                                                                                                              See ACCESSOR
                                                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                              STATIC-FRICTION

                                                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                STRENGTH

                                                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                  Accesses the scalar for the strength of the occulsion-map texture.
                                                                                                                                                                                                                                                                                                                                                                                                  
                                                                                                                                                                                                                                                                                                                                                                                                  See TEXTURE-INFO
                                                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                  (SETF STRENGTH)

                                                                                                                                                                                                                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                    (SETF TARGET)

                                                                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                      (SETF TARGETS)

                                                                                                                                                                                                                                                                                                                                                                                                        • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                        TEX-COORD

                                                                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                          Accesses the index of the texture coordinates used for the texture indexing.
                                                                                                                                                                                                                                                                                                                                                                                                          
                                                                                                                                                                                                                                                                                                                                                                                                          See TEXTURE-INFO
                                                                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                          (SETF TEX-COORD)

                                                                                                                                                                                                                                                                                                                                                                                                            • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                            No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                            (SETF TEXTURE)

                                                                                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                              TEXTURES

                                                                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                Accesses the array of texture objects.
                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                See TEXTURE
                                                                                                                                                                                                                                                                                                                                                                                                                See GLTF
                                                                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                (SETF TEXTURES)

                                                                                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                  TRANSLATION

                                                                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                    Accesses the translation of the node.
                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                    Expressed as a 3-element float array.
                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                    See NODE
                                                                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                    (SETF TRANSLATION)

                                                                                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                      TRIGGER

                                                                                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                        No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                        (SETF TRIGGER)

                                                                                                                                                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                          URI

                                                                                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                            Accesses the URI. May be NIL or a STRING.
                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                            See URI-ELEMENT
                                                                                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                            (SETF URI)

                                                                                                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                              VERSION

                                                                                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                Accesses a string noting the version of the glTF format.
                                                                                                                                                                                                                                                                                                                                                                                                                                
                                                                                                                                                                                                                                                                                                                                                                                                                                See ASSET
                                                                                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                (SETF VERSION)

                                                                                                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                  WEIGHTS

                                                                                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                    Accesses the weights of the morph target.
                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                    Expressed as a float array.
                                                                                                                                                                                                                                                                                                                                                                                                                                    
                                                                                                                                                                                                                                                                                                                                                                                                                                    See MESH
                                                                                                                                                                                                                                                                                                                                                                                                                                    See NODE
                                                                                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                    (SETF WEIGHTS)

                                                                                                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                      WRAP-S

                                                                                                                                                                                                                                                                                                                                                                                                                                        • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                        Accesses to the U-wrapping mode of the sampler.
                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                        Can be one of the following:
                                                                                                                                                                                                                                                                                                                                                                                                                                          :CLAMP-TO-EDGE
                                                                                                                                                                                                                                                                                                                                                                                                                                          :MIRRORED-REPEAT
                                                                                                                                                                                                                                                                                                                                                                                                                                          :REPEAT
                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                        See SAMPLER
                                                                                                                                                                                                                                                                                                                                                                                                                                      • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                        (SETF WRAP-S)

                                                                                                                                                                                                                                                                                                                                                                                                                                          • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                          • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                          No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                        • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                          WRAP-T

                                                                                                                                                                                                                                                                                                                                                                                                                                            • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                            Accesses to the V-wrapping mode of the sampler.
                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                            Can be one of the following:
                                                                                                                                                                                                                                                                                                                                                                                                                                              :CLAMP-TO-EDGE
                                                                                                                                                                                                                                                                                                                                                                                                                                              :MIRRORED-REPEAT
                                                                                                                                                                                                                                                                                                                                                                                                                                              :REPEAT
                                                                                                                                                                                                                                                                                                                                                                                                                                            
                                                                                                                                                                                                                                                                                                                                                                                                                                            See SAMPLER
                                                                                                                                                                                                                                                                                                                                                                                                                                          • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                            (SETF WRAP-T)

                                                                                                                                                                                                                                                                                                                                                                                                                                              • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                              • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                              No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                            • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                              (SETF XMAG)

                                                                                                                                                                                                                                                                                                                                                                                                                                                • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                                • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                                No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                              • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                                (SETF YMAG)

                                                                                                                                                                                                                                                                                                                                                                                                                                                  • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                                  No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                                • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                                  (SETF ZFAR)

                                                                                                                                                                                                                                                                                                                                                                                                                                                    • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                                    No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                                  • EXTERNAL GENERIC-FUNCTION

                                                                                                                                                                                                                                                                                                                                                                                                                                                    (SETF ZNEAR)

                                                                                                                                                                                                                                                                                                                                                                                                                                                      • NEW-VALUE
                                                                                                                                                                                                                                                                                                                                                                                                                                                      • OBJECT
                                                                                                                                                                                                                                                                                                                                                                                                                                                      No documentation provided.
                                                                                                                                                                                                                                                                                                                                                                                                                                                    • EXTERNAL MACRO

                                                                                                                                                                                                                                                                                                                                                                                                                                                      WITH-GLTF

                                                                                                                                                                                                                                                                                                                                                                                                                                                          • GLTF
                                                                                                                                                                                                                                                                                                                                                                                                                                                          • FILE
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • &BODY
                                                                                                                                                                                                                                                                                                                                                                                                                                                        • BODY
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Source
                                                                                                                                                                                                                                                                                                                                                                                                                                                        Parses a glTF file and handles cleanup safely.
                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                        GLTF must be a variable to which the GLTF instance is bound within the
                                                                                                                                                                                                                                                                                                                                                                                                                                                        execution of BODY. It is **not** safe to let the GLTF instance escape
                                                                                                                                                                                                                                                                                                                                                                                                                                                        from the body.
                                                                                                                                                                                                                                                                                                                                                                                                                                                        
                                                                                                                                                                                                                                                                                                                                                                                                                                                        See PARSE
                                                                                                                                                                                                                                                                                                                                                                                                                                                        See GLTF (type)