當前位置: 首頁>>代碼示例>>TypeScript>>正文


TypeScript Body.setDensity方法代碼示例

本文整理匯總了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;
}
開發者ID:sbj42,項目名稱:sbj42.github.io,代碼行數:31,代碼來源:sprite.ts


注:本文中的p2.Body.setDensity方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。