Skip to content
This repository has been archived by the owner on Aug 21, 2024. It is now read-only.

Commit

Permalink
format
Browse files Browse the repository at this point in the history
  • Loading branch information
HexaField committed Jun 19, 2024
1 parent 4403640 commit fd19c29
Show file tree
Hide file tree
Showing 17 changed files with 46 additions and 46 deletions.
2 changes: 1 addition & 1 deletion packages/client-core/src/world/ClientModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ import { UserUISystem } from '../user/UserUISystem'
import './ClientNetworkModule'

export {
AvatarUISystem,
AvatarSpawnSystem,
AvatarUISystem,
LoadingUISystem,
MediaControlSystem,
UserUISystem,
Expand Down
2 changes: 1 addition & 1 deletion packages/common/src/utils/getEnvironment.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ const isJsDom = () =>
navigator.userAgent.includes('Node.js') ||
navigator.userAgent.includes('jsdom')

export { isBrowser, isWebWorker, isClient, isJsDom }
export { isBrowser, isClient, isJsDom, isWebWorker }

// ==== //

Expand Down
6 changes: 3 additions & 3 deletions packages/editor/src/EditorModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ import { ObjectGridSnapSystem } from './systems/ObjectGridSnapSystem'
import { UploadRequestSystem } from './systems/UploadRequestSystem'

export {
EditorInstanceNetworkingSystem,
EditorControlSystem,
EditorInstanceNetworkingSystem,
GizmoSystem,
HighlightSystem,
ModelHandlingSystem,
ObjectGridSnapSystem,
UploadRequestSystem,
RenderInfoSystem
RenderInfoSystem,
UploadRequestSystem
}
32 changes: 16 additions & 16 deletions packages/editor/src/constants/GizmoPresets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -420,28 +420,28 @@ function setupGizmo(gizmoMap) {
}

export {
gizmoTranslate,
pickerTranslate,
helperTranslate,
GizmoMaterial,
gizmoMaterialProperties,
gizmoPlane,
gizmoRotate,
pickerRotate,
helperRotate,
gizmoScale,
pickerScale,
gizmoTranslate,
helperRotate,
helperScale,
setupGizmo,
GizmoMaterial,
gizmoMaterialProperties,
matInvisible,
helperTranslate,
matBlue,
matBlueTransparent,
matGray,
matGreen,
matGreenTransparent,
matHelper,
matInvisible,
matRed,
matGreen,
matBlue,
matRedTransparent,
matGreenTransparent,
matBlueTransparent,
matWhiteTransparent,
matYellowTransparent,
matGray,
gizmoPlane
pickerRotate,
pickerScale,
pickerTranslate,
setupGizmo
}
2 changes: 1 addition & 1 deletion packages/engine/src/interaction/MediaModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ import { AudioAnalysisSystem } from '../audio/systems/AudioAnalysisSystem'
import { MediaSystem } from '../audio/systems/MediaSystem'
import { PositionalAudioSystem } from '../audio/systems/PositionalAudioSystem'

export { MediaSystem, PositionalAudioSystem, AudioAnalysisSystem }
export { AudioAnalysisSystem, MediaSystem, PositionalAudioSystem }
2 changes: 1 addition & 1 deletion packages/engine/src/mocap/MocapModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Ethereal Engine. All Rights Reserved.
import { MotionCaptureInputSystem } from './MotionCaptureInputSystem'
import { MotionCaptureSystem } from './MotionCaptureSystem'

export { MotionCaptureSystem, MotionCaptureInputSystem }
export { MotionCaptureInputSystem, MotionCaptureSystem }
2 changes: 1 addition & 1 deletion packages/engine/src/scene/SceneModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ export {
EnvironmentSystem,
FogSystem,
MaterialLibrarySystem,
MeshBVHSystem,
MountPointSystem,
NoiseOffsetSystem,
MeshBVHSystem,
ParticleSystem,
PortalSystem,
SceneKillHeightSystem,
Expand Down
2 changes: 1 addition & 1 deletion packages/instanceserver/src/InstanceServerModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ import { MediasoupRecordingSystem } from './MediasoupRecordingSystem'
import { MediasoupServerSystem } from './MediasoupServerSystem'
import { ServerHostNetworkSystem } from './ServerHostNetworkSystem'

export { MediasoupServerSystem, ServerHostNetworkSystem, MediasoupRecordingSystem }
export { MediasoupRecordingSystem, MediasoupServerSystem, ServerHostNetworkSystem }
2 changes: 1 addition & 1 deletion packages/matchmaking/src/functions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,4 +148,4 @@ function deleteTicket(ticketId: string): Promise<void> {
.then((result) => {})
}

export { createTicket, getTicket, deleteTicket, getTicketsAssignment }
export { createTicket, deleteTicket, getTicket, getTicketsAssignment }
10 changes: 5 additions & 5 deletions packages/spatial/src/common/classes/BufferGeometryUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -838,12 +838,12 @@ function computeMorphedAttributes(object) {
}

export {
computeMorphedAttributes,
computeTangents,
mergeBufferGeometries,
mergeBufferAttributes,
interleaveAttributes,
estimateBytesUsed,
interleaveAttributes,
mergeBufferAttributes,
mergeBufferGeometries,
mergeVertices,
toTrianglesDrawMode,
computeMorphedAttributes
toTrianglesDrawMode
}
8 changes: 4 additions & 4 deletions packages/spatial/src/common/functions/MatchesUtils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -119,12 +119,12 @@ const matchesMaterial = matches.guard((m): m is Material => matchesMaterialShape
const matchesMeshMaterial = matches.guard((m): m is Material | Material[] => matchesMeshMaterialShape.test(m))

export {
matchesVector3,
matchesQuaternion,
matchesColor,
matchesGeometry,
matchesMaterial,
matchesMeshMaterial,
matchesMatrix3,
matchesMatrix4,
matchesMatrix3
matchesMeshMaterial,
matchesQuaternion,
matchesVector3
}
2 changes: 1 addition & 1 deletion packages/spatial/src/input/InputModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ Ethereal Engine. All Rights Reserved.
import { ClientInputSystem } from './systems/ClientInputSystem'
import { FlyControlSystem } from './systems/FlyControlSystem'

export { FlyControlSystem, ClientInputSystem }
export { ClientInputSystem, FlyControlSystem }
2 changes: 1 addition & 1 deletion packages/spatial/src/physics/PhysicsModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ import { PhysicsPreTransformSystem } from './systems/PhysicsPreTransformSystem'
import { PhysicsSystem } from './systems/PhysicsSystem'
import { TriggerSystem } from './systems/TriggerSystem'

export { PhysicsSystem, PhysicsPreTransformSystem, TriggerSystem }
export { PhysicsPreTransformSystem, PhysicsSystem, TriggerSystem }
10 changes: 5 additions & 5 deletions packages/spatial/src/renderer/RendererModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,15 +36,15 @@ import { WebGLRendererSystem } from './WebGLRendererSystem'

/** Components */
export {
AmbientLightComponent,
/** Systems */
DebugRendererSystem,
DirectionalLightComponent,
HemisphereLightComponent,
PointLightComponent,
RenderInfoSystem,
SpotLightComponent,
TransformComponent,
XRAnchorComponent,
/** Systems */
DebugRendererSystem,
RenderInfoSystem,
WebGLRendererSystem,
AmbientLightComponent
XRAnchorComponent
}
2 changes: 1 addition & 1 deletion packages/spatial/src/transform/TransformModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ import { SpawnPoseState } from './SpawnPoseState'
import { LookAtSystem } from './systems/LookAtSystem'
import { TransformSystem } from './systems/TransformSystem'

export { SpawnPoseState, TransformSystem, LookAtSystem }
export { LookAtSystem, SpawnPoseState, TransformSystem }
4 changes: 2 additions & 2 deletions packages/spatial/src/xr/XRModule.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,16 +36,16 @@ import { XRScenePlacementShaderSystem } from './XRScenePlacementShaderSystem'
import { XRSystem } from './XRSystem'

export {
XR8System,
XRPersistentAnchorSystem,
VPSSystem,
XR8System,
XRAnchorSystem,
XRCameraInputSystem,
XRCameraUpdateSystem,
XRCameraViewSystem,
XRDetectedMeshSystem,
XRHapticsSystem,
XRLightProbeSystem,
XRPersistentAnchorSystem,
XRScenePlacementShaderSystem,
XRSystem
}
2 changes: 1 addition & 1 deletion packages/ui/src/primitives/tailwind/Table/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -223,4 +223,4 @@ const TablePagination = ({
}

export default Table
export { TableHeaderCell, TableCell, TableRow, TableHeadRow, TableBody, TablePagination, Table }
export { Table, TableBody, TableCell, TableHeadRow, TableHeaderCell, TablePagination, TableRow }

0 comments on commit fd19c29

Please sign in to comment.