1
This commit is contained in:
@@ -40,6 +40,11 @@ export interface CharacterAnimationConfig {
|
||||
extension?: string;
|
||||
file?: string;
|
||||
basePath?: string;
|
||||
frameWidth?: number;
|
||||
frameHeight?: number;
|
||||
fps?: number;
|
||||
loop?: boolean;
|
||||
previewVideoPath?: string;
|
||||
}
|
||||
|
||||
export type SkillStyle = 'burst' | 'steady' | 'mobility' | 'finisher' | 'projectile';
|
||||
|
||||
@@ -1,3 +1,4 @@
|
||||
import type { EightAnchorContent } from '../../packages/shared/src/contracts/customWorldAgent';
|
||||
import type {
|
||||
ItemAttributeResonance,
|
||||
RoleAttributeProfile,
|
||||
@@ -219,6 +220,9 @@ export interface CustomWorldRoleProfile {
|
||||
title: string;
|
||||
role: string;
|
||||
description: string;
|
||||
visualDescription?: string;
|
||||
actionDescription?: string;
|
||||
sceneVisualDescription?: string;
|
||||
backstory: string;
|
||||
personality: string;
|
||||
motivation: string;
|
||||
@@ -318,6 +322,7 @@ export interface CustomWorldLandmark {
|
||||
id: string;
|
||||
name: string;
|
||||
description: string;
|
||||
visualDescription?: string;
|
||||
dangerLevel: string;
|
||||
imageSrc?: string;
|
||||
sceneNpcIds: string[];
|
||||
@@ -347,6 +352,7 @@ export interface CustomWorldProfile {
|
||||
storyGraph?: WorldStoryGraph | null;
|
||||
knowledgeFacts?: KnowledgeFact[] | null;
|
||||
threadContracts?: ThreadContract[] | null;
|
||||
anchorContent?: EightAnchorContent | null;
|
||||
creatorIntent?: CustomWorldCreatorIntent | null;
|
||||
anchorPack?: CustomWorldAnchorPack | null;
|
||||
lockState?: CustomWorldLockState | null;
|
||||
|
||||
Reference in New Issue
Block a user