aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2026-07-18 15:14:58 +0300
committerValentin Popov <valentin@popov.link>2026-07-18 15:14:58 +0300
commit858dcd0d1de47cce5f04f959f239cff6aaa033f4 (patch)
treeebcc52ec3adf6803b82715ce9c412695ca3b6971 /apps
parentcfa6d2703233334582d8f115c5fd5a69a57c940c (diff)
downloadfparkan-858dcd0d1de47cce5f04f959f239cff6aaa033f4.tar.xz
fparkan-858dcd0d1de47cce5f04f959f239cff6aaa033f4.zip
feat(render): apply static node fallback poses
Diffstat (limited to 'apps')
-rw-r--r--apps/fparkan-game/src/main.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/fparkan-game/src/main.rs b/apps/fparkan-game/src/main.rs
index 32e7e44..df92d7f 100644
--- a/apps/fparkan-game/src/main.rs
+++ b/apps/fparkan-game/src/main.rs
@@ -33,7 +33,7 @@ use fparkan_render::{
use fparkan_render_vulkan::{
project_land_msh_to_static_mesh_in_legacy_world_space,
project_land_msh_to_static_mesh_in_xy_frame,
- project_msh_to_static_mesh_in_world_space_with_transform,
+ project_msh_to_static_mesh_in_world_space_with_node_fallback_poses,
project_msh_to_static_mesh_in_xy_frame, VulkanPlanningBackend, VulkanSmokeFrameOutcome,
VulkanSmokeRenderer, VulkanSmokeRendererCreateInfo, VulkanStaticCamera, VulkanStaticMaterial,
VulkanStaticMesh, VulkanStaticTexture, VulkanStaticXyFrame,
@@ -288,7 +288,7 @@ fn static_preview_mesh_and_materials(
format!("static preview visual {visual_id:?} references unknown model {model_id:?}")
})?;
let component = if legacy_camera.is_some() {
- project_msh_to_static_mesh_in_world_space_with_transform(
+ project_msh_to_static_mesh_in_world_space_with_node_fallback_poses(
&model.validated,
LegacyIron3dEulerTransform {
translation: root.position,