コード例 #1
0
        public override void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
        {
            var heightfieldDebugPrimitive = debugPrimitive as HeightfieldDebugPrimitive;

            if (heightfieldDebugPrimitive == null)
            {
                return;
            }

            heightfieldDebugPrimitive.Update(commandList);
        }
コード例 #2
0
ファイル: ColliderShape.cs プロジェクト: thintreegames/stride
 public virtual void UpdateDebugPrimitive(CommandList commandList, IDebugPrimitive debugPrimitive)
 {
 }