1
This commit is contained in:
@@ -2432,9 +2432,13 @@ pub(crate) fn map_big_fish_level_blueprint(
|
||||
level: snapshot.level,
|
||||
name: snapshot.name,
|
||||
one_line_fantasy: snapshot.one_line_fantasy,
|
||||
text_description: snapshot.text_description,
|
||||
silhouette_direction: snapshot.silhouette_direction,
|
||||
size_ratio: snapshot.size_ratio,
|
||||
visual_description: snapshot.visual_description,
|
||||
visual_prompt_seed: snapshot.visual_prompt_seed,
|
||||
idle_motion_description: snapshot.idle_motion_description,
|
||||
move_motion_description: snapshot.move_motion_description,
|
||||
motion_prompt_seed: snapshot.motion_prompt_seed,
|
||||
merge_source_level: snapshot.merge_source_level,
|
||||
prey_window: snapshot.prey_window,
|
||||
@@ -4465,6 +4469,14 @@ pub struct BigFishMessageFinalizeRecordInput {
|
||||
pub updated_at_micros: i64,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct BigFishDraftCompileRecordInput {
|
||||
pub session_id: String,
|
||||
pub owner_user_id: String,
|
||||
pub draft_json: Option<String>,
|
||||
pub compiled_at_micros: i64,
|
||||
}
|
||||
|
||||
#[derive(Clone, Debug, PartialEq, Eq)]
|
||||
pub struct BigFishAssetGenerateRecordInput {
|
||||
pub session_id: String,
|
||||
@@ -4497,9 +4509,13 @@ pub struct BigFishLevelBlueprintRecord {
|
||||
pub level: u32,
|
||||
pub name: String,
|
||||
pub one_line_fantasy: String,
|
||||
pub text_description: String,
|
||||
pub silhouette_direction: String,
|
||||
pub size_ratio: f32,
|
||||
pub visual_description: String,
|
||||
pub visual_prompt_seed: String,
|
||||
pub idle_motion_description: String,
|
||||
pub move_motion_description: String,
|
||||
pub motion_prompt_seed: String,
|
||||
pub merge_source_level: Option<u32>,
|
||||
pub prey_window: Vec<u32>,
|
||||
@@ -4677,7 +4693,7 @@ mod tests {
|
||||
"level_motion_ready_count":0,
|
||||
"background_ready":false
|
||||
}]"#
|
||||
.to_string(),
|
||||
.to_string(),
|
||||
),
|
||||
error_message: None,
|
||||
};
|
||||
@@ -4709,7 +4725,7 @@ mod tests {
|
||||
"level_motion_ready_count":16,
|
||||
"background_ready":true
|
||||
}]"#
|
||||
.to_string(),
|
||||
.to_string(),
|
||||
),
|
||||
error_message: None,
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user