Changing the look and feel
mepem37 :: 2022/01/17 (Monday, January 17, 2022) :: Bomber Fight, Unreal Engine :: No Comments »
mepem37 :: 2022/01/17 (Monday, January 17, 2022) :: Bomber Fight, Unreal Engine :: No Comments »
Added some more stuff such as bomb explosions with sound effects (based on starter content).
mepem37 :: 2022/01/08 (Saturday, January 8, 2022) :: Bomber Fight, Unreal Engine :: No Comments »
The moving platform that we got from https://www.youtube.com/watch?v=TNkX3DdwhQw was not replicating properly on the network. I tried fixing that directly, but I ended up rewriting it from scratch. I noticed actor vectors in the editor are displayed relative to the actor’s transformations. So getting the location in blueprints required me to think about the transforms (transformation matrices from CG 101). I found this convoluted, but maybe Blueprints are making my brain lazier (spoiled) relative to C++ code) 😀
The following I will need to review whether it’s the best way to do it in terms of networking, but it seems to work at least (Loc Interp is replicated). It does seem to work, but it seems wasteful because we’re continuously sending Loc Interp to the clients. Loc Interp’s location should be deterministic relative to time, so assuming we have the starting time in sync with client and server, sending Loc Interp over the network seems wasteful.
mepem37 :: 2022/01/04 (Tuesday, January 4, 2022) :: Bomber Fight, Unreal Engine :: No Comments »
Implemented spawn bomb and laser shot on server
https://youtu.be/sbfcBJd9gk4 – I used this as a guide
mepem37 :: 2022/01/01 (Saturday, January 1, 2022) :: Bomber Fight, Unreal Engine :: No Comments »