Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
fa10f69
Initial implementation
wcandillon May 19, 2026
cf63d0a
:wrench:
wcandillon May 19, 2026
87fb8ac
:wrench:
wcandillon May 19, 2026
e9c0406
:wrenhc:
wcandillon May 19, 2026
69dcd30
:wrench:
wcandillon May 19, 2026
be9b29f
:wrench:
wcandillon May 19, 2026
afd5bdb
Merge branch 'main' into external-texture
wcandillon May 20, 2026
41b6b96
Merge branch 'main' into external-texture
wcandillon May 20, 2026
7c26343
:wrench:
wcandillon May 20, 2026
6f9b11a
:wrench:
wcandillon May 20, 2026
bb74056
:wrench:
wcandillon May 20, 2026
026c2f2
:wrench:
wcandillon May 20, 2026
054f90a
:wrench:
wcandillon May 20, 2026
258710e
Merge branch 'main' into external-texture
wcandillon May 21, 2026
b7cf5ce
:wrench:
wcandillon May 21, 2026
f4db134
:wrench:
wcandillon May 22, 2026
9a283c6
:wrench:
wcandillon May 22, 2026
c7a116f
:wrench:
wcandillon May 22, 2026
34c0ff3
:wrench:
wcandillon May 22, 2026
6e36091
:wrench:
wcandillon May 22, 2026
5de331e
:wrech:
wcandillon May 22, 2026
f9073a2
:wrench:
wcandillon May 22, 2026
2de307b
:wrench:
wcandillon May 22, 2026
3f57926
CameraHelmet: build the env cubemap with THREE.CubeCamera
claude May 22, 2026
3eba2c8
:wrench:
wcandillon May 22, 2026
bd849b6
CameraHelmet: reflect the front cam as a planar screen, not a panorama
claude May 27, 2026
55c8faf
:wrench:
wcandillon May 27, 2026
c0b6f78
:wrench:
wcandillon May 27, 2026
a1b60e1
:wrench:
wcandillon May 27, 2026
1be4efa
Merge branch 'claude/festive-planck-2EOky' into external-texture
wcandillon May 27, 2026
8107d60
Merge branch 'main' into external-texture
wcandillon May 31, 2026
7c66119
:wrench:
wcandillon May 31, 2026
b0ac50c
:wrench:
wcandillon Jun 1, 2026
55a137d
Merge branch 'external-texture' of https://github.com/wcandillon/reac…
wcandillon Jun 1, 2026
f02bfe2
Merge origin/main into external-texture
Copilot Jun 1, 2026
2075e97
:wrench:
wcandillon Jun 1, 2026
f89f708
:wrench:
wcandillon Jun 1, 2026
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 10 additions & 6 deletions apps/example/src/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,9 @@ import { AsyncStarvation } from "./Diagnostics/AsyncStarvation";
import { DeviceLostHang } from "./Diagnostics/DeviceLostHang";
import { StorageBufferVertices } from "./StorageBufferVertices";
import { SharedTextureMemory } from "./SharedTextureMemory";
import { Camera } from "./Camera";
import { ExternalTexture } from "./ExternalTexture";
import { VisionCamera } from "./VisionCamera";
import { ChromeSphere } from "./ChromeSphere";

// The two lines below are needed by three.js
import "fast-text-encoding";
Expand All @@ -48,9 +50,9 @@ const Stack = createStackNavigator<Routes>();

function App() {
const assets = useAssets();
if (assets === null) {
return null;
}
// if (assets === null) {
// return null;
// }
return (
<GestureHandlerRootView style={{ flex: 1 }}>
<NavigationContainer>
Expand Down Expand Up @@ -89,7 +91,7 @@ function App() {
<Stack.Screen name="Particles" component={Particules} />
<Stack.Screen name="Resize" component={Resize} />
<Stack.Screen name="Tests">
{(props) => <Tests {...props} assets={assets} />}
{(props) => (assets ? <Tests {...props} assets={assets} /> : null)}
</Stack.Screen>
<Stack.Screen name="GradientTiles" component={GradientTiles} />
<Stack.Screen name="Reanimated" component={Reanimated} />
Expand All @@ -103,7 +105,9 @@ function App() {
name="SharedTextureMemory"
component={SharedTextureMemory}
/>
<Stack.Screen name="Camera" component={Camera} />
<Stack.Screen name="ExternalTexture" component={ExternalTexture} />
<Stack.Screen name="VisionCamera" component={VisionCamera} />
<Stack.Screen name="ChromeSphere" component={ChromeSphere} />
</Stack.Navigator>
</NavigationContainer>
</GestureHandlerRootView>
Expand Down
60 changes: 0 additions & 60 deletions apps/example/src/Camera/Camera.tsx

This file was deleted.

1 change: 0 additions & 1 deletion apps/example/src/Camera/index.ts

This file was deleted.

Loading
Loading