This commit is contained in:
2026-04-18 13:05:29 +08:00
parent 09d4c0c31b
commit 5032701c38
77 changed files with 8538 additions and 2413 deletions

View File

@@ -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';

View File

@@ -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;