Home Unreal Engine

BEST lighting for Turn table

polycounter lvl 9
Offline / Send Message
olivierth polycounter lvl 9
Hi,

I want to do a turn table of my character and use 2 or 3 lights. What is the best types of lights to use? How can I get great self shadowing?

What would be the best tutorial?

Thanks.

Replies

  • Froyok
    Options
    Offline / Send Message
    Froyok greentooth
    Try the spotlights/soint lights movable, they will give you the best shadowing system and will be dynamic. Use a skeletal mesh/interp actor for you mesh to be sure to benefit of the best lighting possible.
  • Ace-Angel
    Options
    Offline / Send Message
    Ace-Angel polycounter lvl 12
    Make sure your mesh also has a Physics Attribute/Volume in place, as in SOME cases, it will help with the fidelity of the shadow.
  • olivierth
    Options
    Offline / Send Message
    olivierth polycounter lvl 9
    Can you guys tell me what a "movable" is used for? I had one but it gave me super weird problems on the specular.

    Right now my character is just a static mesh. Are you saying having a skeletal mesh instead would give better lighting/shadows?

    About the physics attribute/volume, are you talking about having a collision object for the character?
  • Santewi
    Options
    Offline / Send Message
    Using movable or skeletal mesh forces dynamic lighting, otherwise it'll use a lower quality preview dynamic lighting because it assumes you are going to bake the lighting later.
  • Froyok
    Options
    Offline / Send Message
    Froyok greentooth
    Skel/Interp actor use an Environment Light (visible in the properties of the actor), this a sort of cubemap that merge all the incoming lighting and compute the dynamic lighting on the object. Static meshes don't have these env light, also static meshes are good for props, not for character because lightmap are not designed to enhance correctly the details on characters.

    Regarding you specular issues : be sure that your UVs are in the right orientation, Up to Down, not upward. Otherwise the UDK will compute wrong data. This shoulsn't affect the dynamic lighting however. Also, on a movable light be sure to disable the "Modulated" lighting, otherwise it will give you some strange shadows that you don't want for a turnable. http://udn.epicgames.com/Three/ModulatedShadows.html


    And yes, if you can, add a physics asset to your character (no need to have a clean, you can use the default generated), this help to compute the shadow volume of your skel mesh.
  • mAlkAv!An
    Options
    Offline / Send Message
    mAlkAv!An polycounter lvl 5
    Movable lights cast full-scene dynamic shadows.

    Immovable lights cast per-object dynamic shadows (e.g. for skeletal meshes, interp actors). This is where a phys asset is going to improve visuals and efficiency.

    Light Environments are an approximation of all lights (static+dynamic) affecting a skeletal mesh. This is important for in-game performance, for a turn table choose what's looking better.
  • Hourences
    Options
    Offline / Send Message
    Hourences polycounter lvl 18
    I tend to use a dynamic mesh with light environment turned off so I get full control over every bit of lighting, and then enable high quality dynamic shadows on the moveable lights (light shadow mode normal).
  • olivierth
    Options
    Offline / Send Message
    olivierth polycounter lvl 9
    Thanks for all the input. I'll try to go over all that and if I'm having other problems, I'll let you know.
Sign In or Register to comment.