diff --git a/src/app/App.tsx b/src/app/App.tsx index 11d544d0..b8c18d4c 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -3923,42 +3923,26 @@ export function App({ store, initialStatusMessage }: AppProps) { ) : (
{modelAssetList.map((asset) => ( -
-
+
- -
- {formatByteLength(asset.byteLength)} | {asset.mimeType} -
-
Storage key: {asset.storageKey}
-
{formatModelAssetSummary(asset)}
-
{formatModelBoundingBoxLabel(asset)}
- {asset.metadata.materialNames.length === 0 ? null : ( -
Materials: {asset.metadata.materialNames.join(", ")}
- )} - {asset.metadata.textureNames.length === 0 ? null : ( -
Textures: {asset.metadata.textureNames.join(", ")}
- )} - {asset.metadata.animationNames.length === 0 ? null : ( -
Animations: {asset.metadata.animationNames.join(", ")}
- )} - {asset.metadata.warnings.length === 0 ? null : ( -
{asset.metadata.warnings.join(" | ")}
- )} - -
- -
-
+ + + ))}
)} @@ -3971,43 +3955,30 @@ export function App({ store, initialStatusMessage }: AppProps) { ) : (
{imageAssetList.map((asset) => ( -
applyWorldBackgroundMode("image", asset.id)} + onPointerEnter={() => setHoveredAssetId(asset.id)} + onPointerLeave={() => setHoveredAssetId((current) => (current === asset.id ? null : current))} + onFocus={() => setHoveredAssetId(asset.id)} + onBlur={() => setHoveredAssetId((current) => (current === asset.id ? null : current))} > -
+ {asset.sourceName} {getProjectAssetKindLabel(asset.kind)} -
- -
- {formatByteLength(asset.byteLength)} | {asset.mimeType} -
-
Storage key: {asset.storageKey}
-
{formatImageAssetSummary(asset)}
- {asset.metadata.warnings.length === 0 ? null : ( -
{asset.metadata.warnings.join(" | ")}
- )} - -
- -
-
+ + + ))}
)} @@ -4020,21 +3991,26 @@ export function App({ store, initialStatusMessage }: AppProps) { ) : (
{audioAssetList.map((asset) => ( -
-
+
- -
- {formatByteLength(asset.byteLength)} | {asset.mimeType} -
-
Storage key: {asset.storageKey}
-
{formatAudioAssetSummary(asset)}
- {asset.metadata.warnings.length === 0 ? null : ( -
{asset.metadata.warnings.join(" | ")}
- )} -
+ + + ))}
)}