Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inspector: render N/A for internal texture unique ID when internal texture is undefined #12409

Merged
Merged
Changes from all commits
Commits
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
Original file line number Diff line number Diff line change
Expand Up @@ -346,7 +346,7 @@ export class TexturePropertyGridComponent extends React.Component<ITextureProper
<TextLineComponent label="Use sRGB buffers" value={texture._texture?._useSRGBBuffer ? "Yes" : "No"} />
{extension && <TextLineComponent label="File format" value={extension} />}
<TextLineComponent label="Unique ID" value={texture.uniqueId.toString()} />
<TextLineComponent label="Internal Unique ID" value={texture._texture?.uniqueId.toString()} />
<TextLineComponent label="Internal Unique ID" value={(texture._texture?.uniqueId ?? "N/A").toString()} />
<TextLineComponent label="Class" value={textureClass} />
{count >= 0 && <TextLineComponent label="Number of textures" value={count.toString()} />}
<TextLineComponent label="Has alpha" value={texture.hasAlpha ? "Yes" : "No"} />
Expand Down