Ejemplo n.º 1
0
        public override void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
        {
            var heightfieldDebugPrimitive = debugPrimitive as HeightfieldDebugPrimitive;

            if (heightfieldDebugPrimitive == null)
            {
                return;
            }

            heightfieldDebugPrimitive.Update(commandList);
        }
Ejemplo n.º 2
0
 public virtual void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
 {
 }