Skip to content

Commit 5aa9141

Browse files
Fix path issues
1 parent 665a38d commit 5aa9141

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/Polar/ECS/WorldManager.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { System } from './System';
22
import { Entity } from './Entity';
33
import { Component } from './Component';
44
import { ECSState, ECSLoader, EntityTemplate } from './ECSState';
5-
import { Event, EventHandler, EventCreator } from 'Polar/Events/Event';
5+
import { Event, EventHandler, EventCreator } from '../Events/Event';
66

77
/** Controls and manages the entity component system of a world. */
88
export class WorldManager implements EventHandler, EventCreator {

src/Polar/Renderer/LightRenderer.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { FrameBuffer } from './FrameBuffer';
99
import { Texture2D } from './Texture';
1010
import { RenderBuffer } from './RenderBuffer';
1111
import { Event, EventDispatcher } from '../Events/Event';
12-
import { CanvasResizeEvent } from 'Polar/Events/ApplicationEvent';
12+
import { CanvasResizeEvent } from '../Events/ApplicationEvent';
1313
import * as LightShaderSource from './ShaderSource/LightShaderSource';
1414
import * as MultiplyTextureShaderSource from './ShaderSource/MultiplyTextureShaderSource';
1515

src/Polar/Util/OrthographicCameraController.ts

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ import * as glm from 'gl-matrix';
22
import { OrthographicCamera } from '../Renderer/OrthographicCamera';
33
import { Input } from '../Core/Input';
44
import { Event, EventDispatcher, EventHandler } from '../Events/Event';
5-
import { CanvasResizeEvent } from 'Polar/Events/ApplicationEvent';
6-
import { MouseWheelEvent } from 'Polar/Events/MouseEvent';
5+
import { CanvasResizeEvent } from '../Events/ApplicationEvent';
6+
import { MouseWheelEvent } from '../Events/MouseEvent';
77

88
/** Class which controls the input and control of an orthographic camera. */
99
export class OrthographicCameraController implements EventHandler {

0 commit comments

Comments
 (0)