forked from OutlawByteStudios/Persistent-Kingdoms
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader_scenes.py
More file actions
21 lines (16 loc) · 817 Bytes
/
header_scenes.py
File metadata and controls
21 lines (16 loc) · 817 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
###################################################
# header_scenes.py
# This file contains declarations for scenes
# DO NOT EDIT THIS FILE!
###################################################
from header_common import *
scene_name_pos = 0
passages_pos = 8
# flags
sf_indoors = 0x00000001 # The scene shouldn't have a skybox and lighting by sun.
sf_force_skybox = 0x00000002 # Force adding a skybox even if indoors flag is set.
sf_generate = 0x00000100 # Generate terrain by terran-generator.
sf_randomize = 0x00000200 # Randomize terrain generator key.
sf_auto_entry_points = 0x00000400 # Automatically create entry points.
sf_no_horses = 0x00000800 # Horses are not avaible.
sf_muddy_water = 0x00001000 # Changes the shader of the river mesh.