import { Component } from '@serpentity/serpentity'; /** * Stores an up vector. Intended for the camera in the scene. */ export default class Up extends Component { constructor(config) { super(config); this.x = this.x || 0; this.y = this.y || 1; this.z = this.z || 0; } };