12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import Check from "../Core/Check.js";
- function Cesium3DTilePassState(options) {
-
- Check.typeOf.object("options", options);
- Check.typeOf.number("options.pass", options.pass);
-
-
- this.pass = options.pass;
-
- this.commandList = options.commandList;
-
- this.camera = options.camera;
-
- this.cullingVolume = options.cullingVolume;
-
- this.ready = false;
- }
- export default Cesium3DTilePassState;
|