-
-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
adeira-source-id: 086833770a808423206df9da8a27dc534aee5c6c
- Loading branch information
1 parent
64440d4
commit 204cd07
Showing
5 changed files
with
48 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
--- | ||
"@triplex/server": patch | ||
--- | ||
|
||
Prevent throwing an exception if a component resolves to `any` when resolving | ||
its path. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
--- | ||
"@triplex/client": minor | ||
"@triplex/editor": minor | ||
"@triplex/server": minor | ||
"@triplex/electron": minor | ||
--- | ||
|
||
Add support for SharedBufferArray. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
"@triplex/client": minor | ||
"@triplex/server": minor | ||
"@triplex/electron": minor | ||
--- | ||
|
||
Add `define` variables support. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
/** | ||
* 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. | ||
*/ | ||
export default function Yo() { | ||
return <Home seed="foo" />; | ||
} | ||
|
||
export const Home: React.FC<{ seed: string }> = () => { | ||
return ( | ||
<> | ||
<mesh position={[1.6, 0, -1.7]}> | ||
<boxGeometry /> | ||
<meshStandardMaterial /> | ||
</mesh> | ||
</> | ||
); | ||
}; |