diff --git a/src/components/Avatar/Avatar.component.tsx b/src/components/Avatar/Avatar.component.tsx index c3867639..19b5acd5 100644 --- a/src/components/Avatar/Avatar.component.tsx +++ b/src/components/Avatar/Avatar.component.tsx @@ -41,15 +41,18 @@ export type Emotion = Record; export interface AvatarProps extends LightingProps { /** * Path to `.glb` file of the 3D model. + * Can be a relative or absolute URL. */ modelUrl: string; /** * Path to `.glb` animation file of the 3D model. + * Can be a relative or absolute URL. */ animationUrl?: string; /** * Path to `.glb` file which will be used to map Bone placements onto the underlying 3D model. * Applied when not specifying an animation. + * Can be a relative or absolute URL. */ poseUrl?: string; /** diff --git a/src/components/Exhibit/Exhibit.component.tsx b/src/components/Exhibit/Exhibit.component.tsx index 90337a42..7d04e910 100644 --- a/src/components/Exhibit/Exhibit.component.tsx +++ b/src/components/Exhibit/Exhibit.component.tsx @@ -9,6 +9,7 @@ import { FloatingModel } from '../Models/FloatingModel'; export interface ExhibitProps extends CameraProps { /** * Path to `.glb` file of the 3D model. + * Can be a relative or absolute URL. */ modelUrl: string; /**