Home Reference Source

scripts/items/wall_floor_item.js

import {WallItem} from './wall_item.js';
/// <reference path="../../lib/three.d.ts" />
/// <reference path="../model/model.ts" />
/// <reference path="wall_item.ts" />
/// <reference path="metadata.ts" />
/** */
export class WallFloorItem extends WallItem
{
	constructor(model, metadata, geometry, material, position, rotation, scale, isgltf=false)
	{
		super(model, metadata, geometry, material, position, rotation, scale, isgltf);
		this.boundToFloor = true;
	}
}