Page 1940 of 2057

Re: The WIP Thread

Posted: Sun Jun 10, 2018 6:32 pm
by Nash
Reposting for non-Discordians:



Courtesy quote:
leodoom85 wrote:WIP of a Heretic map....
Image

Re: The WIP Thread

Posted: Sun Jun 10, 2018 6:48 pm
by leodoom85
>This is Nash. I'm now inside Strut A of Shell 1...
>How are things?...
>We're in luck. Looks like there's a Heretic map posted here.
>What's the visibility?
>The dynamic lights of this area are functioning. I won't have to use the Bloom effect...


Just kidding. That effect looks really great man....
(check the Plant chapter intro of MGS 2 to get the reference)

Re: The WIP Thread

Posted: Sun Jun 10, 2018 7:59 pm
by Pixel Eater
Nash wrote:
Hoo that's nice!

Re: The WIP Thread

Posted: Sun Jun 10, 2018 10:21 pm
by Captain J
Oooh that is one beautiful water drips. And i can't wait for blood drip ones when damaged or dead. For bloody sure!

Re: The WIP Thread

Posted: Mon Jun 11, 2018 8:37 am
by jazzmaster9
Boss!! 
what do you guys think?

Re: The WIP Thread

Posted: Mon Jun 11, 2018 9:12 am
by Vostyok
Looks awesome.

Although IIRC, Doomguy killed it the first time with headshots.

You'd save yourself a lot of time doing that rather than firing all your rockets into his crotch.

(lol jokes it looks really good)

Re: The WIP Thread

Posted: Mon Jun 11, 2018 10:23 am
by Captain J
Looks basic and great, but he might need some dynamic entrance or extra attack patterns!

Re: The WIP Thread

Posted: Mon Jun 11, 2018 5:26 pm
by Dr_Cosmobyte
The only thing i know is that i want more Innocence X. It's a damn good (although raging hard for me, sometimes) series of maps. :D

Re: The WIP Thread

Posted: Wed Jun 13, 2018 7:19 am
by Marisa the Magician
Already mentioned this on Discord and on my Twitter, but I've been attempting to do a Blender export plugin for UE1 vertex meshes.
Image
So far it seems to work.

Re: The WIP Thread

Posted: Wed Jun 13, 2018 5:52 pm
by TrebbyTrebuchet
Progress with the first map of my TC:

Re: The WIP Thread

Posted: Thu Jun 14, 2018 12:13 am
by RockstarRaccoon
jazzmaster9 wrote:Boss!! 
what do you guys think?
It looks like you're shooting him in the crotch, which makes no sense, seeing as he's just bones. Maybe you should Implement a system so that is not what is happening? Other than that, I like how this doesn't seem to immediately devolve into standing behind a pillar or something and playing peek-a-boo...

Re: The WIP Thread

Posted: Thu Jun 14, 2018 2:50 pm
by MartinHowe
Better reactor room physics
Technology vs monsters!
Technology vs monsters!

Re: The WIP Thread

Posted: Thu Jun 14, 2018 4:00 pm
by Trusty McLegit
Marisa Kirisame wrote:Already mentioned this on Discord and on my Twitter, but I've been attempting to do a Blender export plugin for UE1 vertex meshes.
Image
So far it seems to work.
From a modeler/modders perspective is there much or any difference in working with UE1 vertex meshes and md3?

Re: The WIP Thread

Posted: Thu Jun 14, 2018 4:30 pm
by Nash


More of those Daggerfall-ey paper doll stuff! Everything works now, your equipment status is now fully reflected on the paper dolls screen and also on your in-world Actor.
Spoiler: VERY NSFW!!!

Re: The WIP Thread

Posted: Fri Jun 15, 2018 5:37 am
by Marisa the Magician
Eh, currently the main things that difference .3d from .md3 are:

1. Face data and vertex data (of all frames) are in separate files.
2. You can have per-face render styles (plus additional flags, such as "flat shaded", "no texture smoothing" or "environment mapping").
3. It has no concept of groups (or surfaces as md3 calls them), texture indices are set per-face, and the limit is 256, rather than the surface limit of 32 in MD3 (UE1 itself can only handle 9 individual texture indices though).
4. One vertex can have multiple UVs, since they're set per-face too.
5. There are no tags. The only thing available for attachment is the "weapon triangle" flag that can be set to at most one face. (I go into more detail about this in the plugin documentation)
6. There are no embedded normals, they have to be calculated on mesh load.
7. The standard vertex format has 11 bits of precision for X and Y, and 10 for Z. This causes some noticeable precision loss (wobbly vertices), though not as much as MD2. However, there is an alternative vertex format, which Deus Ex uses, that has the same exact 16 bits per component precision as MD3 (I didn't add this yet to GZDoom since I didn't have any existing meshes in that format to test, but I'll try to get it in now).
8. UVs are bytes, so that's also very limiting in precision for texturing. Bear in mind this format is for an engine that initially couldn't handle textures larger than 256x256, so it makes sense.
9. Other limits: 65535 triangles, 65535 animation frames, 16383 vertices in standard format, 8191 vertices in deus ex format. XYZ for vertices is in the range -32768 to 32767 (in the blender plugin this currently translates to "-1 to 1")

Oh yeah, and I guess I can link the plugin, here.