fix resize

This commit is contained in:
2026-02-16 09:57:54 -08:00
parent c95f4fb17d
commit ed3520e5fc

View File

@@ -45,7 +45,9 @@ impl<'a> PlayerWorker<'a>{
let (pos,angles)=self.playback_head.get_position_angles(&self.bot,ins.time);
self.graphics_thread.send(strafesnet_roblox_bot_player::graphics::Instruction::Render{pos,angles});
},
Instruction::Resize(physical_size)=>{},
Instruction::Resize(physical_size)=>{
self.graphics_thread.send(strafesnet_roblox_bot_player::graphics::Instruction::Resize(glam::uvec2(physical_size.width,physical_size.height)));
},
}
}
}