Yes.If I disable the [TIMEOFDAY] section, does that mean all parameters with sunrise and sunset in it will be deactivated?
Overfiend
ReserveMemorySizeMb is the minimal amount of memory for textures and geometry which will not be used by my memory allocations. For example, you have 6 Gb or memory for textures and meshes, mod use it as much as possible without allocating RAM, but when free memory left less than ReserveMemorySizeMb, mod begin to use allocations in RAM to keep free space for dynamically loaded-unloaded resources. The benefit is in safer work, the downside in performance if value is too low (resources must be moved to and from vram/ram). The problem is that drivers report values not very nice for performance by adding part of system memory to video memory, so if textures and meshes created in RAM by driver instead of VRAM, then performance is awful when rendering them. I don't know how to fix that, because even render targets can be made in RAM actually (at least saw this on gf9600gt).