Jump to content
The Dark Mod Forums

Oszkár's questions.


Oszkár Winkler

Recommended Posts

  • Replies 93
  • Created
  • Last Reply

Top Posters In This Topic

Entity based light sources do not emit light in DR. Will this feature be available in a further version of DR?

There are a couple of features that are not yet there in DarkRadiant, many of which are related to the renderer and the entity class hierarchy. I already started refactoring those entity classes so that they are more like the ones in Doom 3, but it's a lot of work and I'm not done yet.

 

I didn't find any undead creatures in DR. Where are they? :unsure:

We didn't release undead for TDM 1.00, they had some showstopping bugs and we had to exclude them. Expect them in one of the next updates.

Link to comment
Share on other sites

How can I resize a model?

 

You can't resize a model in DR, but if you really want it resized, you can still always do it in a modeling program like Lightwave or Blender (I think), and then follow the wiki entry for getting a new model in-game. It's not as hard as it might seem at first.

What do you see when you turn out the light? I can't tell you but I know that it's mine.

Link to comment
Share on other sites

How can I resize a model?

 

sometimes I use rotation for this. But in this way, model gives strange responses when you climb on it or even touching. So that, you should place the model where player can't access it, or give it solid 0 and place a caulk brush which spans the model. then no problem remains, but lot's of work.

Edited by SiyahParsomen
Link to comment
Share on other sites

sometimes I use rotation for this. But in this way, model gives strange responses when you climb on it or even touching. So that, you should place the model where player can't access it, or give it solid 0 and place a caulk brush which spans the model. then no problem remains, but lot's of work.

Use clip_plusmovables instead of caulk. That way you won't give the renderer more work or draw extra tris if the caulk intersects other worldspawn. Oftentimes, the rotation matrix hack also creates visual anomalies with the normalmap and the specularmap.

yay seuss crease touss dome in ouss nose tair

Link to comment
Share on other sites

Use clip_plusmovables instead of caulk. That way you won't give the renderer more work or draw extra tris if the caulk intersects other worldspawn.

Oftentimes, the rotation matrix hack also creates visual anomalies with the normalmap and the specularmap.

 

yes, these can be a pain too. Infact, I pay attention on placing caulk, but couldn't understand why textures of model turn to awkward.

Link to comment
Share on other sites

When you use the "rotation hack" to resize your models, the normals are not transformed properly. If I recall correctly, the normal vectors of a mesh need to be transformed using the transposed transformation matrix, otherwise they won't stay at 90 degrees to their planes. It's just not designed to be used that way.

 

If you have one specific model you need to be resized, you can post a help request here, and somebody (perhaps me) will resize it for you in Blender or Lightwave.

Link to comment
Share on other sites

When you use the "rotation hack" to resize your models, the normals are not transformed properly. If I recall correctly, the normal vectors of a mesh need to be transformed using the transposed transformation matrix, otherwise they won't stay at 90 degrees to their planes. It's just not designed to be used that way.

 

If you have one specific model you need to be resized, you can post a help request here, and somebody (perhaps me) will resize it for you in Blender or Lightwave.

 

I see, thanks for help. I'll keep it in my mind.

Link to comment
Share on other sites

An important question:

 

I design a mission with the current (TDM 1.0) combat and/or environment system. Then the developer team changes how these work. Is there a way to keep the old systems for my FM?

Edited by Oszkár Winkler

Winkler Studio: youtube.com/user/woszkar

Link to comment
Share on other sites

Hypothetically, right? ;)

 

Yeah. Whatever you put in a PK4 for a mission will override TDM assets. Suppose you need older rope arrow behavior. Put the old code under script/tdm_ammo_ropearrow_small.script and the old script will override the new.

yay seuss crease touss dome in ouss nose tair

Link to comment
Share on other sites

Hypothetically, right? ;)

 

Yeah. Whatever you put in a PK4 for a mission will override TDM assets. Suppose you need older rope arrow behavior. Put the old code under script/tdm_ammo_ropearrow_small.script and the old script will override the new.

 

Not definitely. If I plan a combat situation that works with the old system but fails with the new one, I need to have the old scripts.

 

What happens if I only have the new script? I mean, if I had the old one but lost it and the update contains only the new. Does the team have an archive base? (just for me?) :laugh:

Edited by Oszkár Winkler

Winkler Studio: youtube.com/user/woszkar

Link to comment
Share on other sites

The main answer is that the team is going to try to avoid changing anything that will be a major disruption. But some things will get changed, it you might want to make a mission "update" after that

shadowdark50.gif keep50.gif
Link to comment
Share on other sites

Well, nothing's stopping you from downloading TDM 1.0 again just to get the gamex86.dll and the old combat defs.

 

But Komag is right. TDM 1.0 is essentially a bunch of "finalized" stuff that, if further changed, might break maps. We tweaked it a ton before release, and perhaps tweak it one last time in a patch (after getting community feedback).

yay seuss crease touss dome in ouss nose tair

Link to comment
Share on other sites

Well, nothing's stopping you from downloading TDM 1.0 again just to get the gamex86.dll and the old combat defs.

 

But Komag is right. TDM 1.0 is essentially a bunch of "finalized" stuff that, if further changed, might break maps. We tweaked it a ton before release, and perhaps tweak it one last time in a patch (after getting community feedback).

 

Hm... so TDM 1.0 is really a beta version. Is it a good idea then to begin a whole campaign for TDM 1.0 right now or should I wait for a "more final" update? Sorry for my stupid questions. :rolleyes:

Winkler Studio: youtube.com/user/woszkar

Link to comment
Share on other sites

Nothing important is going to change, unless we really have to - and even then we'll be very careful about preserving the playability of existing FMs. Don't worry about it. All the future changes will be (1) fixing anything that's obviously broken, and (2) adding new assets/features which don't impact old maps.

 

If a game-breaking change is introduced, we'll either fix that ASAP, or tell FM authors how to revert their FMs to the old behaviour. But hopefully that shouldn't be necessary.

 

So please don't hesitate to go ahead and make your campaign. :)

My games | Public Service Announcement: TDM is not set in the Thief universe. The city in which it takes place is not the City from Thief. The player character is not called Garrett. Any person who contradicts these facts will be subjected to disapproving stares.
Link to comment
Share on other sites

Nothing important is going to change, unless we really have to - and even then we'll be very careful about preserving the playability of existing FMs. Don't worry about it. All the future changes will be (1) fixing anything that's obviously broken, and (2) adding new assets/features which don't impact old maps.

 

If a game-breaking change is introduced, we'll either fix that ASAP, or tell FM authors how to revert their FMs to the old behaviour. But hopefully that shouldn't be necessary.

 

So please don't hesitate to go ahead and make your campaign. :)

 

This is good news. :rolleyes: Then I begin my story right away! Probably I will ask many questions here because time is a factor. If I have to find out everything by myself, my project would take years to be finished. I prepared everything. Story, characters, etc... but this is not official information yet. -_-

 

Oh! I didn't find any real videos in the currently released FMs. It is possible to change the briefing screen to a video right? And can I connect my missions and videos for my whole campaign? So finally we get a PK4 which contains 5 missions and videos?

Edited by Oszkár Winkler

Winkler Studio: youtube.com/user/woszkar

Link to comment
Share on other sites

Yes, videos can be substituted. Not tested for campaigns, but entirely possible.

 

Beware that multi-mission support is planned, but not implemented yet. This is something we will hand in later down the road, but given the time it takes to create a full campaign (I hope you don't underestimate this kind of effort!) this won't stop you from starting it.

 

Recommendation: never start a campaign as your first mapping project. You'll fail, or it will suck huge balls.

Link to comment
Share on other sites

Beware that multi-mission support is planned, but not implemented yet. This is something we will hand in later down the road, but given the time it takes to create a full campaign (I hope you don't underestimate this kind of effort!) this won't stop you from starting your campaign.

 

Recommendation: never start a campaign as your first mapping project.

 

Anyway, I still can publish my campaign in little parts, however the feeling would be different, so I guess I won't do it that way. Yes, I know. There is a hard road ahead of me. I already have mapping and game designing experiences (just a hobby), but this will be a hell of a ride! I was always crazy, so don't worry. Sometime I will finish it. Even if it takes years. :laugh:

Winkler Studio: youtube.com/user/woszkar

Link to comment
Share on other sites

Better take a mission by mission approach and string together the pieces when everything is finished (unless the narrative forces the multi-mission structure). Frobber's KotP campaign, the Rocksbourg series, Sensut's Dracula/Báthory and my missions (which, except for Unbidden Guest, are interrelated and sequential) have all been released piecemeal. Completed campaigns released in one piece have been much less common (T2X, Calendra's Legacy and The Seven Sisters being obvious exceptions). Of course, if the missions are relatively small, a campaign may be easier to do.

Come the time of peril, did the ground gape, and did the dead rest unquiet 'gainst us. Our bands of iron and hammers of stone prevailed not, and some did doubt the Builder's plan. But the seals held strong, and the few did triumph, and the doubters were lain into the foundations of the new sanctum. -- Collected letters of the Smith-in-Exile, Civitas Approved

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.


  • Recent Status Updates

    • The Black Arrow

      Hey @nbohr1morehow come the zombies in The Dark Mod don't have a "resurrection" mechanic to it, similar to how Thief has it?
      They're quite a weak creature as of right now, it's merely a walking corpse that slashes you, making attacking them to kill them an actual strategy.
      Would be better if they had some cool mechanism to it that truly makes them a danger, such as the resurrection idea itself.
      · 2 replies
    • Ansome

      Query: when was the last time a zombie in a video game was unnerving or scary to you? I'm chipping away at my anniversary submission and I've been trying to gather opinions on the subject. I'm perfectly capable of lighting them well, changing their sfx, and creating effective ambience, but I'm worried that zombies at their core are just too overdone to be an effective payoff to the tension I'm creating.
      · 4 replies
    • nbohr1more

      The Lieutenant 3 is out! Congrats Frost_Salamander! ( raising awareness )
      · 2 replies
    • OrbWeaver

      Has anyone had any luck with textures from Polyhaven? Their OpenEXR normal maps seem too washed out and give incorrect shading in the engine.
      · 5 replies
    • datiswous

      I tried to upscale the TDM logo video. First try:

      briefing_video.mp4 You can test it ingame by making a copy of the core tdm_gui.mtr and place it in your-tdm-root/materials/ , then edit line 249 of that file into the location where you placed the new briefing.mp4 file.
      What I did was I extracted all the image files, then used Upscayl to upscale the images using General photo (Real-Esrgan) upscale setting and then turn it back into a video.
      I might have to crop it a bit, the logo looks smaller on screen (or maybe it's actually better this way?). My video editor turned it into a 16:9 video, which I think overal looks better than 1:1 video of original.
      · 1 reply
×
×
  • Create New...