▶
Roots n’ Branches
We released a bugfix update last week to Build 37’s Muld/Rosewood etc lootable maps, and also their marking and annotation system. There’s another ‘fix build’ on the brew, and any and all feedback is welcome. Specifically, the new ‘oven dial’ UI has been built for multiple uses across the game’s many devices – so feedback on its general usability would be greatly appreciated. Next up, although we’ll give full details once it’s in the can, RJ is going to work on expanding this system so that it benefits MP safehouses with annotated maps that can be put on public display, and a plan we have about pre-annotated maps discovered on zed bodies that’ll be useful/fun in SP and co-op. Details on how to access the IWBUMS beta – here. [We’ve removed password from the beta, as everyone’s quite used to unstable branches these days.]
One element that’s been a part of the perils of getting the animation build playable and into testing, is that the closer you get – the more issues in general gameplay become clear, and the more evident it is that they need fixing. The ‘not fun’ factor looms large. Primarily, in this instance, was cludgy indoor movement with a side salad of ‘rotate on-the-spot’ zeds and survivors looking pretty crap. As such, while pulling everything together, there’s been a side-thread of work going on with Martin the Animator to see how we can improve things. It’s all to do with ‘root motion’ – in the new PZ anims the movement of characters has always been directly taken from the animation data itself, instead of being pumped into the character in the game logic. Thing is, there was one important part of the system that it became increasingly clear that we needed: we only had support for movement in a straight line, and no support for characters to rotate within animations and for this rotation to translate into the rotation of characters in-game. Up until now we still had to rotate characters/zeds in the game code and completely divorced from the animation. The most obvious consequence of this was that despite characters making realistic steps when walking, sneaking and so on (and in videos as you’ve seen, if the character is rotated while sneaking it works pretty well) rotating on the spot would still produce ‘slidey on the spot rotating’. This works okay in the current game, but looks a bit silly when the animations around it are much more realistic. Without going into lots of technical details this was a much more complicated and confusing problem to solve than the positional root motion system [Mondoid writer aside, direct to camera: seriously there’s been all this chat about Quarteronions that’s pretty much incomprehensible to me], but after a meet-up with Martin last week we finally worked out the best way of how to approach it. Now (well, almost now, there’s still one more bug to sort out that would have resulted in an in-game video today) we have support for rotations, it allows us to improve in various areas, as well as fix the issues mentioned above. https://www.youtube.com/watch?v=pXtK2xEh0XQ
a) Rotating on the spot. When the player rotates on the spot, we’ll be able to have them actually make steps to turn themselves without the aforementioned sliding in a circle with feet stationary. b) A big issue with movement that we found it difficult to solve was that with deferred movement it’s important that the character’s movement mirrors the animation, and that characters don’t rotate super-fast to change direction. In-game this lead to a kind of inertia effect, with characters speeding up from stationary and having a finite turning speed, meant that indoor navigation got a lot more difficult. Now, however, we’ll be able to have the character turn and step in any direction as part of their ‘starting to walk/run’ animation. Zeds and survivors, for example, can twist their torso while immediately stepping to the right, left, or making a turn through 180 degrees. This should make movement a lot more responsive and immediate, and though this is clearly nothing to do with our game specifically this should give you an idea of the kind of rotational character locomotion we’re talking about. c) There are a fair few animations, particularly in the ‘wall hugging’ advanced cover traversal system, that require this rotational movement to be able to function. This is a system that isn’t currently planned to be implemented in the anims test build release, but was a major technical barrier to it – and it feels good to have a system in-place that bypasses it. d) In future a lot of stuff like zombie walks could now have rotational movement encoded into the animations, to make their movement much more realistic and non-linear. The same could apply to an injured character’s movement, drunken stumbles and other things. It opens up a lot of doors.
Turbo has just released the full version of ItemZed. This is a development and modding tool that’s used to edit the contents of script modules (foodstuff items, weapons, recipes etc) and the distribution table that dictates where different in-game items can be found and looted on the map. On top of the tool’s previous test release, there’s now options for the batch refactoring of large numbers of items and in-game objects and lua integration that allows the entire data set to be programmatically modified, and output to any sort of format – meaning that changes and new items can quickly and easily become part of user mods, and a part of the main game. Here’s a vid Turbo’s made to explain it all a bit, turn on English subtitles for written descriptions.
[ 2017-02-07 07:53:15 CET ] [ Original post ]
Hey all, hope you’re well. Updates from various departments in zombie land this fair Mondoid.
BUILD 37 IWBUMS BETA
We released a bugfix update last week to Build 37’s Muld/Rosewood etc lootable maps, and also their marking and annotation system. There’s another ‘fix build’ on the brew, and any and all feedback is welcome. Specifically, the new ‘oven dial’ UI has been built for multiple uses across the game’s many devices – so feedback on its general usability would be greatly appreciated. Next up, although we’ll give full details once it’s in the can, RJ is going to work on expanding this system so that it benefits MP safehouses with annotated maps that can be put on public display, and a plan we have about pre-annotated maps discovered on zed bodies that’ll be useful/fun in SP and co-op. Details on how to access the IWBUMS beta – here. [We’ve removed password from the beta, as everyone’s quite used to unstable branches these days.]
ANIMS
One element that’s been a part of the perils of getting the animation build playable and into testing, is that the closer you get – the more issues in general gameplay become clear, and the more evident it is that they need fixing. The ‘not fun’ factor looms large. Primarily, in this instance, was cludgy indoor movement with a side salad of ‘rotate on-the-spot’ zeds and survivors looking pretty crap. As such, while pulling everything together, there’s been a side-thread of work going on with Martin the Animator to see how we can improve things. It’s all to do with ‘root motion’ – in the new PZ anims the movement of characters has always been directly taken from the animation data itself, instead of being pumped into the character in the game logic. Thing is, there was one important part of the system that it became increasingly clear that we needed: we only had support for movement in a straight line, and no support for characters to rotate within animations and for this rotation to translate into the rotation of characters in-game. Up until now we still had to rotate characters/zeds in the game code and completely divorced from the animation. The most obvious consequence of this was that despite characters making realistic steps when walking, sneaking and so on (and in videos as you’ve seen, if the character is rotated while sneaking it works pretty well) rotating on the spot would still produce ‘slidey on the spot rotating’. This works okay in the current game, but looks a bit silly when the animations around it are much more realistic. Without going into lots of technical details this was a much more complicated and confusing problem to solve than the positional root motion system [Mondoid writer aside, direct to camera: seriously there’s been all this chat about Quarteronions that’s pretty much incomprehensible to me], but after a meet-up with Martin last week we finally worked out the best way of how to approach it. Now (well, almost now, there’s still one more bug to sort out that would have resulted in an in-game video today) we have support for rotations, it allows us to improve in various areas, as well as fix the issues mentioned above. https://www.youtube.com/watch?v=pXtK2xEh0XQ
In Summary:
a) Rotating on the spot. When the player rotates on the spot, we’ll be able to have them actually make steps to turn themselves without the aforementioned sliding in a circle with feet stationary. b) A big issue with movement that we found it difficult to solve was that with deferred movement it’s important that the character’s movement mirrors the animation, and that characters don’t rotate super-fast to change direction. In-game this lead to a kind of inertia effect, with characters speeding up from stationary and having a finite turning speed, meant that indoor navigation got a lot more difficult. Now, however, we’ll be able to have the character turn and step in any direction as part of their ‘starting to walk/run’ animation. Zeds and survivors, for example, can twist their torso while immediately stepping to the right, left, or making a turn through 180 degrees. This should make movement a lot more responsive and immediate, and though this is clearly nothing to do with our game specifically this should give you an idea of the kind of rotational character locomotion we’re talking about. c) There are a fair few animations, particularly in the ‘wall hugging’ advanced cover traversal system, that require this rotational movement to be able to function. This is a system that isn’t currently planned to be implemented in the anims test build release, but was a major technical barrier to it – and it feels good to have a system in-place that bypasses it. d) In future a lot of stuff like zombie walks could now have rotational movement encoded into the animations, to make their movement much more realistic and non-linear. The same could apply to an injured character’s movement, drunken stumbles and other things. It opens up a lot of doors.
ITEMZED RELEASE
Turbo has just released the full version of ItemZed. This is a development and modding tool that’s used to edit the contents of script modules (foodstuff items, weapons, recipes etc) and the distribution table that dictates where different in-game items can be found and looted on the map. On top of the tool’s previous test release, there’s now options for the batch refactoring of large numbers of items and in-game objects and lua integration that allows the entire data set to be programmatically modified, and output to any sort of format – meaning that changes and new items can quickly and easily become part of user mods, and a part of the main game. Here’s a vid Turbo’s made to explain it all a bit, turn on English subtitles for written descriptions.
OTHER STUFF
- General Arcade continue their work on getting map-streaming, physics and MP sync ready for EP’s vehicles. New recruit Eugene is also getting used to the codebase by mixing in Discord compatibility with game chat as an extension of our old IRC plugin, given our increasing love for the service.
- The inestimable RingoD has updated his comprehensive guide to creating user maps in WorldZed and TileZed, with an updated Section 3 detailing exactly how to make individual buildings. The Steam version can found here. We’re delighted to see that there’s a bunch of people already using these, and creating cool stuff.
[ 2017-02-07 07:53:15 CET ] [ Original post ]
Project Zomboid
The Indie Stone
Developer
The Indie Stone
Publisher
2013-11-08
Release
Game News Posts:
206
🎹🖱️Keyboard + Mouse
🕹️ Partial Controller Support
🕹️ Partial Controller Support
Very Positive
(245853 reviews)
The Game includes VR Support
Public Linux Depots:
- Project Zomboid Linux Depot [1.41 G]
Project Zomboid is an open-ended zombie-infested sandbox. It asks one simple question – how will you die?
In the towns of Muldraugh and West Point, survivors must loot houses, build defences and do their utmost to delay their inevitable death day by day. No help is coming – their continued survival relies on their own cunning, luck and ability to evade a relentless horde.
For more details on the game follow us on @theindiestone or visit http://www.projectzomboid.com
A huge thanks to the wonderful MathasGames and Dean Cutty for making the awesome intro video. If you love indie games their channels are well worth a sub.
In the towns of Muldraugh and West Point, survivors must loot houses, build defences and do their utmost to delay their inevitable death day by day. No help is coming – their continued survival relies on their own cunning, luck and ability to evade a relentless horde.
Current Features
- Hardcore Sandbox Zombie Survival Game with a focus on realistic survival.
- Online multiplayer survival with persistent player run servers.
- Local 4 player split-screen co-op
- Hundreds of zombies with swarm mechanics and in-depth visual and hearing systems.
- Full line of sight system and real-time lighting, sound and visibility mechanics. Hide in the shadows, keep quiet and keep the lights off at night, or at least hang sheets over the windows.
- Vast and growing map (loosely based on a real world location) for you to explore, loot and set up your fortress. Check out Blindcoder’s map project: http://pzmap.crash-override.net/
- Use tools and items to craft weapons, barricade and cook. You can even build zombie proof forts by chopping trees, sawing wood and scavenging supplies.
- Deal with depression, boredom, hunger, thirst and illness while trying to survive.
- Day turns to night. The electricity falters. Hordes migrate. Winter draws in. Nature gradually starts to take over.
- Farming, trapping, fishing, carpentry, cooking, trapping, character customization, skills and perks that develop based on what you do in-game.
- Proper zombies that don’t run. (Unless you tell them to in the sandbox menu).
- A ton of amazing atmospheric music tracks by the prodigy that is Zach Beever.
- Imaginative Challenge scenarios and instant action ‘Last Stand’ mode, on top of regular Sandbox and Survival
- Full, open and powerful Lua modding support.
- Xbox Controller Gamepad support on Windows. [Others pads can be set up manually. Gamepad support not currently available on Mac]
We’re a small team at the moment, but we’re also committed to providing the following:Planned Features:
- The return of our PZ Stories mode that also serves as first ever tutorial actively trying to kill you at every turn. Kate and Baldspot return!
- In-depth and varied NPC encounters driven in a persistent world, powered by a metagame system that turns each play-through into your very own zombie survival movie with emergent narrative gameplay.
- Constant expansion of the countryside and cities around Muldraugh and West Point
- Full wilderness survival systems, animals and hunting for food.
- More items, crafting recipes, weapons and gameplay systems.
- Steam Workshop and Achievements support
For more details on the game follow us on @theindiestone or visit http://www.projectzomboid.com
A huge thanks to the wonderful MathasGames and Dean Cutty for making the awesome intro video. If you love indie games their channels are well worth a sub.
MINIMAL SETUP
- Processor: Intel 2.77GHz Quad-core Ubuntu LTS 16.04/Steam Machine. Requires Libgcc 6 or higherMemory: 8Gb RamHard Disk Space: 5gigVideo Card: Dedicated graphics card with 2 GB of RAM minimum. OpenGL 2.1 and GLSL 1.2 support (generally 2012 or newer) Sound: FMOD compatible sound card
- Memory: 8Gb RamHard Disk Space: 5gigVideo Card: Dedicated graphics card with 2 GB of RAM minimum. OpenGL 2.1 and GLSL 1.2 support (generally 2012 or newer) Sound: FMOD compatible sound card
GAMEBILLET
[ 6132 ]
GAMERSGATE
[ 2625 ]
FANATICAL BUNDLES
HUMBLE BUNDLES
by buying games/dlcs from affiliate links you are supporting tuxDB