Skip to content

Commit

Permalink
Extract editor logic out of scene
Browse files Browse the repository at this point in the history
adeira-source-id: 731378832a99535c6a4f57253caa6aa8e80a4a86
  • Loading branch information
itsdouges authored and triplex-bot committed Dec 8, 2023
1 parent c2891ae commit 4b435f0
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .changeset/thirty-games-work.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
---
"@triplex/bridge": patch
"@triplex/client": patch
"@triplex/scene": patch
---

Internal refactor.
11 changes: 11 additions & 0 deletions examples/test-fixture/src/geometry/error.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
/**
* Copyright (c) Michael Dougall. All rights reserved.
*
* This source code is licensed under the GPL-3.0 license found in the LICENSE
* file in the root directory of this source tree.
*/
function RenderError() {
throw new Error("Error!");
}

export default RenderError;
13 changes: 13 additions & 0 deletions examples/test-fixture/src/geometry/syntax-error.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/**
* Copyright (c) Michael Dougall. All rights reserved.
*
* This source code is licensed under the GPL-3.0 license found in the LICENSE
* file in the root directory of this source tree.
*/
(function

function SyntaxError() {
return null;
}

export default SyntaxError;

0 comments on commit 4b435f0

Please sign in to comment.