BEPUphysics.BroadPhaseEntries.StaticGroup.StaticGroup C# (CSharp) Méthode

StaticGroup() public méthode

Constructs a new static mesh.
public StaticGroup ( IList collidables ) : System
collidables IList List of collidables in the static group.
Résultat System
        public StaticGroup(IList<Collidable> collidables)
        {
            shape = new StaticGroupShape(collidables, this);
            Events = new ContactEventManager<StaticGroup>();

        }