-
Posts
1,620 -
Joined
-
Last visited
Content Type
News Articles
Tutorials
Forums
Downloads
Everything posted by mrwonko
-
Problem porting GLM files into blender
mrwonko replied to Showersinging's topic in Modding Assistance
It doesn't need to be called "base", you just need the correct folder structure inside of it, -
Problem porting GLM files into blender
mrwonko replied to Showersinging's topic in Modding Assistance
what Ramikad said, and make sure to read the included pdf manual for more details. -
Can you share the broken version of the map? This looks like a bug in the code that should be fixed, but we'll need a way to reproduce it first.
-
Help solve the problem with vertex normals
mrwonko replied to Mizopolak's topic in Modding Assistance
Nice. I did a brief search for Blender Merge Normals Across Objects and found this alternate approach, but use whatever works for you. -
Help solve the problem with vertex normals
mrwonko replied to Mizopolak's topic in Modding Assistance
If you're using the Blender add-on, make sure to use the latest release, the version on JKHub does not handle normals properly. If the normals already look like that in your modelling tool, you need to fix them there, first. -
Happy to hepl!
-
I experimented a little, and the name of the .shader file appears to be irrelevant. What helped was renaming the pk3 to come alphabetically before assets, e.g. aaa_animated_sky.pk3. I think for shaders, pk3 load order is reversed from what it usually is.
-
Share your modified pk3 and I can take a look later.
-
The order in which shaders are loaded (and thus override each other) is somewhat unusual, I don't really understand it, but if your pk3 currently comes after assets1 (alphabetically), try changing its name so it comes before, or vice-versa.
-
That map uses the shader textures/mp/s_bespin (defined in mp2.shader), you need to change the first line of your shader to that (but keep the "skyParms" as they are).
-
That looks like it was built as a replacement for the Bespin sky. I don't think the Bespin sky is included in Jedi Academy. What are you trying to achieve? Do you want to replace an existing sky? Or use this as a new sky for use in your own map? Either way, you'll have to change the "textures/skies/bespin" parts. The top one is the name of the shader, as referenced in maps. The one in the "skyParms" is theoretically the path to the textures that make up the sky, though in this case the later "map textures/AnimatedSky/skystars11" puts another image on top of that, so that should not matter.
-
The version on this website is outdated, I have yet to get around to uploading the latest version (I want to do some more fixes/improvements first). I would recommend updating, because older versions may not work on the latest Blender and can lose vertex normals on import.
-
To be able to use (any) Radiant, you need a .map file, but the game only ships with the compiled .bsp files. You may get better results by using SomaZ' BSP importer for Blender and then exporting from Blender.
-
When you are playing the map, you can use the console command "mapname" to find out the name of its bsp. I don't know how to find out which pk3 file it's in, though.
-
Welcome back. Looking great!
-
The problem is not the Blender version, but the plugin version. Older versions of the plugin do not import normals. Use the latest version from here.
-
In principle, adding support for new video formats should very much be possible, but nobody has done it yet, to my knowledge.
-
Entity modding: Adding a cutscene where there was none
mrwonko replied to KyleFan's topic in Modding Assistance
I don't know why your counter is off by one (I guess something unexpected targets it?), but I can explain the "cm_inlinemodel: bad number". Triggers are brush entities, i.e. their volume is represented using brushes, which get compiled into "inline models", i.e. brush models baked into the bsp file. Entity modding keeps these unchanged, and on this map there seem to be 166 of them (*0 to *165). You can reference existing ones, and move them around, but you can't add new ones, at least not with the existing tools. -
20 Brush or Minimalist map challenge?
mrwonko replied to ZeroRaven's topic in General Modding Discussions
Limitations stimulate creativity, could make for a fun contest. But 20 brushes seems extremely low. How about 42 or 69? -
Works for me in EternalJK MP. But you should use slashes ("/") instead of backslashes ("\") in the .sab file.
-
The latest version should be fine.
-
Did you write a .sab file in ext_data/sabers for it? Sharing the PK3 is probably the easiest way for us to find the issue, agreed.
-
Can't load BSP - "Requested feature was omitted at compile time"
mrwonko replied to Botdra's topic in Modding Assistance
The JPG issue you allude to is that JA doesn't support progressive JPG files. You don't have to use TGA to fix that, saving it as a non-progressive JPG also works. I don't know of anything else that causes this error, but the message is very vague, so it's hard to tell for sure.