Scene Config & AssetIDs
Updated 2022-09-12
{
name: Override the name of the NFT
description: Override the description of the NFT
image: Override the poster image for the NFT, perhaps with a capture of the 3D scene
animation_url: a simple file (GLB model, MP4 video) that overrides the animation_uri of the NFT
/** A URI to an external site that renders the scene */
externalScene: string;
/** A pointer to an external site describing the scene */
external_uri: string;
/** These should be merged with the NFT’s traits */
traits: Record<string, any>[];
/** This holds data about what to render at the scene */
contents: {
/** A multi-line text-based message to place at the scene */
message?: string;
/** A list of individual assets to render at specific positions in the scene. */
objects?: Asset[];
/** An image that should be overlaid over the full scene. May be an animated image or video. */
overlay?: {
overlayUri: string
Opacity: number
}
}
}
Multi-asset scenes
AssetIds
Last updated