コード例 #1
0
 public void update(Collidable source)
 {
     vertices = source.getPolygonVertices();
     indices = source.getPolygonLineList();
 }
コード例 #2
0
 public ColliderDrawer(Game g, Collidable source)
 {
     game = g;
     vertices = source.getPolygonVertices();
     indices = source.getPolygonLineList();
 }