// -------------------------------------------------------------------------------------------------------------------- // // Copyright (c) VRMADA, All rights reserved. // // -------------------------------------------------------------------------------------------------------------------- namespace UltimateXR.Animation.Materials { /// /// The material modes supported by . It can animate the object's instanced material /// or all the objects that share the same material. /// public enum UxrMaterialMode { /// /// Animate this instance of the material only. /// InstanceOnly, /// /// Animate the material, so that all renderers that share the same material are affected too. /// Shared } }