The "How do I..." Thread
Forum rules
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
Before asking on how to use a ZDoom feature, read the ZDoom wiki first. This forum is archived - please use this set of forums to ask new questions.
- Devianteist
- Posts: 945
- Joined: Wed Sep 24, 2014 4:07 pm
- Location: Creating a SPACE HULK conversion!
- Contact:
Re: The "How do I..." Thread
So, I'm trying to make a map with custom textures, and I'm wondering how to properly import the textures into the map so that I don't get blue and white checkers everywhere.
I can't find anything on the wiki, cause I have no idea where to look.
I can't find anything on the wiki, cause I have no idea where to look.
- Ozymandias81
- Posts: 2068
- Joined: Thu Jul 04, 2013 8:01 am
- Graphics Processor: nVidia with Vulkan support
- Location: Mount Olympus, Mars
- Contact:
Re: The "How do I..." Thread
[wiki]Using_ZIPs_as_WAD_replacement[/wiki] + / or [wiki]Texture[/wiki] and Slade.
- Devianteist
- Posts: 945
- Joined: Wed Sep 24, 2014 4:07 pm
- Location: Creating a SPACE HULK conversion!
- Contact:
Re: The "How do I..." Thread
Thank you kind sir.Ozymandias81 wrote:[wiki]Using_ZIPs_as_WAD_replacement[/wiki] + / or [wiki]Texture[/wiki] and Slade.
- ReedtheStrange
- Posts: 226
- Joined: Sun Sep 11, 2011 3:27 pm
Re: The "How do I..." Thread
How do I get GZDoomBuilder to stop rotating floors and ceilings and offsetting walls automatically whenever I go into 3D mode?
-
- Posts: 75
- Joined: Fri Jul 25, 2014 2:16 pm
Re: The "How do I..." Thread
This is going to be untested advice, because I really ought to be in bed anyway, lol, but have you thought about making SpeedPowerup a CustomInventory actor (http://zdoom.org/wiki/Classes:CustomInventory), then causing the pickup state to increment an inventory variable (http://gunlabs.blogspot.com/2011/02/tut ... aking.html), then somehow reference that variable (maybe with A_JumpIfInventory? http://zdoom.org/wiki/A_JumpIfInventory)notjustinbailey wrote:How can I make the Speed value increase everytime you pick up the item? Thank you!
Anyway I hope some of that helps. If it's still confusing I'll see if I can help further tomorrow.
Me Question:
I'm toying around with some mapinfo settings now, and I'm wondering how I would go about causing something like dimcolor to occur when you bring up the menu, but instead of just casting a dimming tone on the screen, it instead colorizes the screen?
- DoomKrakken
- Posts: 3489
- Joined: Sun Oct 19, 2014 6:45 pm
- Location: Plahnit Urff
- Contact:
Re: The "How do I..." Thread
Question... how do I ACS?
(Real question... where can I find a detailed guide to teach me how to write ACS?)
(Real question... where can I find a detailed guide to teach me how to write ACS?)
Re: The "How do I..." Thread
Techie question: how much overhead can be caused by abusing "Block sound" linedef flag?
Here's the map i'm working on. All green linedefs have "Block sound" flag set:
Here's the map i'm working on. All green linedefs have "Block sound" flag set:
Spoiler:In other words, should I bother removing all redundant ones, or it won't cause any noticeable performance degradation if left as is?
Re: The "How do I..." Thread
Sound blocking is strictly passive. When a "sound" (an action which awakens monsters such as a weapon fire trigger) is emitted, a search starts by scanning nearby sectors via their lines. This starts branching for each sector and line that can be reached. A branch stops when a second sound blocking line is hit. Doors (0 height sectors) also block sound the same way, however instantly rather than recursively.
Basically, no, it'll have absolutely no impact on performance. Complex sector structures sure could, but that's always true.
Basically, no, it'll have absolutely no impact on performance. Complex sector structures sure could, but that's always true.
Re: The "How do I..." Thread
In fact it's the reverse of overhead, it's abusing the "sounds pass through" flag (that is to say, not using the "block sound" flag) which can cause overhead by having to process more sectors each time a shot is fired.
Re: The "How do I..." Thread
I'm trying to replace MIDGRATE with a hi-res PNG with transparency, but the replacement doesn't show up in-game. All the other textures I've done hi-res versions of show up just fine, but none of them have transparent parts. Do I need to do something different for textures with transparent areas?
- notjustinbailey
- Posts: 10
- Joined: Sat Jun 13, 2015 12:12 am
Re: The "How do I..." Thread
I made a new inventory pickup for speed but I just can't seem to figure out how to change the speed of the player when you get them. Maybe I can have a powerup the player has that changes its speed based off of that speed pickup inventory? I really don't know. Is there anyway you can help me?Double(Super)Shotgun wrote:This is going to be untested advice, because I really ought to be in bed anyway, lol, but have you thought about making SpeedPowerup a CustomInventory actor (http://zdoom.org/wiki/Classes:CustomInventory), then causing the pickup state to increment an inventory variable (http://gunlabs.blogspot.com/2011/02/tut ... aking.html), then somehow reference that variable (maybe with A_JumpIfInventory? http://zdoom.org/wiki/A_JumpIfInventory)notjustinbailey wrote:How can I make the Speed value increase everytime you pick up the item? Thank you!
Anyway I hope some of that helps. If it's still confusing I'll see if I can help further tomorrow.
Me Question:
I'm toying around with some mapinfo settings now, and I'm wondering how I would go about causing something like dimcolor to occur when you bring up the menu, but instead of just casting a dimming tone on the screen, it instead colorizes the screen?
Re: The "How do I..." Thread
Hello! I managed to block manual save, thanks to MENUDEFS. Is it possible to block F2 save anyhow?
Re: The "How do I..." Thread
Nope. It's impossible to block saves. This is deliberate.
- DoomKrakken
- Posts: 3489
- Joined: Sun Oct 19, 2014 6:45 pm
- Location: Plahnit Urff
- Contact:
Re: The "How do I..." Thread
Didn't see all those links at the bottom. Thanks!edward850 wrote:Other than the wiki?
