forked from mirror/DotRecast
17 lines
405 B
C#
17 lines
405 B
C#
using DotRecast.Core;
|
|
using DotRecast.Recast.Demo.Draw;
|
|
|
|
namespace DotRecast.Recast.Demo.Tools.Gizmos;
|
|
|
|
public class CompositeGizmo : ColliderGizmo {
|
|
|
|
private readonly ColliderGizmo[] gizmos;
|
|
|
|
public CompositeGizmo(params ColliderGizmo[] gizmos) {
|
|
this.gizmos = gizmos;
|
|
}
|
|
|
|
public void render(RecastDebugDraw debugDraw) {
|
|
gizmos.forEach(g => g.render(debugDraw));
|
|
}
|
|
} |