I just released a PK3 on idgames for people to use as a resources. Link below:
https://www.doomworld.com/idgames/graphics/doom_bldgs
Doom buildings contains 18 low poly 3D buildings with demolished counterparts (36 all together) and 4 piles of rubble. The buildings have been textured with Doom2 textures (they reference to the Doom2.wad) so they fit in with the game. You can even switch textures by editing the MODELDEF lump using a text editor (or Slade). Some buildings spawn multiple hit boxes so they block missiles and players properly despite their non-uniform shape.
I've tried using the Doom Hi-Res Texture Project add-on and it works great too. They also seem to work nicely with dynamic lights.
Here''s a quick YouTube video showing the buildings.
https://www.youtube.com/watch?v=maZtr-6aDt0
Let me know if you use it in a level. I'd love to see them in action.
[Resouce][Models] 3D Buildings for modders
Forum rules
Before posting your Resource, please make sure you can answer YES to any of the following questions:
Consult the Resource/Request Posting Guidelines for more information.
Please don't put requests here! They have their own forum --> here. Thank you!
Before posting your Resource, please make sure you can answer YES to any of the following questions:
- Is the resource ENTIRELY my own work?
- If no to the previous one, do I have permission from the original author?
- If no to the previous one, did I put a reasonable amount of work into the resource myself, such that the changes are noticeably different from the source that I could take credit for them?
Consult the Resource/Request Posting Guidelines for more information.
Please don't put requests here! They have their own forum --> here. Thank you!
-
- Admin
- Posts: 6190
- Joined: Thu Feb 26, 2004 3:02 pm
- Preferred Pronouns: He/Him
Re: [Resouce][Models] 3D Buildings for modders
These look amazing! Excellent work.
-
- Posts: 32
- Joined: Mon Jul 17, 2017 6:30 pm
Re: [Resouce][Models] 3D Buildings for modders
I've updated this resource, I added an animation so the buildings can now be demolished when shot.
Youtube preview video:
https://youtu.be/GUd3iPGolg4
Idgames link for the pk3 file:
https://www.doomworld.com/idgames/graphics/doom_bldgs
Cloud link for the blender file:
https://mega.nz/folder/gYIzwKgZ#rgW1TqhASFG4hvkeAOYXBA
Youtube preview video:
https://youtu.be/GUd3iPGolg4
Idgames link for the pk3 file:
https://www.doomworld.com/idgames/graphics/doom_bldgs
Cloud link for the blender file:
https://mega.nz/folder/gYIzwKgZ#rgW1TqhASFG4hvkeAOYXBA
-
- Posts: 1558
- Joined: Tue Oct 20, 2015 12:50 pm
- Graphics Processor: nVidia with Vulkan support
- Location: Kozolupy, Bohemia
Re: [Resouce][Models] 3D Buildings for modders
Wow, that's pretty nice.
May I know how you achieved the collision with models? Is that the zscript proof-of-concept that could be found anywhere here on the forum?
May I know how you achieved the collision with models? Is that the zscript proof-of-concept that could be found anywhere here on the forum?
-
- Admin
- Posts: 6190
- Joined: Thu Feb 26, 2004 3:02 pm
- Preferred Pronouns: He/Him
Re: [Resouce][Models] 3D Buildings for modders
They're just actors. From the OP:
kfpopeye2 wrote:Some buildings spawn multiple hit boxes so they block missiles and players properly despite their non-uniform shape.
-
- Posts: 32
- Joined: Mon Jul 17, 2017 6:30 pm
Re: [Resouce][Models] 3D Buildings for modders
My building spawns some additional invisible actors that have hitboxes (radius and height) designed to enclose the odd building geometry better than just a rectangle (so you can walk under an overhang, etc). These hotboxes are spawned with the SXF_SETMASTER flag so they are children of the actual building. When a child hitbox is hit enough that it dies, it calls A_KillMaster. This causes the building to entire the Death state where the collapse animation is played and also A_KillChildren is called to remove the other child hitboxes that were created at spawn.
This is NOT the checking to see if any poly's were hit on the actual MD3 model. I still just using square hitboxes like all the other Doom actors.
This is NOT the checking to see if any poly's were hit on the actual MD3 model. I still just using square hitboxes like all the other Doom actors.