提交 1e2885f4 编写于 作者: N Nathan Bierema

Fix quotation marks

上级 4120f76a
......@@ -15,7 +15,7 @@ export class Line extends Object3D {
geometry: Geometry | BufferGeometry;
material: Material | Material[];
type: "Line" | "LineLoop" | "LineSegments";
type: 'Line' | 'LineLoop' | 'LineSegments';
isLine: true;
computeLineDistances(): this;
......
......@@ -9,6 +9,6 @@ export class LineLoop extends Line {
material?: Material | Material[]
);
type: "LineLoop";
type: 'LineLoop';
isLineLoop: true;
}
......@@ -19,6 +19,6 @@ export class LineSegments extends Line {
mode?: number
);
type: "LineSegments";
type: 'LineSegments';
isLineSegments: true;
}
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册