public override void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
        {
            var heightfieldDebugPrimitive = debugPrimitive as HeightfieldDebugPrimitive;

            if (heightfieldDebugPrimitive == null)
            {
                return;
            }

            heightfieldDebugPrimitive.Update(commandList);
        }
Beispiel #2
0
 public virtual void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
 {
 }