本文整理匯總了TypeScript中p2.Body.setDensity方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript Body.setDensity方法的具體用法?TypeScript Body.setDensity怎麽用?TypeScript Body.setDensity使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類p2.Body
的用法示例。
在下文中一共展示了Body.setDensity方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: makeBody
export function makeBody(config: BodyConfig) {
const shapes: p2.Shape[] = config.shapes.map(shape => {
if (shape instanceof Circle) {
return new p2.Circle({
position: shape.center,
radius: shape.radius,
});
} else if (shape instanceof ConvexPolygon) {
const ret = new p2.Convex({
vertices: shape.points,
});
ret.vertices = ret.vertices.map(vertex => [vertex[0] - ret.centerOfMass[0], vertex[1] - ret.centerOfMass[1]]);
ret.position = [ret.position[0] + ret.centerOfMass[0], ret.position[1] + ret.centerOfMass[1]];
ret.updateTriangles();
return ret;
} else {
throw new Error('shape type');
}
});
const {position} = config;
const body = new p2.Body({
mass: 1,
position,
fixedRotation: config.fixedRotation
});
shapes.forEach(shape => body.addShape(shape, shape.position));
body.setDensity(1);
body.adjustCenterOfMass();
return body;
}