Skip to content

Commit

Permalink
feat(outline): add OutlineManager (#104)
Browse files Browse the repository at this point in the history
Revert "feat(outline): add outlineManager (#97)"
Add outlineManager.
  • Loading branch information
hellmor committed May 6, 2023
1 parent 0fd810d commit 5dff35c
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 2 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -295,6 +295,8 @@ export * from "./gfx/renderJob/post/PostBase"
export * from "./gfx/renderJob/post/SSRPost"
export * from "./gfx/renderJob/post/TAAPost"
export * from "./io/InputSystem"
export * from "./io/OutlineManager"
export * from "./io/OutlinePostData"
export * from "./io/PickFire"
export * from "./io/PickResult"
export * from "./io/RayCastMeshDetail"
Expand Down
5 changes: 4 additions & 1 deletion src/io/OutlineManager.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
import { Object3D, Color, MeshRenderer, outlinePostData } from "@orillusion/core";
import { MeshRenderer } from "../components/renderer/MeshRenderer";
import { Object3D } from "../core/entities/Object3D";
import { Color } from "../math/Color";
import { outlinePostData } from "./OutlinePostData";

/**
* manager of outline effect
Expand Down

0 comments on commit 5dff35c

Please sign in to comment.