Ejemplo n.º 1
0
        public static Body createChainShape(World world, Vertices vertices, Vector2 position = new Vector2(), object userData = null)
        {
            var body = createBody(world, position);

            FixtureFactory.attachChainShape(vertices, body, userData);
            return(body);
        }