Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
634fabf
Node: add `name` property
sunag Sep 9, 2025
153236d
Introduce `backend.getTimestampUID()`
sunag Sep 9, 2025
8be9ab7
Introduce `InspectorBase`
sunag Sep 9, 2025
a0b9b02
Introduce `renderer.getAnimationLoop()`
sunag Sep 9, 2025
afc12da
export InspectorBase
sunag Sep 9, 2025
a71056c
add some node names
sunag Sep 9, 2025
0b61d2f
Add `RendererInspector` for render/compute stats
sunag Sep 9, 2025
2948fb5
Introduce `Inspector`
sunag Sep 9, 2025
238e3cf
revision messages
sunag Sep 9, 2025
5f0501e
add output color transform name
sunag Sep 9, 2025
b2bedca
add inspector for some examples and new info layout
sunag Sep 9, 2025
af7793b
cleanup
sunag Sep 10, 2025
aa8b55d
revision & sync frames - webgpu backend
sunag Sep 11, 2025
a08599f
updates
sunag Sep 12, 2025
ec198b3
revision
sunag Sep 12, 2025
efcd7d4
revision
sunag Sep 12, 2025
e6bd5f4
Update RendererInspector.js
sunag Sep 12, 2025
eb55620
add miscellaneous stats
sunag Sep 13, 2025
370ecfd
cleanup
sunag Sep 13, 2025
024d64a
revision
sunag Sep 13, 2025
ab3c92e
improve interface
sunag Sep 13, 2025
dc91ffe
simplify api
sunag Sep 13, 2025
ec16d54
Update Style.js
sunag Sep 13, 2025
8a42624
Update Style.js
sunag Sep 13, 2025
2b01b2f
Merge branch 'dev' into dev-inspector
sunag Sep 13, 2025
e820e57
rev
sunag Sep 13, 2025
7b687a4
Merge branch 'dev' into dev-inspector
sunag Sep 14, 2025
99fb66a
add Point Light Shadow description
sunag Sep 14, 2025
f677f2d
Update PointShadowNode.js
sunag Sep 14, 2025
c1f843b
rev style
sunag Sep 14, 2025
42a56a5
Update Performance.js
sunag Sep 14, 2025
05883ab
add shadowmap description
sunag Sep 14, 2025
c8fa0a1
Update Style.js
sunag Sep 14, 2025
ffdd599
add calls
sunag Sep 14, 2025
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
90 changes: 90 additions & 0 deletions examples/example.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
* {
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}

body {
margin: 0;
background-color: #000;
overscroll-behavior: none;
overflow: hidden;
height: 100%;
}

a {
text-decoration: none;
color: inherit;
}

#info {
position: fixed;
top: 15px;
left: 15px;
z-index: 1001;

display: grid;
grid-template-columns: 50px auto;
grid-template-rows: auto auto;
column-gap: 10px;
align-items: center;
color: #e0e0e0;
text-shadow: 1px 1px 5px rgba(0, 0, 0, .7);
font: 400 14px 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

#info > a.logo-link {
grid-column: 1;
grid-row: 1 / span 2;
display: block;
width: 50px;
height: 50px;
background: no-repeat center / contain;
background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 226.77 226.77"><g transform="translate(8.964 4.2527)" stroke="%23ffffff" stroke-linecap="butt" stroke-linejoin="round" stroke-width="4" fill="none"><path d="m63.02 200.61-43.213-174.94 173.23 49.874z"/><path d="m106.39 50.612 21.591 87.496-86.567-24.945z"/><path d="m84.91 125.03-10.724-43.465 43.008 12.346z"/><path d="m63.458 38.153 10.724 43.465-43.008-12.346z"/><path d="m149.47 62.93 10.724 43.465-43.008-12.346z"/><path d="m84.915 125.06 10.724 43.465-43.008-12.346z"/></g></svg>');
}

.title-wrapper {
grid-column: 2;
grid-row: 1;
display: flex;
align-items: center;
}

#info > small {
grid-column: 2;
grid-row: 2;
font-size: 12px;
color: #e0e0e0;
}

.title-wrapper > a {
font-weight: 600;
}

.title-wrapper > span {
opacity: .7;
position: relative;
padding-left: 12px;
margin-left: 10px;
}

#info > small a {
color: #ff0;
text-decoration: none;
}

#info > small a:hover {
text-decoration: underline;
}

.title-wrapper > span::before {
content: "";
position: absolute;
left: 1px;
top: calc(50% + 1px);
transform: translateY(-50%);
width: 1px;
height: 12px;
background: #c3c3c3;
opacity: .5;
}
Loading
Loading