SLADE Discussion - Latest: v3.2.5 (19/Dec/2023)

Any utility that assists in the creation of mods, assets, etc, go here. For example: Ultimate Doom Builder, Slade, WadSmoosh, Oblige, etc.
Forum rules
The Projects forums are ONLY for YOUR PROJECTS! If you are asking questions about a project, either find that project's thread, or start a thread in the General section instead.

Got a cool project idea but nothing else? Put it in the project ideas thread instead!

Projects for any Doom-based engine (especially 3DGE) are perfectly acceptable here too.

Please read the full rules for more details.
User avatar
A_D_M_E_R_A_L
Posts: 284
Joined: Sun Apr 16, 2017 2:55 am
Preferred Pronouns: He/Him

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by A_D_M_E_R_A_L »

sirjuddington wrote:It should be there - do you have the window size very small? It may be getting cut off somehow. Would you be able to post a screenshot?
I use it in pretty much fullscreen mode.
User avatar
Clay
Posts: 190
Joined: Fri Sep 22, 2017 9:52 pm
Location: That one secret you always miss.
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Clay »

Tried installing 3 times now and the folder, text, graphic icons etc will now show up.


Image:

User avatar
sirjuddington
Posts: 1025
Joined: Wed Jul 16, 2003 4:47 am
Location: Australia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by sirjuddington »

What does the log say? (press ctrl+2 to open the console)
User avatar
Nash
 
 
Posts: 17429
Joined: Mon Oct 27, 2003 12:07 am
Location: Kuala Lumpur, Malaysia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Nash »

Thank you and congratulations on the official release! Good work to everyone involved. :)

I can't remember if I've asked before, but is there a possibility of adding a global dark theme to SLADE? I know the text editor portions can have a dark theme, but the general UI is still untouched. I was thinking of something like Visual Studio where everything is globally darkened, even the menu bars and other UI objects.
User avatar
sirjuddington
Posts: 1025
Joined: Wed Jul 16, 2003 4:47 am
Location: Australia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by sirjuddington »

Nash wrote:Thank you and congratulations on the official release! Good work to everyone involved. :)

I can't remember if I've asked before, but is there a possibility of adding a global dark theme to SLADE? I know the text editor portions can have a dark theme, but the general UI is still untouched. I was thinking of something like Visual Studio where everything is globally darkened, even the menu bars and other UI objects.
Lots of people have asked that :P Unfortunately it's not possible without completely rewriting the UI (and more) in something that isn't wxWidgets and supports skins (such as Qt)
User avatar
Clay
Posts: 190
Joined: Fri Sep 22, 2017 9:52 pm
Location: That one secret you always miss.
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Clay »

User avatar
sirjuddington
Posts: 1025
Joined: Wed Jul 16, 2003 4:47 am
Location: Australia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by sirjuddington »

You'll need to find yout slade3.cfg file (usually in C:\Users\<username>\Roaming\SLADE3). Once you open it, find 'temp_location' and set it to 0
gramps
Posts: 300
Joined: Thu Oct 18, 2018 2:16 pm

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by gramps »

Lemme try this again...
gramps wrote: Basically I want to make a hotkey that takes every line in the current selection, and if it has a non-zero id, assign it a unique id (UDMF format).
Is there any documentation of Lua API or example script I can look at that does something similar? Or do I just dig around in /src/Scripting/Export/MapEditor.h for this info, or maybe somewhere else?
User avatar
sirjuddington
Posts: 1025
Joined: Wed Jul 16, 2003 4:47 am
Location: Australia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by sirjuddington »

It's definitely possible.

The scripting docs are here: http://slade.mancubus.net/docs/scripting

I guess take a look at the 'Change Textures' example for an example of modifying map data.
gramps
Posts: 300
Joined: Thu Oct 18, 2018 2:16 pm

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by gramps »

sirjuddington wrote:It's definitely possible.

The scripting docs are here: http://slade.mancubus.net/docs/scripting

I guess take a look at the 'Change Textures' example for an example of modifying map data.
Oh man, I feel stupid now.

I looked at that link earlier and thought it was just a placeholder page. Apparently I had the browser window too small; the links at the left disappear entirely at that size, with no indication that something's missing.

Thanks, gonna try it out now. :)
User avatar
Clay
Posts: 190
Joined: Fri Sep 22, 2017 9:52 pm
Location: That one secret you always miss.
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Clay »

Code: Select all

cvars
{
	temp_location                    0
	temp_location_custom             ""
	setup_wizard_run                 1
	dir_last                         "C:/Users/gaming/Downloads"
	update_check                     1
Saving this and opening again did not work for me.
gramps
Posts: 300
Joined: Thu Oct 18, 2018 2:16 pm

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by gramps »

missing a } at the end?
User avatar
Clay
Posts: 190
Joined: Fri Sep 22, 2017 9:52 pm
Location: That one secret you always miss.
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Clay »

nope. Its there.
User avatar
sirjuddington
Posts: 1025
Joined: Wed Jul 16, 2003 4:47 am
Location: Australia
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by sirjuddington »

That's weird, means it's a problem with wxWidgets, it's returning "" when asked for the system temp dir. See if changing it to 1 works (that will use the SLADE install dir instead)
User avatar
Clay
Posts: 190
Joined: Fri Sep 22, 2017 9:52 pm
Location: That one secret you always miss.
Contact:

Re: SLADE Discussion - Latest: v3.1.2 (27/Nov/2018)

Post by Clay »

c

Code: Select all

vars
{
	temp_location                    0
	temp_location_custom             "1"
	setup_wizard_run                 1
	dir_last                         "C:/Users/gaming/Downloads"
	update_check                     1
This worked. Thanks a bunch!
Post Reply

Return to “Creation, Conversion, and Editing”