Announcement

Collapse
No announcement yet.

files.ent : Fog not work

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • files.ent : Fog not work

    when i try play a level with fog in the .ent file, all the screen is white/gray ....

    how to solve this problem please...

  • #2
    remove the fog line.
    the first term is either a density or a distance...
    most engines consider it a density nowadays and thus it should be 0.01 sort of values. if its anything >1 then its going to be really really thick fog.
    Last edited by Spike; 02-27-2012, 08:18 AM.
    Some Game Thing

    Comment


    • #3
      Originally posted by Spike View Post
      remove the fog line.


      Spike is of course absolutely right.

      Seeing that you asked in other threads similar things, and mention that you use DarkPlaces, I wanted to give you the description of what the numbers in the fog line mean:
      fog : set global fog parameters (density red green blue [alpha [mindist [maxdist [top [fadedepth]]]]])
      I dont know if these values are also correct for other engines.
      Play around with the values to find your suitable fog condition.

      Comment


      • #4
        What is the best engine for correct this probleme?

        This is my fog line: "fog" "1 .3 .25 .2 1 20 2000 265 50"

        Seven, i use your .ent files ;-)

        Comment


        • #5
          a density of 1 means " extreme fog", consider lowering that.
          Scout's Journey
          Rune of Earth Magic

          Comment


          • #6
            i have put 0.01 and nothing is happened, same problem

            Comment


            • #7
              I tried your fog line in DP and changing the 1 to 0.01 definitely did something in my case.

              I use a DP release from June 2011.

              Try using only the first four numbers in your fog line.

              Here's something I use in one of my maps:

              fog 0.05 0.025 0.025 0
              Scout's Journey
              Rune of Earth Magic

              Comment


              • #8
                Hello,

                Please dont mix up things here.
                The fog line that Moonlights is mentioning is for ground fog.
                DarkPlaces gives you the possibility to set a z-limit for fog.

                The line is taken from the E1M2.ent file.
                It will look like this:


                The thickness is done on purpose, because that is what ground fog shall look like.

                If you use this line for other maps, the z-value will not match !
                Every map is build in a different z-position.
                That is why you might see no difference in other maps.

                For normal fog (without z-limit), the density value must of course be smaller.
                The last values are only useful for ground fog.

                If you are interested, please read the tutorial to learn more about fog implementation in DarkPlaces: click

                Best wishes,
                Seven

                Comment


                • #9
                  This doesn't really change the fact that I can change the density of the fog and he apparently cannot. Something is wrong there.
                  Scout's Journey
                  Rune of Earth Magic

                  Comment


                  • #10
                    Hello,

                    I just wanted to point out, that the fog lines he might find in several map .ent files are made map specific.
                    You cannot simply copy paste it to other maps.
                    That is important to know.
                    Especially when it comes to ground fog.


                    Back to the root cause:
                    It is most probably the fact that you use several .ent files for the same map.
                    Example:
                    - e1m2.ent is directly in your ID1/maps folder.
                    - e1m2.ent is inside a .pk3 file inside your ID1 folder.
                    - e1m2.ent is maybe even in another .pk3 file too

                    Be sure to type the fog code directly into your console when you are in-game.
                    Without strings, just like this:
                    fog 0.5 .3 .25 .2 1 20 2000 265 50

                    Then it should change at once.
                    If that works, then you must search for all .ent files in your Quake folder.
                    The one inside your ID1/maps folder will override everything else.

                    Regards,
                    Seven

                    Comment

                    Working...
                    X