Jump to content

psychoanima

Members
  • Posts

    76
  • Joined

  • Last visited

Posts posted by psychoanima

  1. 6 hours ago, brndx said:

    You can change the font and size by calling the correct methods. For example:

    
    myfont = Font:Load("Fonts/arial.ttf",14)
    context:SetFont(myfont)

     

    It works, but it scales/changing all fonts in the game, including menus.

  2. With FPSPlayer there is that unnatural camera movement if the player is using stairs. Sort of jump cut movement, probably caused by collision or something. Is there any way to make smooth stairs climbing? Also, is it possible to swing FPS camera during walk, jump and idle, to mimic realistic movement?

  3. First, just have to ask, do you use the latest nvidia drivers? there is an old for-loop bug in old nvidia drivers.

     

    Yes.

     

     

    Second, to verify this bug, change 2 lines in 08_pp_bloom.lua to use LE own blur shaders (which doesn't use for-loops)

     

     self.shader_hblur = Shader:Load("Shaders/PostEffects/00_shaders/_hblur.shader")
    self.shader_vblur = Shader:Load("Shaders/PostEffects/00_shaders/_vblur.shader")

    to

     self.shader_hblur = Shader:Load("Shaders/PostEffects/Utility/hblur.shader")
    self.shader_vblur = Shader:Load("Shaders/PostEffects/Utility/vblur.shader")

     

    Is it still yellow?

     

    Not anymore.

    • Upvote 1
  4. Josh takes great pride I think in LEs post fx so if you're going to come in with a claim bashing them you better give some solid examples to prove your point.

     

    Unfortunately LE forum terms of use is not allowing to post any example that is coming from other engines. I can post my own screenshots using other engines, but I am afraid that is also against the mentioned terms. Also, I will not suggest you to give other engines a try to prove my point, but the fact is, in my opinion, that post fx needs more work in LE. You have full right to not agree with me, I am just posting opinion based on my personal experience. I am also supporting the work of Josh and I really love LE, but that doesn't prove the fact that some things could be even better in LE :)

  5. You ppl may laugh but post fx is really a big selling point for indie developers. That's something that I really like with UE, Stingray and even S2. Bloom looks very nice to the eyes, eye adaptation although not very realistic makes your game to feel like a big budget, scene/color fringe is a must these days (Kane & Lynch anyone?), and of course DOF. And many engines now have option to even color grade your scene.

     

    I know that game play is what matters, but I am now speaking about aesthetics only. Recently I was playing with S2Engine, and have to say that has really nice post fx inside of it. After turning them all off, whole scene looks, meh...

     

    I would really like to see post fx in LE on higher level of quality, like Unreal has and other trending engines.

    • Upvote 1
  6. You can have lights that only cast shadows on certain types of objects. Set the scene light shadow mode to "static" and only the static scene objects will cast a shadow. This is under the Appearance tab in the properties dialog.

     

    Is it possible to do the same thing for the lights? To affect only certain types of objects?

  7. I would like to make separate lighting in the scene. For example, one set of light to be used for the props only, so when character is moving around to not be affected by these lights. And to have another set of lights only for the character and these lights to skip calculation for the props. I don't know how's going with the other programs, I am coming from Maya world and I am always using this handy option to avoid unwanted light burns/shadows when static/active objects are overlapping in the scene. And it doesn't look fake at all, but very stylish instead.

×
×
  • Create New...