The WIP Thread
-
-
- Posts: 16891
- Joined: Tue Oct 02, 2012 2:20 am
- Location: An ancient Escape Shuttle(No longer active here anymore)
Re: The WIP Thread
Nice delicious bullet bars! They looks flawlessly merged and zscript seems doing really great!
-
-
- Posts: 17472
- Joined: Mon Oct 27, 2003 12:07 am
- Location: Kuala Lumpur, Malaysia
Re: The WIP Thread
I noticed this also in the early days of ZScript but wasn't sure whether to bug-report it or not. I think it's a bug, because the freeze command freezes other Actors.DenisBelmondo wrote: It's nearly impossible to get a good screenshot though because Super.Tick() persists even with freeze on,
-
-
- Posts: 1355
- Joined: Mon May 06, 2013 8:02 am
Re: The WIP Thread
Does it matter if super.tick() is called before rather than after the customized stuff?
-
- Posts: 6200
- Joined: Thu Dec 04, 2008 1:14 am
- Location: plergleland
Re: The WIP Thread
oooh, that looks familiar. and do my ears deceive me, or doesn't that music sound slightly... different?
-
- Posts: 2856
- Joined: Tue Jun 21, 2005 1:16 pm
- Location: Ireland
Re: The WIP Thread
Yeah, it's different. I normally make house/techno, so jacking Hodges' instruments was a bit out of my comfort zone 

-
- Posts: 1325
- Joined: Tue Dec 06, 2016 11:25 am
Re: The WIP Thread
So, yeah... Doom Noir.


Does anyone know where to find that combined key/skullkey icon graphic in the hud? I checked the entire Ultimate Doom Wad and couldn't find it.
Also, I have to find a way to make everything show up fullbright without using colormaps.
EDIT:
From my post in the How do I... thread:


Does anyone know where to find that combined key/skullkey icon graphic in the hud? I checked the entire Ultimate Doom Wad and couldn't find it.
Also, I have to find a way to make everything show up fullbright without using colormaps.
EDIT:
From my post in the How do I... thread:
Edit2: Dang, the player only spawns when a map is loaded by the console or cheat, or when starting a campaign. When a map is loaded after exiting the previous one, the items are not added (makes sense, otherwise the player would get 50 bullets every time he completes a map).Solved my problem with achieving a fullbright look. I just edited DECORATE to give the player a custom Infrared powerup at game start which has an almost-infinite duration (about two years, which should be enought to finish most levels)
I also had to write a custom playerspawn for it but that was no biggie as I just inherited from the Doom marine and added the powerup to the Player.StartItem list.
DECORATE:MAPINFO:Code: Select all
actor DoomPlayerNoir : DoomPlayer { Player.StartItem Pistol Player.StartItem Fist Player.StartItem "Clip", 50 Player.StartItem InfraredNoir 1 } actor InfraredNoir : Infrared { powerup.duration 0x7FFFFFFD }
Code: Select all
GameInfo { PlayerClasses = "DoomPlayerNoir" }
Last edited by Cherno on Sun Apr 09, 2017 4:54 pm, edited 3 times in total.
-
- Posts: 21706
- Joined: Tue Jul 15, 2003 7:33 pm
- Preferred Pronouns: He/Him
- Operating System Version (Optional): A lot of them
- Graphics Processor: Not Listed
Re: The WIP Thread
That graphic is actually in the ZDoom pk3, if I remember right.
-
- Posts: 2856
- Joined: Tue Jun 21, 2005 1:16 pm
- Location: Ireland
Re: The WIP Thread
"Beeeeeeeeeeeeeeee...CHK!"
"Beeeeeeeeeeeeeeee...CHHHHGGHGHJLGHLKJHGHLJKGJLKGHJLKLJH ..."
Ah, the good oul' Speccy. I miss those days.
That looks phenomenal, even better than that EGA palette hack from a few years ago.
"Beeeeeeeeeeeeeeee...CHHHHGGHGHJLGHLKJHGHLJKGJLKGHJLKLJH ..."
Ah, the good oul' Speccy. I miss those days.
That looks phenomenal, even better than that EGA palette hack from a few years ago.
-
- Posts: 1235
- Joined: Thu Nov 06, 2014 1:53 pm
Re: The WIP Thread
Brightmaps could do the trick, I'd imagine.Cherno wrote:Also, I have to find a way to make everything show up fullbright without using colormaps.
Extremely tediously, but still.
-
- Posts: 380
- Joined: Fri Jun 06, 2008 6:26 pm
- Location: Two-Key Return
Re: The WIP Thread
Yeah I was totally thinking the same thing. I suppose the ability to let the actor tick-tock even during freeze is nice to have in the modder's hands, but I hope there'll be a Super.TickObeyFreeze() or something like that. I would guess that would be much better than encouraging the modder to include a freeze check as a constituent of ZScript Good Practices.Nash wrote:I noticed this also in the early days of ZScript but wasn't sure whether to bug-report it or not. I think it's a bug, because the freeze command freezes other Actors.
I remember trying that during the initial trial-and-error phase of this mini mod and it didn't do anything unfortunately :/kodi wrote:Does it matter if super.tick() is called before rather than after the customized stuff?
Anyway, here's a screenshot that I thought was cool. I have two separate routines for actor and particle based trails since the actor trails get really demanding if there's too many in the level at once. These are the particles:
Spoiler:If you can't see it, there's a color gradient effect on 'em too. I'm trying to make the particles look almost as good as the actor based ones so there's less of a trade-off.
Last edited by DenisBelmondo on Sun Apr 09, 2017 1:27 pm, edited 1 time in total.
-
- Posts: 3489
- Joined: Sun Oct 19, 2014 6:45 pm
- Location: Plahnit Urff
Re: The WIP Thread
I wonder what would happen if you continued pestering the lady in the seat...scalliano wrote:
-
- Posts: 1325
- Joined: Tue Dec 06, 2016 11:25 am
Re: The WIP Thread
Yeah, I guess that's one way to do it. So far, I have experimented with setting each map sector brightness to 255 but I don't think there's a way to let this happen automatically.Arctangent wrote:Brightmaps could do the trick, I'd imagine.Cherno wrote:Also, I have to find a way to make everything show up fullbright without using colormaps.
Extremely tediously, but still.
-
-
- Posts: 1355
- Joined: Mon May 06, 2013 8:02 am
Re: The WIP Thread

Anyone know why I get those ugly flickering black splotches everywhere whenever I attempt to render sprites in blender?
-
- Posts: 1325
- Joined: Tue Dec 06, 2016 11:25 am
Re: The WIP Thread
Maybe it has something to do with the lighting setup? Try to set the ambient to max and disable any scene lights. If the problem persists, it's probably not related to (directional)lighting.