123456789101112131415161718192021222324252627282930313233 |
- import WebGLConstants from "../Core/WebGLConstants.js";
- var CullFace = {
-
- FRONT: WebGLConstants.FRONT,
-
- BACK: WebGLConstants.BACK,
-
- FRONT_AND_BACK: WebGLConstants.FRONT_AND_BACK,
- };
- export default Object.freeze(CullFace);
|