map works
This commit is contained in:
parent
8e1fd311f7
commit
aa1d8cac44
409 changed files with 36191 additions and 1277251 deletions
|
|
@ -13,7 +13,7 @@
|
||||||
MULTIPLAYER_EVENT_TIME_OUT = 90 # how many days an event in multiplayer will be around before auto-selecting an option
|
MULTIPLAYER_EVENT_TIME_OUT = 90 # how many days an event in multiplayer will be around before auto-selecting an option
|
||||||
COURT_EVENT_TIME_OUT = 180 # how many days a court event will be around before auto-selecting an option, applies to single and multi player
|
COURT_EVENT_TIME_OUT = 180 # how many days a court event will be around before auto-selecting an option, applies to single and multi player
|
||||||
|
|
||||||
BENCHMARK_TEST_DURATION = 135 # How long, in seconds, should a benchmark test using "-benchmark" last?
|
BENCHMARK_VIEWS_TEST_DURATION = 135 # How long, in seconds, should the benchmark test using "-benchmark" iterate over views before starting to test royal courts?
|
||||||
BENCHMARK_INTERFACE_INTERVAL = 5.0 # How long, in seconds, should the benchmark wait before changing the open UI window?
|
BENCHMARK_INTERFACE_INTERVAL = 5.0 # How long, in seconds, should the benchmark wait before changing the open UI window?
|
||||||
BENCHMARK_OBSERVE_CHARACTER = k_england # Which character should be observed?
|
BENCHMARK_OBSERVE_CHARACTER = k_england # Which character should be observed?
|
||||||
|
|
||||||
|
|
@ -36,13 +36,14 @@
|
||||||
1850 3700 2 4
|
1850 3700 2 4
|
||||||
1650 3200 2 1
|
1650 3200 2 1
|
||||||
}
|
}
|
||||||
|
MERIT_GUI_UPDATE_INTERVAL = 60 # How often the Merit Pool GUI is updated in frames
|
||||||
}
|
}
|
||||||
|
|
||||||
NSetup = {
|
NSetup = {
|
||||||
# chance that a courtless character is sent to a court as a guest instead of a regular courtier on game start (0..1)
|
# chance that a courtless character is sent to a court as a guest instead of a regular courtier on game start (0..1)
|
||||||
COURTLESS_CHARACTER_GUEST_CHANCE = 0
|
COURTLESS_CHARACTER_GUEST_CHANCE = 0
|
||||||
# Random range for number of characters per pool (duchy) generated at the start of the game
|
# Random range for number of characters per pool (duchy) generated at the start of the game
|
||||||
GENERATED_POOL_CHARACTERS = { 6 10 }
|
GENERATED_POOL_CHARACTERS = { 2 6 }
|
||||||
# Templates used for the pool character. The weights correspond to the template names at the same index.
|
# Templates used for the pool character. The weights correspond to the template names at the same index.
|
||||||
# The scope of the template is a random ruler whose capital is in that pool.
|
# The scope of the template is a random ruler whose capital is in that pool.
|
||||||
GENERATED_POOL_CHARACTER_TEMPLATES = {
|
GENERATED_POOL_CHARACTER_TEMPLATES = {
|
||||||
|
|
@ -70,10 +71,10 @@ NSetup = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NJominiMap = {
|
NJominiMap = {
|
||||||
WORLD_EXTENTS_X = 8191
|
WORLD_EXTENTS_X = 9215
|
||||||
WORLD_EXTENTS_Y = 51
|
WORLD_EXTENTS_Y = 50
|
||||||
WORLD_EXTENTS_Z = 4095
|
WORLD_EXTENTS_Z = 4607
|
||||||
WATERLEVEL = 3.8
|
WATERLEVEL = 3 ### 0.06 in 0-1, 19 in 0-255, use 11% HSB in Photoshop
|
||||||
}
|
}
|
||||||
|
|
||||||
NSkills = {
|
NSkills = {
|
||||||
|
|
@ -115,7 +116,6 @@ NCharacter = {
|
||||||
|
|
||||||
MAX_STRESS_LEVEL = 3 # The maximum stress level
|
MAX_STRESS_LEVEL = 3 # The maximum stress level
|
||||||
STRESS_PER_LEVEL = 100 # Stress per level
|
STRESS_PER_LEVEL = 100 # Stress per level
|
||||||
STRESS_MONTHLY_CHANGE = 0 # stress is drifiting changing by this value towards character's base stability each month
|
|
||||||
|
|
||||||
MAX_DREAD = 100
|
MAX_DREAD = 100
|
||||||
BASE_DREAD = 0
|
BASE_DREAD = 0
|
||||||
|
|
@ -137,6 +137,7 @@ NCharacter = {
|
||||||
5000 # Duchy
|
5000 # Duchy
|
||||||
15000 # Kingdom
|
15000 # Kingdom
|
||||||
20000 # Empire
|
20000 # Empire
|
||||||
|
20000 # Hegemony
|
||||||
}
|
}
|
||||||
GOLD_FROM_HERD_FACTOR = 0.0005 # The amount of herd that provides monthly gold income
|
GOLD_FROM_HERD_FACTOR = 0.0005 # The amount of herd that provides monthly gold income
|
||||||
|
|
||||||
|
|
@ -150,21 +151,31 @@ NCharacter = {
|
||||||
|
|
||||||
# experience needed for piety/prestige/influence levels - first/negative level requires 1000, then 350 etc.
|
# experience needed for piety/prestige/influence levels - first/negative level requires 1000, then 350 etc.
|
||||||
# evety character by default starts at respective ZERO_LEVEL with enough experience for it
|
# evety character by default starts at respective ZERO_LEVEL with enough experience for it
|
||||||
LEVELS_PIETY = { 1000 1500 2500 4500 8500 }
|
LEVELS_PIETY = { 1000 1500 2500 4500 8500 13000 17000 22500 }
|
||||||
LEVELS_PRESTIGE = { 1000 2000 5000 10000 25000 }
|
LEVELS_PRESTIGE = { 1000 2000 5000 10000 25000 }
|
||||||
LEVELS_INFLUENCE = { 1000 2000 4000 8000 16000 }
|
LEVELS_INFLUENCE = { 1000 2000 4000 8000 16000 }
|
||||||
|
LEVELS_MERIT = { 100 1000 2000 3500 5500 8500 12000 17000 23000 }
|
||||||
|
|
||||||
|
# default max level index (0-based) for governments. Can be overridden with field currency_levels_cap in the government type
|
||||||
|
DEFAULT_PIETY_LEVEL_CAP = 5
|
||||||
|
DEFAULT_PRESTIGE_LEVEL_CAP = 5
|
||||||
|
DEFAULT_INFLUENCE_LEVEL_CAP = 5
|
||||||
|
DEFAULT_MERIT_LEVEL_CAP = 1
|
||||||
# when characters drop a level in piety/prestige/influence, they retain progress toward new level, capped by these values
|
# when characters drop a level in piety/prestige/influence, they retain progress toward new level, capped by these values
|
||||||
LEVEL_DROP_MAX_RETAINED_PROGRESS_PIETY = 0.5
|
LEVEL_DROP_MAX_RETAINED_PROGRESS_PIETY = 0.5
|
||||||
LEVEL_DROP_MAX_RETAINED_PROGRESS_PRESTIGE = 0.5
|
LEVEL_DROP_MAX_RETAINED_PROGRESS_PRESTIGE = 0.5
|
||||||
LEVEL_DROP_MAX_RETAINED_PROGRESS_INFLUENCE = 0.5
|
LEVEL_DROP_MAX_RETAINED_PROGRESS_INFLUENCE = 0.5
|
||||||
|
LEVEL_DROP_MAX_RETAINED_PROGRESS_MERIT = 0.5
|
||||||
# how many steps for the graphical level changes
|
# how many steps for the graphical level changes
|
||||||
LEVELS_PIETY_GRAPHICAL_STEP = 1
|
LEVELS_PIETY_GRAPHICAL_STEP = 1
|
||||||
LEVELS_PRESTIGE_GRAPHICAL_STEP = 1
|
LEVELS_PRESTIGE_GRAPHICAL_STEP = 1
|
||||||
LEVELS_INFLUENCE_GRAPHICAL_STEP = 1
|
LEVELS_INFLUENCE_GRAPHICAL_STEP = 1
|
||||||
|
LEVELS_MERIT_GRAPHICAL_STEP = 1
|
||||||
# what level is considered to be the "zero" level
|
# what level is considered to be the "zero" level
|
||||||
PIETY_ZERO_LEVEL = 1
|
PIETY_ZERO_LEVEL = 1
|
||||||
PRESTIGE_ZERO_LEVEL = 1
|
PRESTIGE_ZERO_LEVEL = 1
|
||||||
INFLUENCE_ZERO_LEVEL = 1
|
INFLUENCE_ZERO_LEVEL = 1
|
||||||
|
MERIT_ZERO_LEVEL = 0
|
||||||
|
|
||||||
TODDLER_AGE = 3
|
TODDLER_AGE = 3
|
||||||
CHILDHOOD_AGE = 6
|
CHILDHOOD_AGE = 6
|
||||||
|
|
@ -219,12 +230,9 @@ NCharacter = {
|
||||||
#Character window info
|
#Character window info
|
||||||
MAX_RELATIONS_TO_SHOW = 3
|
MAX_RELATIONS_TO_SHOW = 3
|
||||||
|
|
||||||
PRESTIGE_FROM_DYNASTY_ON_MARRIAGE_FACTOR = 0.1
|
|
||||||
PRESTIGE_FROM_DYNASTY_ON_BORN_FACTOR = 0.2
|
|
||||||
MARRIAGE_TIER_DIFF_PRESTIGE_MULT = 100
|
MARRIAGE_TIER_DIFF_PRESTIGE_MULT = 100
|
||||||
|
|
||||||
# Multiplied with distance
|
# Multiplied with distance
|
||||||
CHARACTER_TRAVEL_TIME = 0.1
|
|
||||||
FOCUS_CHILD_MIN_AGE = 6
|
FOCUS_CHILD_MIN_AGE = 6
|
||||||
FOCUS_CHILD_MAX_CHANGES = 1
|
FOCUS_CHILD_MAX_CHANGES = 1
|
||||||
FOCUS_ADULT_COOLDOWN_MONTHS = 60
|
FOCUS_ADULT_COOLDOWN_MONTHS = 60
|
||||||
|
|
@ -234,6 +242,7 @@ NCharacter = {
|
||||||
MAX_PARENT_STEPS_FOR_HEIR = 6 # If we can't find enough descendants, how many steps upwards can we try to search?
|
MAX_PARENT_STEPS_FOR_HEIR = 6 # If we can't find enough descendants, how many steps upwards can we try to search?
|
||||||
MIN_HEIR_TO_FIND = 20 # How many heirs should we find before we stop finding more? Note that a higher number here can worsen performance
|
MIN_HEIR_TO_FIND = 20 # How many heirs should we find before we stop finding more? Note that a higher number here can worsen performance
|
||||||
MAX_HEIRS_IN_LINE_OF_SUCCESSION_TOOLTIP = 5 # How many heirs should we show in [LandedTitle.GetLineOfSuccessionDesc]
|
MAX_HEIRS_IN_LINE_OF_SUCCESSION_TOOLTIP = 5 # How many heirs should we show in [LandedTitle.GetLineOfSuccessionDesc]
|
||||||
|
MAX_APPOINTMENT_BY_LEVEL = 5 # Desired number of heirs in leveled appointment (meritocratic). Above that number it will discard people of lower level
|
||||||
|
|
||||||
MAX_POTENTIAL_SPOUSES = 100000 #Number of entries shown in the marry off-interaction
|
MAX_POTENTIAL_SPOUSES = 100000 #Number of entries shown in the marry off-interaction
|
||||||
MONTHS_OF_INCOME_AT_START = 36 # Rulers will start with this many months worth of income
|
MONTHS_OF_INCOME_AT_START = 36 # Rulers will start with this many months worth of income
|
||||||
|
|
@ -245,6 +254,10 @@ NCharacter = {
|
||||||
MAA_STARTING_EXPENSE_MAX = 0.35 # Rulers will never start out spending more than this on men at arms. For poor rulers this can mean they end up under MAA_STARTING_EXPENSE_MIN if one more MaA would put them above the max
|
MAA_STARTING_EXPENSE_MAX = 0.35 # Rulers will never start out spending more than this on men at arms. For poor rulers this can mean they end up under MAA_STARTING_EXPENSE_MIN if one more MaA would put them above the max
|
||||||
MAA_STARTING_PRESTIGE_EXPENSE_MIN = 0.4 # Rulers at game start will start out spending this much prestige (or a bit more, as it'll overshoot) on men at arms
|
MAA_STARTING_PRESTIGE_EXPENSE_MIN = 0.4 # Rulers at game start will start out spending this much prestige (or a bit more, as it'll overshoot) on men at arms
|
||||||
MAA_STARTING_PRESTIGE_EXPENSE_MAX = 0.55 # Rulers will never start out spending more than this much prestige on men at arms. For prestige-poor rulers this can mean they end up under MAA_STARTING_PRESTIGE_EXPENSE_MIN if one more MaA would put them above the max
|
MAA_STARTING_PRESTIGE_EXPENSE_MAX = 0.55 # Rulers will never start out spending more than this much prestige on men at arms. For prestige-poor rulers this can mean they end up under MAA_STARTING_PRESTIGE_EXPENSE_MIN if one more MaA would put them above the max
|
||||||
|
MAA_STARTING_TREASURY_EXPENSE_MIN = 0.2 # Rulers at game start will start out spending this much treasury (or a bit more, as it'll overshoot) on men at arms
|
||||||
|
MAA_STARTING_TREASURY_EXPENSE_MAX = 0.35 # Rulers will never start out spending more than this treasury on men at arms. For treasury-poor rulers this can mean they end up under MAA_STARTING_TREASURY_EXPENSE_MIN if one more MaA would put them above the max
|
||||||
|
MAA_STARTING_BARTER_GOODS_EXPENSE_MIN = 0.1 # Rulers at game start will start out spending this much barter goods (or a bit more, as it'll overshoot) on men at arms
|
||||||
|
MAA_STARTING_BARTER_GOODS_EXPENSE_MAX = 0.2 # Rulers will never start out spending more than this much barter goods on men at arms. For barter goods-poor rulers this can mean they end up under MAA_STARTING_BARTER_GOODS_EXPENSE_MIN if one more MaA would put them above the max
|
||||||
|
|
||||||
MAXIMUM_DIPLOMATIC_RANGE = 1000
|
MAXIMUM_DIPLOMATIC_RANGE = 1000
|
||||||
MAXIMUM_DIPLOMATIC_RANGE_RESTRICTED = 750 # Used if a game rule with the restricted_diplomatic_range flag is used
|
MAXIMUM_DIPLOMATIC_RANGE_RESTRICTED = 750 # Used if a game rule with the restricted_diplomatic_range flag is used
|
||||||
|
|
@ -270,13 +283,17 @@ NCharacter = {
|
||||||
PARTITION_SCORE_PER_OTHER_COUNTY = 1 # How much score does a county another heir owns take away in Partition when selecting a title? The higher this is, the more we encourage getting a title that other heirs don't have land in
|
PARTITION_SCORE_PER_OTHER_COUNTY = 1 # How much score does a county another heir owns take away in Partition when selecting a title? The higher this is, the more we encourage getting a title that other heirs don't have land in
|
||||||
|
|
||||||
# How many concubines does a ruler of a given tier desire if their faith allows concubines
|
# How many concubines does a ruler of a given tier desire if their faith allows concubines
|
||||||
DESIRED_CONCUBINES_PER_TIER = { 0 0 0 1 2 3 }
|
DESIRED_CONCUBINES_PER_TIER = { 0 0 0 1 2 3 3 }
|
||||||
PRESTIGE_LOSS_PER_MISSING_CONCUBINE = 0.1 # Monthly prestige loss per missing (fertile) concubine
|
PRESTIGE_LOSS_PER_MISSING_CONCUBINE = 0.1 # Monthly prestige loss per missing (fertile) concubine
|
||||||
|
|
||||||
DEBT_MODIFIER_THRESHOLDS = { # When do the debt modifiers kick in, by months of income of debt
|
DEBT_MODIFIER_THRESHOLDS = { # When do the debt modifiers kick in, by months of income of debt
|
||||||
# Match to the modifier debt_level_i and combat_debt_level_i. Starts with 0
|
# Match to the modifier debt_level_i and combat_debt_level_i. Starts with 0
|
||||||
0 12 24 36 48 60 120 300 600 1200
|
0 12 24 36 48 60 120 300 600 1200
|
||||||
}
|
}
|
||||||
|
TREASURY_DEBT_MODIFIER_THRESHOLDS = { # When do the debt modifiers kick in, by months of income of treasury debt
|
||||||
|
# Match to the modifier treasury_debt_level_i and treasury_combat_debt_level_i. Starts with 0
|
||||||
|
0 12 24 36 48 60 120 300 600 1200
|
||||||
|
}
|
||||||
|
|
||||||
COURT_GRANDEUR_MONTHLY_CHANGE = 0.2
|
COURT_GRANDEUR_MONTHLY_CHANGE = 0.2
|
||||||
GENDER_PREFERENCE_PROBABILITY = 0.75 # chance (0-1) of a character created from pool being from prefered gender of gender preference law
|
GENDER_PREFERENCE_PROBABILITY = 0.75 # chance (0-1) of a character created from pool being from prefered gender of gender preference law
|
||||||
|
|
@ -300,6 +317,7 @@ NOldAge = {
|
||||||
LOWER_HEALTH_YEARLY_INCREASE = 0.022 # This is the yearly increase of the chance to lose health
|
LOWER_HEALTH_YEARLY_INCREASE = 0.022 # This is the yearly increase of the chance to lose health
|
||||||
LOWER_HEALTH_AMOUNT = -0.125 # This is the health change on each failed yearly health roll
|
LOWER_HEALTH_AMOUNT = -0.125 # This is the health change on each failed yearly health roll
|
||||||
HEALTH_PENALTY_PER_YEAR_IN_POOL = 0.1 # For each year in the pool, your effective health is this much lower. This disappears entirely when you leave the pool
|
HEALTH_PENALTY_PER_YEAR_IN_POOL = 0.1 # For each year in the pool, your effective health is this much lower. This disappears entirely when you leave the pool
|
||||||
|
ELDERLY_POOL_HEALTH_PENALTY = 2.0 # Elderly characters in the pool will have their effective health reduced by this amount for death checks
|
||||||
|
|
||||||
# This DIE values are used with a quadratic chance.
|
# This DIE values are used with a quadratic chance.
|
||||||
DIE_HEALTH_TRESHOLD = 3.0 # Characters have a chance to die each month they have less health than this
|
DIE_HEALTH_TRESHOLD = 3.0 # Characters have a chance to die each month they have less health than this
|
||||||
|
|
@ -316,12 +334,17 @@ NOldAge = {
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NRulerObjective = {
|
||||||
|
ADVICE_RELEVANCE_LIMIT = 0 # Lower advice relevance value where the advice will still show.
|
||||||
|
MAX_NUMBER_OF_ADVICE = 10 # Number of different advice to show in the Ruler Objective view.
|
||||||
|
}
|
||||||
|
|
||||||
NChildbirth = {
|
NChildbirth = {
|
||||||
MIN_REPRODUCTION_AGE_IN_HISTORY_DB = 12 # If a historical parent is younger than this when their child is born, we log an error
|
MIN_REPRODUCTION_AGE_IN_HISTORY_DB = 12 # If a historical parent is younger than this when their child is born, we log an error
|
||||||
MIN_FEMALE_REPRODUCTION_AGE = 16
|
MIN_FEMALE_REPRODUCTION_AGE = 16
|
||||||
MAX_FEMALE_REPRODUCTION_AGE = 45
|
MAX_FEMALE_REPRODUCTION_AGE = 45
|
||||||
MIN_MALE_REPRODUCTION_AGE = 16
|
MIN_MALE_REPRODUCTION_AGE = 16
|
||||||
BASE_NR_OF_CHILDREN_PER_COUPLE = { 1 1 2 3 5 5 } # Based on tier of character or parents; whichever is higher Unlanded, Baron, Count, ..., Emperor
|
BASE_NR_OF_CHILDREN_PER_COUPLE = { 1 1 2 3 5 5 8 } # Based on tier of character or parents; whichever is higher Unlanded, Baron, Count, ..., Emperor, Hegemon
|
||||||
CHANCE_OF_LOWERED_CHILD_LIMIT = 0.5 # Chance that the child limit is lowered by 1
|
CHANCE_OF_LOWERED_CHILD_LIMIT = 0.5 # Chance that the child limit is lowered by 1
|
||||||
EXTRA_CHILDREN_FOR_RULERS = 2 # If either character is a ruler, they get extra children
|
EXTRA_CHILDREN_FOR_RULERS = 2 # If either character is a ruler, they get extra children
|
||||||
CHARACTER_IN_POOL_CHILD_LIMIT = -1 # If in the pool, child limit is modified by this
|
CHARACTER_IN_POOL_CHILD_LIMIT = -1 # If in the pool, child limit is modified by this
|
||||||
|
|
@ -437,9 +460,9 @@ NCharacterOpinion = {
|
||||||
|
|
||||||
SAME_DYNASTY = 5
|
SAME_DYNASTY = 5
|
||||||
|
|
||||||
PIOUS = { -10 0 5 10 20 30 }
|
PIOUS = { -10 0 5 10 20 30 40 55 75 }
|
||||||
PRESTIGIOUS = { -10 0 5 10 20 30 }
|
PRESTIGIOUS = { -10 0 5 10 20 30 }
|
||||||
PIOUS_MAGNIFICENCE = { -5 0 3 5 10 15 }
|
PIOUS_MAGNIFICENCE = { -5 0 3 5 10 15 20 25 35 }
|
||||||
|
|
||||||
SKILL_DIPLOMACY_MULT = 1 # opinion = round( ( <diplo skill> - SKILL_MODIFIER_OFFSET ) * SKILL_DIPLOMACY_MULT )
|
SKILL_DIPLOMACY_MULT = 1 # opinion = round( ( <diplo skill> - SKILL_MODIFIER_OFFSET ) * SKILL_DIPLOMACY_MULT )
|
||||||
|
|
||||||
|
|
@ -482,13 +505,15 @@ NCharacterOpinion = {
|
||||||
DE_JURE_COUNTY = -25
|
DE_JURE_COUNTY = -25
|
||||||
DE_JURE_DUCHY = -25
|
DE_JURE_DUCHY = -25
|
||||||
DE_JURE_KINGDOM = -30
|
DE_JURE_KINGDOM = -30
|
||||||
EMPIRE_IS_VALID_DE_JURE_LIEGE_FOR_DUCHY = yes # Dukes won't be upset as the vassal of their dejure emperor
|
ENABLE_RIGHTFUL_LIEGE_EXCEPTIONS = yes # Dukes won't be upset as the vassal of their dejure emperor
|
||||||
PARTIALLY_NON_RIGHTFUL_LIEGE_TAX_MULT = 0.75 # Tax mult when partially non-rightful liege (liege doesn't hold dejure liege title of the vassal's primary, or empire for a duke if EMPIRE_IS_VALID_DE_JURE_LIEGE_FOR_DUCHY)
|
PARTIALLY_NON_RIGHTFUL_LIEGE_TAX_MULT = 0.75 # Tax mult when partially non-rightful liege (liege doesn't hold dejure liege title of the vassal's primary, or empire for a duke if ENABLE_RIGHTFUL_LIEGE_EXCEPTIONS)
|
||||||
PARTIALLY_NON_RIGHTFUL_LIEGE_LEVY_MULT = 0.75 # Tax mult when partially non-rightful liege
|
PARTIALLY_NON_RIGHTFUL_LIEGE_LEVY_MULT = 0.75 # Tax mult when partially non-rightful liege
|
||||||
PARTIALLY_NON_RIGHTFUL_LIEGE_HERD_MULT = 1 # Herd mult when partially non-rightful liege
|
PARTIALLY_NON_RIGHTFUL_LIEGE_HERD_MULT = 1 # Herd mult when partially non-rightful liege
|
||||||
|
PARTIALLY_NON_RIGHTFUL_LIEGE_BARTER_GOODS_MULT = 1 # Barter Goods mult when partially non-rightful liege
|
||||||
NON_RIGHTFUL_LIEGE_TAX_MULT = 0.5 # Tax mult when non-rightful liege (liege doesn't hold *any* dejure liege title)
|
NON_RIGHTFUL_LIEGE_TAX_MULT = 0.5 # Tax mult when non-rightful liege (liege doesn't hold *any* dejure liege title)
|
||||||
NON_RIGHTFUL_LIEGE_LEVY_MULT = 0.5 # Tax mult when non-rightful liege
|
NON_RIGHTFUL_LIEGE_LEVY_MULT = 0.5 # Tax mult when non-rightful liege
|
||||||
NON_RIGHTFUL_LIEGE_HERD_MULT = 0.5 # Herd mult when non-rightful liege
|
NON_RIGHTFUL_LIEGE_HERD_MULT = 0.5 # Herd mult when non-rightful liege
|
||||||
|
NON_RIGHTFUL_LIEGE_BARTER_GOODS_MULT = 0.5 # Barter Goods mult when non-rightful liege
|
||||||
PARTIALLY_NON_RIGHTFUL_LIEGE_OPINION = -5 # Opinion penalty for being non-rightful liege
|
PARTIALLY_NON_RIGHTFUL_LIEGE_OPINION = -5 # Opinion penalty for being non-rightful liege
|
||||||
NON_RIGHTFUL_LIEGE_OPINION = -5 # Opinion penalty for being partially non-rightful liege
|
NON_RIGHTFUL_LIEGE_OPINION = -5 # Opinion penalty for being partially non-rightful liege
|
||||||
MAX_DUCHIES_BEFORE_PENALTY = 2 # How many duchies are vassals fine with you having? If you're a duke, they don't care; only if you're king or above
|
MAX_DUCHIES_BEFORE_PENALTY = 2 # How many duchies are vassals fine with you having? If you're a duke, they don't care; only if you're king or above
|
||||||
|
|
@ -510,6 +535,31 @@ NCharacterInteraction = {
|
||||||
NEARBY_DOMICILE_RANGE = 500 # How close does a domicile have to be for it to be considered "nearby". Uses same distance units as diplomatic range.
|
NEARBY_DOMICILE_RANGE = 500 # How close does a domicile have to be for it to be considered "nearby". Uses same distance units as diplomatic range.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
NGovernment = {
|
||||||
|
GOVERNMENT_TYPES = {
|
||||||
|
"feudal_government"
|
||||||
|
"republic_government"
|
||||||
|
"theocracy_government"
|
||||||
|
"clan_government"
|
||||||
|
"tribal_government"
|
||||||
|
"mercenary_government"
|
||||||
|
"holy_order_government"
|
||||||
|
"administrative_government"
|
||||||
|
"landless_adventurer_government"
|
||||||
|
"nomad_government"
|
||||||
|
"herder_government"
|
||||||
|
"celestial_government"
|
||||||
|
"japan_administrative_government"
|
||||||
|
"japan_feudal_government"
|
||||||
|
"mandala_government"
|
||||||
|
"wanua_government"
|
||||||
|
"meritocratic_government"
|
||||||
|
"steppe_admin_government"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
NActionPoints = {
|
NActionPoints = {
|
||||||
MONTHLY_GAIN_THRESHOLD = 999
|
MONTHLY_GAIN_THRESHOLD = 999
|
||||||
BASE_MONTHLY_GAIN = 3
|
BASE_MONTHLY_GAIN = 3
|
||||||
|
|
@ -521,17 +571,16 @@ NCombat = {
|
||||||
COMBAT_ROLL_DAYS = 3 # How many days are there between rolls?
|
COMBAT_ROLL_DAYS = 3 # How many days are there between rolls?
|
||||||
COMBAT_EVENT_DAYS = 5 # How many days are there between knight events?
|
COMBAT_EVENT_DAYS = 5 # How many days are there between knight events?
|
||||||
|
|
||||||
DEVIATION_FALLOFF = 0.1 # If the mean was clamped to ACTION_LEVELS, the standard deviation is decreased using this factor (the higher the value the faster the decrease)
|
|
||||||
WAR_ATTACKER_COMBAT_SCORE_SCALE = 50 # Scale factor for how much war score battles give to the war attacker. Can be overriden by CB
|
WAR_ATTACKER_COMBAT_SCORE_SCALE = 50 # Scale factor for how much war score battles give to the war attacker. Can be overriden by CB
|
||||||
WAR_DEFENDER_COMBAT_SCORE_SCALE = 50 # Scale factor for how much war score battles give to the war defender. Can be overriden by CB
|
WAR_DEFENDER_COMBAT_SCORE_SCALE = 50 # Scale factor for how much war score battles give to the war defender. Can be overriden by CB
|
||||||
WAR_ATTACKER_COMBAT_MAX_SCORE = 50 # The maximum amount of warscore gained from a single battle by the war attacker
|
WAR_ATTACKER_COMBAT_MAX_SCORE = 50 # The maximum amount of warscore gained from a single battle by the war attacker
|
||||||
WAR_DEFENDER_COMBAT_MAX_SCORE = 50 # The maximum amount of warscore gained from a single battle by the war attacker
|
WAR_DEFENDER_COMBAT_MAX_SCORE = 50 # The maximum amount of warscore gained from a single battle by the war attacker
|
||||||
MANEUVER_PHASE_DAYS = 3 # How many days should the maneuver phase last
|
MANEUVER_PHASE_DAYS = 3 # How many days should the maneuver phase last
|
||||||
LEVY_TOUGHNESS = 10 # How much toughness does each levy soldier have
|
LEVY_TOUGHNESS = 15 # How much toughness does each levy soldier have
|
||||||
LEVY_ATTACK = 10 # How much attack does each levy soldier have
|
LEVY_ATTACK = 15 # How much attack does each levy soldier have
|
||||||
LEVY_SIEGE = 0.01 # How much siege bonus does each levy soldier have
|
LEVY_SIEGE = 1 # How much siege bonus does each levy soldier have
|
||||||
LEVY_PURSUIT = 1 # How much pursuit does each levy soldier have
|
LEVY_PURSUIT = 1 # How much pursuit does each levy soldier have
|
||||||
LEVY_SCREEN = 1 # How much screen does each levy soldier have
|
LEVY_SCREEN = 0 # How much screen does each levy soldier have
|
||||||
DAMAGE_SCALING_FACTOR = 0.03 # Scaling factor for dealing damage in combat
|
DAMAGE_SCALING_FACTOR = 0.03 # Scaling factor for dealing damage in combat
|
||||||
BASE_RATIO_CASUALTIES_CONVERSION = 0.3 # How many of the soft casualties should be converted to hard casualties during the main phase
|
BASE_RATIO_CASUALTIES_CONVERSION = 0.3 # How many of the soft casualties should be converted to hard casualties during the main phase
|
||||||
PURSUIT_PHASE_DAYS = 3 # How many days should the pursuit phase be
|
PURSUIT_PHASE_DAYS = 3 # How many days should the pursuit phase be
|
||||||
|
|
@ -541,7 +590,6 @@ NCombat = {
|
||||||
COMMANDER_MAX_ROLL = 10
|
COMMANDER_MAX_ROLL = 10
|
||||||
MEN_AT_ARMS_MAX_COUNTER = 0.9 # When RATIO_FOR_MAX_COUNTER is hit, the damage output for the MaA will be reduced by this much. For values lower, it'll be linear between 0 and this value
|
MEN_AT_ARMS_MAX_COUNTER = 0.9 # When RATIO_FOR_MAX_COUNTER is hit, the damage output for the MaA will be reduced by this much. For values lower, it'll be linear between 0 and this value
|
||||||
RATIO_FOR_MAX_COUNTER = 2.0 # You need this many effective regiment chunks to counter a single regiment chunk. Modified by counter effectiveness (E.G., = 2.0 in the MaA's counter section means twice as effective countering). So if stack size is 100, 50 men from a regiment with 2x counter will produce one point of countering. Thus if the ratio for max counter is 1.0, they'd fully counter a full-strength MaA chunk, or halfway counter two, etc.
|
RATIO_FOR_MAX_COUNTER = 2.0 # You need this many effective regiment chunks to counter a single regiment chunk. Modified by counter effectiveness (E.G., = 2.0 in the MaA's counter section means twice as effective countering). So if stack size is 100, 50 men from a regiment with 2x counter will produce one point of countering. Thus if the ratio for max counter is 1.0, they'd fully counter a full-strength MaA chunk, or halfway counter two, etc.
|
||||||
MEN_AT_ARMS_COUNTER_MODIFICATION = 6 # A countered men at arms base type get this modification to all of their rolls
|
|
||||||
MIN_DAYS_BEFORE_MANUAL_RETREAT = 14 # Number of days before a retreat can be ordered
|
MIN_DAYS_BEFORE_MANUAL_RETREAT = 14 # Number of days before a retreat can be ordered
|
||||||
|
|
||||||
MINIMUM_COMBAT_WIDTH = 100 # Combat width cannot be smaller than this
|
MINIMUM_COMBAT_WIDTH = 100 # Combat width cannot be smaller than this
|
||||||
|
|
@ -550,7 +598,7 @@ NCombat = {
|
||||||
BASE_TOUGHNESS_TO_PURSUIT = 0.05 # This many % of the toughness of the retreater's soft casualties will turn into pursuit (during the full pursuit, not per day). Essentially, this means if neither side has screen or pursuit, 5% of the soft casualties will become hard casualties. More if the pursuer has more pursuit than the defender has screen, and vice versa
|
BASE_TOUGHNESS_TO_PURSUIT = 0.05 # This many % of the toughness of the retreater's soft casualties will turn into pursuit (during the full pursuit, not per day). Essentially, this means if neither side has screen or pursuit, 5% of the soft casualties will become hard casualties. More if the pursuer has more pursuit than the defender has screen, and vice versa
|
||||||
MINIMUM_PURSUIT_DAMAGE = 0.01 # High screen can't bring casualties below 1% in the pursuit phase
|
MINIMUM_PURSUIT_DAMAGE = 0.01 # High screen can't bring casualties below 1% in the pursuit phase
|
||||||
DISEMBARK_PENALTY_DAYS = 30 # How long does an army have a penalty after disembarking?
|
DISEMBARK_PENALTY_DAYS = 30 # How long does an army have a penalty after disembarking?
|
||||||
KNIGHT_DAMAGE_PER_PROWESS = 30 # How much "Damage" stat does a knight get per prowess?
|
KNIGHT_DAMAGE_PER_PROWESS = 50 # How much "Damage" stat does a knight get per prowess?
|
||||||
KNIGHT_TOUGHNESS_PER_PROWESS = 8 # How much "Toughness" stat does a knight get per prowess?
|
KNIGHT_TOUGHNESS_PER_PROWESS = 8 # How much "Toughness" stat does a knight get per prowess?
|
||||||
|
|
||||||
### Brief: KNIGHT_AVERAGE_PROWESS_FOR_AI_POWER_CALCULATION ( int32 )
|
### Brief: KNIGHT_AVERAGE_PROWESS_FOR_AI_POWER_CALCULATION ( int32 )
|
||||||
|
|
@ -576,12 +624,13 @@ NArmy = {
|
||||||
REGIMENT_MONTHLY_MAA_REINFORCE_SPEED = 0.1 # Monthly reinforcement percentage of unraised MAA chunks [0-1]
|
REGIMENT_MONTHLY_MAA_REINFORCE_SPEED = 0.1 # Monthly reinforcement percentage of unraised MAA chunks [0-1]
|
||||||
GOLD_COST_PER_SOLDIER = 0.003 # Gold maintenance cost per soldier
|
GOLD_COST_PER_SOLDIER = 0.003 # Gold maintenance cost per soldier
|
||||||
RAID_ARMY_COST_MULT = 0.5 # Maintenance of raid armies is multiplied by this
|
RAID_ARMY_COST_MULT = 0.5 # Maintenance of raid armies is multiplied by this
|
||||||
|
BARTER_ARMY_COST_MULT = 0.5 # Maintenance of barter armies is multiplied by this
|
||||||
MOVEMENT_LOCKED = 0.5 # Percentage after which movement is locked
|
MOVEMENT_LOCKED = 0.5 # Percentage after which movement is locked
|
||||||
COUNTY_MOVEMENT_ATTRITION_PERCENTAGE = 0.05
|
COUNTY_MOVEMENT_ATTRITION_PERCENTAGE = 0.05
|
||||||
MINIMUM_COUNTY_MOVEMENT_ATTRITION = 100
|
MINIMUM_COUNTY_MOVEMENT_ATTRITION = 100
|
||||||
REGIMENT_DEFAULT_STACK_SIZE = 100
|
REGIMENT_DEFAULT_STACK_SIZE = 100
|
||||||
REGIMENT_DEFAULT_MAX_SIZE = 3 # Number of regiment chunks
|
REGIMENT_DEFAULT_MAX_SIZE = 3 # Number of regiment chunks
|
||||||
REGIMENT_MAA_CAP_BY_TIER = { 0 1 2 3 4 5 }
|
REGIMENT_MAA_CAP_BY_TIER = { 0 1 2 3 4 5 6 }
|
||||||
REGIMENT_MAA_EXTRA_BY_CAP = 0.2 # Percentage [0-1] applied to each MAA regiment by each regiment above the cap
|
REGIMENT_MAA_EXTRA_BY_CAP = 0.2 # Percentage [0-1] applied to each MAA regiment by each regiment above the cap
|
||||||
REGIMENT_MAA_SHOW_INFO_PERCENTAGE = 0.3
|
REGIMENT_MAA_SHOW_INFO_PERCENTAGE = 0.3
|
||||||
REGIMENT_MAA_STARTING_COUNT = 5
|
REGIMENT_MAA_STARTING_COUNT = 5
|
||||||
|
|
@ -618,11 +667,15 @@ NArmy = {
|
||||||
MAA_PRESTIGE_BUY_COST_MULT = 2 # If using prestige as gold for MaA, multiply buy cost by this
|
MAA_PRESTIGE_BUY_COST_MULT = 2 # If using prestige as gold for MaA, multiply buy cost by this
|
||||||
MAA_PRESTIGE_LOW_COST_MULT = 0.7 # If using prestige as gold for MaA, multiply basic maintenance cost by this
|
MAA_PRESTIGE_LOW_COST_MULT = 0.7 # If using prestige as gold for MaA, multiply basic maintenance cost by this
|
||||||
MAA_PRESTIGE_HIGH_COST_MULT = 0.7 # If using prestige as gold for MaA, multiply raised/reinforce cost by this
|
MAA_PRESTIGE_HIGH_COST_MULT = 0.7 # If using prestige as gold for MaA, multiply raised/reinforce cost by this
|
||||||
|
MAA_TREASURY_BUY_COST_MULT = 2 # If using treasury as gold for MaA, multiply buy cost by this
|
||||||
|
MAA_TREASURY_LOW_COST_MULT = 0.7 # If using treasury as gold for MaA, multiply basic maintenance cost by this
|
||||||
|
MAA_TREASURY_HIGH_COST_MULT = 0.7 # If using treasury as gold for MaA, multiply raised/reinforce cost by this
|
||||||
|
MAA_BARTER_GOODS_LOW_COST_MULT = 0.8 # If using barter goods as gold for MaA, multiply basic maintenance cost by this
|
||||||
|
MAA_BARTER_GOODS_HIGH_COST_MULT = 0.8 # If using barter goods as gold for MaA, multiply raised/reinforce cost by this
|
||||||
REGIMENT_MAX_SIZE = 1000 # The game will avoid making regiments larger than this. Can still happen if a province provides more levies than the cap
|
REGIMENT_MAX_SIZE = 1000 # The game will avoid making regiments larger than this. Can still happen if a province provides more levies than the cap
|
||||||
REGIMENT_MAX_SIZE_PERCENT = 0.2 # The game will avoid making regiments larger than this compared to the max troops you can raise
|
REGIMENT_MAX_SIZE_PERCENT = 0.2 # The game will avoid making regiments larger than this compared to the max troops you can raise
|
||||||
MINIMUM_HIRING_COST_MULTIPLIER = 0.1 # The cost of hiring after modifiers are applied can't go below this multiplier of the original value. To prevent negative costs, and therefore getting paid for hiring.
|
MINIMUM_HIRING_COST_MULTIPLIER = 0.1 # The cost of hiring after modifiers are applied can't go below this multiplier of the original value. To prevent negative costs, and therefore getting paid for hiring.
|
||||||
MIN_PERSONAL_MAA_MAINTENANCE_RATIO = 0.4 # Relevant for characters with theme armies. Out of your total MaA maintenance, at least this much should go towards your personal MaA.
|
LANDLESS_RAISE_TROOPS_MAX_DISTANCE = 500 # Max distance for landless rulers to raise their troops if their capital location is blocked by hostilities
|
||||||
LANDLESS_RAISE_TROOPS_MAX_DISTANCE = 500 # Max diatance for landless rulers to raise their troops if their capital location is blocked by hostilities
|
|
||||||
|
|
||||||
NOMADIC_HORDE_CONVERSION_BASE_DISCOUNT = 0.5 # Base discount rate applied to MaA cost when converting Horde regiments into permanent MaA as a Nomad
|
NOMADIC_HORDE_CONVERSION_BASE_DISCOUNT = 0.5 # Base discount rate applied to MaA cost when converting Horde regiments into permanent MaA as a Nomad
|
||||||
NOMADIC_RIDERS_MAX_SIZE = 500 # Max size of Horde Riders when they are raised
|
NOMADIC_RIDERS_MAX_SIZE = 500 # Max size of Horde Riders when they are raised
|
||||||
|
|
@ -681,7 +734,7 @@ NWar = {
|
||||||
|
|
||||||
NScheme = {
|
NScheme = {
|
||||||
SCHEMES_PER_TYPE = 1 # How many simultaneous schemes per type are allowed for a character
|
SCHEMES_PER_TYPE = 1 # How many simultaneous schemes per type are allowed for a character
|
||||||
SCHEME_AGENT_INVITE_MAX_PROPOSAL_OPTIONS = 3 # The maximum number of options (tested bottom up) to use when checking from the UI if a potential agent "Can be convinced"
|
SCHEME_AGENT_INVITE_MAX_PROPOSAL_OPTIONS = 3 # The maximum number of options (tested bottom up) to use when checking from the UI if a potential agent "Can be convinced"
|
||||||
DAYS_BETWEEN_MONTHLY_CHECK = 30 # Schemes get their "monthly" update this often
|
DAYS_BETWEEN_MONTHLY_CHECK = 30 # Schemes get their "monthly" update this often
|
||||||
DAYS_BETWEEN_SEMIYEARLY_CHECK = 180 # Schemes get this update twoice every year
|
DAYS_BETWEEN_SEMIYEARLY_CHECK = 180 # Schemes get this update twoice every year
|
||||||
SECRECY_REVEAL_CHANCE = 0.1 # The reveal chance is computed by multiplying the secrecy by this value
|
SECRECY_REVEAL_CHANCE = 0.1 # The reveal chance is computed by multiplying the secrecy by this value
|
||||||
|
|
@ -699,8 +752,9 @@ NScheme = {
|
||||||
SCHEME_PHASE_DURATION_TIER_DUCHY = 20 # Characters whose highest title is a duchy title adds this amount of speed to schemes targeting them
|
SCHEME_PHASE_DURATION_TIER_DUCHY = 20 # Characters whose highest title is a duchy title adds this amount of speed to schemes targeting them
|
||||||
SCHEME_PHASE_DURATION_TIER_KINGDOM = 40 # Characters whose highest title is a kingdom title adds this amount of speed to schemes targeting them
|
SCHEME_PHASE_DURATION_TIER_KINGDOM = 40 # Characters whose highest title is a kingdom title adds this amount of speed to schemes targeting them
|
||||||
SCHEME_PHASE_DURATION_TIER_EMPIRE = 80 # Characters whose highest title is an empire title adds this amount of speed to schemes targeting them
|
SCHEME_PHASE_DURATION_TIER_EMPIRE = 80 # Characters whose highest title is an empire title adds this amount of speed to schemes targeting them
|
||||||
|
SCHEME_PHASE_DURATION_TIER_HEGEMONY = 160 # Characters whose highest title is an hegemony title adds this amount of speed to schemes targeting them
|
||||||
|
|
||||||
DEFAULT_ODDS_PREDICTION_LEVEL_BREAKPOINTS = { 10 20 30 40 } # Breakpoints between odds descriptions presented to the player when starting a scheme.
|
DEFAULT_ODDS_PREDICTION_LEVEL_BREAKPOINTS = { 10 20 30 40 } # Breakpoints between odds descriptions presented to the player when starting a scheme.
|
||||||
|
|
||||||
AGENT_SPEED_RELATION_MULTIPLIER_SPYMASTER = 2.0 # The agents relation to the target
|
AGENT_SPEED_RELATION_MULTIPLIER_SPYMASTER = 2.0 # The agents relation to the target
|
||||||
AGENT_SPEED_RELATION_MULTIPLIER_SPOUSE = 2.0 # The agents relation to the target
|
AGENT_SPEED_RELATION_MULTIPLIER_SPOUSE = 2.0 # The agents relation to the target
|
||||||
|
|
@ -713,7 +767,7 @@ NScheme = {
|
||||||
|
|
||||||
NPowerfulVassal = {
|
NPowerfulVassal = {
|
||||||
# The number of vassals that are considered 'powerful' depending on the primary title tier (unlanded, baron, count, duke, king, emperor)
|
# The number of vassals that are considered 'powerful' depending on the primary title tier (unlanded, baron, count, duke, king, emperor)
|
||||||
NUM_PER_TIER = { 0 0 3 4 5 5 }
|
NUM_PER_TIER = { 0 0 3 4 5 5 5 }
|
||||||
|
|
||||||
# To calculate the value (rank):
|
# To calculate the value (rank):
|
||||||
VALUE_FACTOR = 1.25 # Rubber banding value for current powerful vassals
|
VALUE_FACTOR = 1.25 # Rubber banding value for current powerful vassals
|
||||||
|
|
@ -755,11 +809,10 @@ NReligion = {
|
||||||
"FAITH_HOSTILITY_EVIL"
|
"FAITH_HOSTILITY_EVIL"
|
||||||
}
|
}
|
||||||
PIETY_LOSS_PER_MISSING_SPOUSE = 0.5 # If you have fewer spouses than expected in a polygamous faith, you'll lose this much piety for each spouse you fall short.
|
PIETY_LOSS_PER_MISSING_SPOUSE = 0.5 # If you have fewer spouses than expected in a polygamous faith, you'll lose this much piety for each spouse you fall short.
|
||||||
DESIRED_SPOUSES_PER_TIER = { 0 1 1 2 3 4 } # Number of spouses you are expected to have per tier, starging with unlanded, then baron and ending with emperor
|
DESIRED_SPOUSES_PER_TIER = { 0 1 1 2 3 4 4 } # Number of spouses you are expected to have per tier, starging with unlanded, then baron and ending with hegemon
|
||||||
FAITH_CONVERSION_PIETY_MINIMUM = 250 # The minimum amount of piety converting faith costs
|
FAITH_CONVERSION_PIETY_MINIMUM = 250 # The minimum amount of piety converting faith costs
|
||||||
FAITH_CREATION_FERVOR_DISCOUNT_PER_MISSING_FERVOR = 1 # How much cheaper does creating a faith get per fervor below 100%? 1 means 1% per point
|
FAITH_CREATION_FERVOR_DISCOUNT_PER_MISSING_FERVOR = 1 # How much cheaper does creating a faith get per fervor below 100%? 1 means 1% per point
|
||||||
FAITH_CREATION_FERVOR_DISCOUNT_MAX = 50 # What percentage does the discount cap out at? With these numbers, 0-50 fervor means a 50% discount. Above 50 means between 0% and 50% discount
|
FAITH_CREATION_FERVOR_DISCOUNT_MAX = 50 # What percentage does the discount cap out at? With these numbers, 0-50 fervor means a 50% discount. Above 50 means between 0% and 50% discount
|
||||||
MINIMUM_MODIFIED_PARTICIPATION_TO_GET_PART_OF_GHW_POT = 100 # How much GHW participation (after multiplying by ghw_score_mult) is necessary in order to receive part of the pot?
|
|
||||||
PART_OF_GHW_POT_DESIGNATED_FOR_KINGDOM_RECIPIENT = 10 # How many percent of the pot will be reserved for the person receiving the kingdom?
|
PART_OF_GHW_POT_DESIGNATED_FOR_KINGDOM_RECIPIENT = 10 # How many percent of the pot will be reserved for the person receiving the kingdom?
|
||||||
GHW_HOSTILITY_MIN_LEVEL = 2 # Any independent ruler within the target kingdom at least this hostile to the caller faith will be a forced defender
|
GHW_HOSTILITY_MIN_LEVEL = 2 # Any independent ruler within the target kingdom at least this hostile to the caller faith will be a forced defender
|
||||||
PREFERRED_GENDER_CHANCE = 3 # When deciding if clergy characters should be male or female a 3 here means that the preferred gender will be three times as likely
|
PREFERRED_GENDER_CHANCE = 3 # When deciding if clergy characters should be male or female a 3 here means that the preferred gender will be three times as likely
|
||||||
|
|
@ -774,26 +827,37 @@ NReligion = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NTitle = {
|
NTitle = {
|
||||||
CREATE_TITLE_OR_TIER_EMPIRE = { -1 -1 -1 -1 2 1 }
|
CREATE_TITLE_OR_TIER_HEGEMONY = { -1 -1 -1 -1 -1 2 1 }
|
||||||
CREATE_TITLE_OR_TIER_KINGDOM = { -1 -1 -1 2 1 1 }
|
CREATE_TITLE_OR_TIER_EMPIRE = { -1 -1 -1 -1 2 1 1 }
|
||||||
CREATE_TITLE_PRESTIGE_GAIN = { 0 0 0 300 400 500 }
|
CREATE_TITLE_OR_TIER_KINGDOM = { -1 -1 -1 2 1 1 1 }
|
||||||
CREATE_TITLE_LEGITIMACY_GAIN = { 0 0 0 25 50 75 }
|
CREATE_TITLE_PRESTIGE_GAIN = { 0 0 0 300 400 500 600 }
|
||||||
CREATE_TITLE_GOLD_COST = { 0 0 0 250 500 1000 } # remember to update values in create_duchy_title_value etc. in 01_dynamic_values.txt!
|
CREATE_TITLE_LEGITIMACY_GAIN = { 0 0 0 25 50 75 100 }
|
||||||
|
CREATE_TITLE_GOLD_COST = { 0 0 0 250 500 1000 2000 } # remember to update values in create_duchy_title_value etc. in 01_dynamic_values.txt!
|
||||||
CREATE_TITLE_MIN_COST_FACTOR = 0.2 # creating a title will always cost at least this much in percent of the base cost, ex. 20% of 250 for a duchy
|
CREATE_TITLE_MIN_COST_FACTOR = 0.2 # creating a title will always cost at least this much in percent of the base cost, ex. 20% of 250 for a duchy
|
||||||
DESTROY_TITLE_PRESTIGE_COST = { 0 0 0 400 800 1200 }
|
CREATE_TITLE_MIN_PIETY_COST_FACTOR = 0.2 # creating a title will always cost at least this much in percent of the base cost, ex. 20% of 250 for a duchy
|
||||||
DESTROY_TITLE_LEGITIMACY_LOSS = { 0 0 0 25 50 75 } # Legitimacy lost when destroying titles of certain ranks (still allowed if you do not have enough legitimacy)
|
DESTROY_TITLE_PRESTIGE_COST = { 0 0 0 400 800 1200 2200 }
|
||||||
|
DESTROY_TITLE_LEGITIMACY_LOSS = { 0 0 0 25 50 75 100 } # Legitimacy lost when destroying titles of certain ranks (still allowed if you do not have enough legitimacy)
|
||||||
DESTROY_TITLE_CLEAR_LAW_MULT = 1 # when destroying a title with title-specifc laws, the cost for clearing laws must be payed, multiplied by this value
|
DESTROY_TITLE_CLEAR_LAW_MULT = 1 # when destroying a title with title-specifc laws, the cost for clearing laws must be payed, multiplied by this value
|
||||||
USURP_TITLE_GOLD_COST = { 0 0 0 250 500 1000 } # remember to update action_can_usurp_title in 00_title_actions.txt!
|
USURP_TITLE_GOLD_COST = { 0 0 0 250 500 1000 2000 } # remember to update action_can_usurp_title in 00_title_actions.txt!
|
||||||
USURP_TITLE_PRESTIGE_GAIN = { 0 0 0 300 400 500 }
|
USURP_TITLE_PRESTIGE_GAIN = { 0 0 0 300 400 500 600 }
|
||||||
USURP_FAITH_HOSTILITY = 2 # If at or above this level of faith hostility, usurpation can only be done if the holder has no land in the title
|
USURP_FAITH_HOSTILITY = 2 # If at or above this level of faith hostility, usurpation can only be done if the holder has no land in the title
|
||||||
TAKE_TITLE_PRESTIGE_MULT = { 0 0.5 1 5 15 50 }
|
TAKE_TITLE_PRESTIGE_MULT = { 0 0.5 1 5 15 50 100 }
|
||||||
VASSALIZE_PRESTIGE_MULT = { 0 0.5 1 5 15 50 }
|
VASSALIZE_PRESTIGE_MULT = { 0 0.5 1 5 15 50 100 }
|
||||||
DRIFT_MONTHLY_PROGRESS_INCREASE = 1
|
DRIFT_MONTHLY_PROGRESS_INCREASE = 1
|
||||||
DRIFT_MONTHLY_PROGRESS_DECREASE = 0.5
|
DRIFT_MONTHLY_PROGRESS_DECREASE = 0.5
|
||||||
DRIFT_PROGRESS_LIMIT = 1200
|
DRIFT_PROGRESS_LIMIT = 1200
|
||||||
DRIFT_ADJACENT_ACROSS_WATER_DISTANCE = 2
|
DRIFT_ADJACENT_ACROSS_WATER_DISTANCE = 2
|
||||||
REVOKE_LAWS_COST_SCALE = { 0 0 0.1 0.25 0.5 1 }
|
REVOKE_LAWS_COST_SCALE = { 0 0 0.1 0.25 0.5 1 2 }
|
||||||
DYNAMIC_TITLE_MAP_COLOR_S_V = { 0.8 1.0 } # What is the Saturation and Value of dynamic title map colors? (via HSV color - Hue is fully randomized)
|
DYNAMIC_TITLE_MAP_COLOR_S_V = { 0.8 1.0 } # What is the Saturation and Value of dynamic title map colors? (via HSV color - Hue is fully randomized)
|
||||||
|
CREATE_TITLE_PIETY_LEVEL = { 0 0 0 2 3 5 5 } # not a global requirement, it is used only for goverment with rule considers_piety_for_title_creation
|
||||||
|
CREATE_TITLE_PIETY_COST = { 0 0 0 500 2500 5000 10000 }
|
||||||
|
|
||||||
|
# Default desired titles to keep for AI - per current primary title tier. (-1 = keep all)
|
||||||
|
# Government types can define overrides via `ai_ruler_desired_kingdom_titles` and `ai_ruler_desired_empire_titles`.
|
||||||
|
# You cannot define less than 1 for the primary tier title.
|
||||||
|
# (Note that values below the primary title tier don't make much sense to configure)
|
||||||
|
AI_RULER_DESIRED_KINGDOM_TITLES_DEFAULT = { -1 -1 -1 -1 -1 -1 3 } # First 4 values not used
|
||||||
|
AI_RULER_DESIRED_EMPIRE_TITLES_DEFAULT = { -1 -1 -1 -1 -1 -1 1 } # First 5 values not used
|
||||||
}
|
}
|
||||||
|
|
||||||
NSiege = {
|
NSiege = {
|
||||||
|
|
@ -843,9 +907,8 @@ NSiege = {
|
||||||
}
|
}
|
||||||
SIEGE_FORT_THRESHOLD_IMPACT = 0.7 # What is the impact of not having enough siege tier? Siege speed is multiplied for this for each missing tier. E.G., if siege tier is 0, and fort level is 4, siege speed is multiplied by 0.5 * 0.5
|
SIEGE_FORT_THRESHOLD_IMPACT = 0.7 # What is the impact of not having enough siege tier? Siege speed is multiplied for this for each missing tier. E.G., if siege tier is 0, and fort level is 4, siege speed is multiplied by 0.5 * 0.5
|
||||||
|
|
||||||
SIEGE_LOOOT_MULTIPLIER = 40 # The income of the holding multiplied by this number is how much loot the besieging army will get for occupying it.
|
|
||||||
DEFENDER_OVERESTIMATION_FOR_SPLIT = 1.5 # Multiply number of defenders with this when splitting of a siege army to account for troops lost by the attacker to attrition during the remainder of the siege
|
DEFENDER_OVERESTIMATION_FOR_SPLIT = 1.5 # Multiply number of defenders with this when splitting of a siege army to account for troops lost by the attacker to attrition during the remainder of the siege
|
||||||
SIEGE_ASSAULT_SPEED_MULT_WITH_ZERO_GARRISON_SIZE = 5 # How fast siege is speeding up when holding has min garrison size. The assault speed is multiplied by a value between 1 and N depending on the ratio of the garrison
|
SIEGE_ASSAULT_SPEED_MULT_WITH_ZERO_GARRISON_SIZE = 5 # How fast siege is speeding up when holding has min garrison size. The assault speed is multiplied by a value between 1 and N depending on the ratio of the garrison
|
||||||
}
|
}
|
||||||
|
|
||||||
NChild = {
|
NChild = {
|
||||||
|
|
@ -868,6 +931,7 @@ NImprisonment = {
|
||||||
100 # Duke
|
100 # Duke
|
||||||
200 # King
|
200 # King
|
||||||
500 # Emperor
|
500 # Emperor
|
||||||
|
1000 # Hegemon
|
||||||
}
|
}
|
||||||
RANSOM_MIN_COST = 10
|
RANSOM_MIN_COST = 10
|
||||||
RANSOM_MULTIPLIER_PRIMARY_HEIR = 1.0
|
RANSOM_MULTIPLIER_PRIMARY_HEIR = 1.0
|
||||||
|
|
@ -906,17 +970,18 @@ NProvince = {
|
||||||
COUNTY_BUILDING_SLOTS = 3
|
COUNTY_BUILDING_SLOTS = 3
|
||||||
SUPPLY_PER_DEVELOPMENT = 150 # Each development adds this much sto the supply limit
|
SUPPLY_PER_DEVELOPMENT = 150 # Each development adds this much sto the supply limit
|
||||||
ACROSS_WATER_PROVINCE_MAX_DISTANCE = 2 # Maximum number of (traversable) water provinces between provinces to be considered "connected across water"
|
ACROSS_WATER_PROVINCE_MAX_DISTANCE = 2 # Maximum number of (traversable) water provinces between provinces to be considered "connected across water"
|
||||||
WINTER_LEVEL_THRESHOLD_MILD = 0.2 # Determines when the mild winter level takes effect, should be a value between 0.0 .. 1.0
|
WINTER_LEVEL_THRESHOLD_MILD = 0.2 # Determines when the mild winter level takes effect, should be a value between 0.0 .. 1.0
|
||||||
WINTER_LEVEL_THRESHOLD_NORMAL = 0.5 # Determines when the normal winter level takes effect, which ranges between WINTER_LEVEL_THRESHOLD_MILD .. 1.0
|
WINTER_LEVEL_THRESHOLD_NORMAL = 0.5 # Determines when the normal winter level takes effect, which ranges between WINTER_LEVEL_THRESHOLD_MILD .. 1.0
|
||||||
WINTER_LEVEL_THRESHOLD_HARSH = 0.9 # Determines when the harsh winter level takes effect, which ranges between WINTER_LEVEL_THRESHOLD_NORMAL .. 1.0
|
WINTER_LEVEL_THRESHOLD_HARSH = 0.9 # Determines when the harsh winter level takes effect, which ranges between WINTER_LEVEL_THRESHOLD_NORMAL .. 1.0
|
||||||
WINTER_EFFECTS_MINIMAL_DAY_COUNT = 10 # The target effects of winter are determined on a monthly basis, it will take a number of days to reach this target between this minimum and 27 (days in February - 1)
|
WINTER_EFFECTS_MINIMAL_DAY_COUNT = 10 # The target effects of winter are determined on a monthly basis, it will take a number of days to reach this target between this minimum and 27 (days in February - 1)
|
||||||
WINTER_EFFECTS_FACTOR_MILD = 0.45 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has no or mild winter
|
WINTER_EFFECTS_FACTOR_MILD = 0.45 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has no or mild winter
|
||||||
WINTER_EFFECTS_FACTOR_NORMAL = 0.3 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has normal winter
|
WINTER_EFFECTS_FACTOR_NORMAL = 0.3 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has normal winter
|
||||||
WINTER_EFFECTS_FACTOR_HARSH = 0.15 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has harsh winter
|
WINTER_EFFECTS_FACTOR_HARSH = 0.15 # Bias that offsets the newly added value for winter (on a monthly basis) while a province has harsh winter
|
||||||
WINTER_SEVERITY_DEFAULT_BIAS = 0.1 # Default bias used when determining winter on a province that doesn't have a bias set explicitely
|
WINTER_SEVERITY_DEFAULT_BIAS = 0.1 # Default bias used when determining winter on a province that doesn't have a bias set explicitely
|
||||||
WINTER_SEVERITY_RANDOM_MIN = 0.5 # Sets the lower bound of the random value that is used when determining the next winter severity
|
WINTER_SEVERITY_RANDOM_MIN = 0.5 # Sets the lower bound of the random value that is used when determining the next winter severity
|
||||||
WINTER_SEVERITY_RANDOM_MAX = 1.0 # Sets the upper bound of the random value that is used when determining the next winter severity
|
WINTER_SEVERITY_RANDOM_MAX = 1.0 # Sets the upper bound of the random value that is used when determining the next winter severity
|
||||||
RAZE_HOLDING_COOLDOWN_YEARS = 5 # Sets the cooldown perid in years for nomads razing holdings that they completely control
|
RAZE_HOLDING_COOLDOWN_YEARS = 5 # Sets the cooldown perid in years for nomads razing holdings that they completely control
|
||||||
|
MAX_BUILDINGS = 6 # Maximum number of building slots that a province can have
|
||||||
}
|
}
|
||||||
|
|
||||||
NText = {
|
NText = {
|
||||||
|
|
@ -924,16 +989,12 @@ NText = {
|
||||||
DURATION_SHOW_MONTHS_THRESHOLD = 60 # Duration will show as months if it's at least this many days
|
DURATION_SHOW_MONTHS_THRESHOLD = 60 # Duration will show as months if it's at least this many days
|
||||||
}
|
}
|
||||||
|
|
||||||
NCouncil = {
|
|
||||||
COUNCIL_MAX_SLOTS = 3 #Max number of slots of free positions to show for positions with max_amount
|
|
||||||
}
|
|
||||||
|
|
||||||
NDynasty = {
|
NDynasty = {
|
||||||
MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.02 # Was 0.2 per year, should be then 0.016 recurring but that is ugly so round to 0.015
|
MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.02 # Was 0.2 per year, should be then 0.016 recurring but that is ugly so round to 0.015
|
||||||
MAX_MONTHLY_PRESTIGE_GAIN_FROM_ALIVE_MEMBERS = 2 # Cap the above number
|
MAX_MONTHLY_PRESTIGE_GAIN_FROM_ALIVE_MEMBERS = 2 # Cap the above number
|
||||||
MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.125 0.25 0.5 1 2 } # When per year was { 0 2 4 6 8 10 }
|
MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.125 0.25 0.5 1 2 4 } # When per year was { 0 2 4 6 8 10 }
|
||||||
MONTHLY_PRESTIGE_GAIN_MULT_FOR_VASSALS_OF_SAME_DYNASTY = 0 # Dynasty members who are vassal of below of someone of the same dynasty have their prestige contribution multiplied with this. 0 disables their prestige contribution entirely
|
MONTHLY_PRESTIGE_GAIN_MULT_FOR_VASSALS_OF_SAME_DYNASTY = 0 # Dynasty members who are vassal of below of someone of the same dynasty have their prestige contribution multiplied with this. 0 disables their prestige contribution entirely
|
||||||
MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER_SPOUSE = { 0 0.1 0.2 0.4 0.8 1.6 } # When per year was { 0 2 4 6 8 10 }
|
MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER_SPOUSE = { 0 0.1 0.2 0.4 0.8 1.6 3.2 } # When per year was { 0 2 4 6 8 10 }
|
||||||
MONTHLY_PRESTIGE_GAIN_MULT_FOR_VASSALS_OF_SAME_DYNASTY_SPOUSE = 0 # Dynasty members whose spouse are vassal of below of someone of the same dynasty have their prestige contribution multiplied with this. 0 disables their prestige contribution entirely
|
MONTHLY_PRESTIGE_GAIN_MULT_FOR_VASSALS_OF_SAME_DYNASTY_SPOUSE = 0 # Dynasty members whose spouse are vassal of below of someone of the same dynasty have their prestige contribution multiplied with this. 0 disables their prestige contribution entirely
|
||||||
LEVELS_PRESTIGE = { 300 1000 2000 4000 7000 11000 16000 22000 29000 37000 }
|
LEVELS_PRESTIGE = { 300 1000 2000 4000 7000 11000 16000 22000 29000 37000 }
|
||||||
LEVEL_DROP_MAX_RETAINED_PROGRESS_PRESTIGE = 0.5
|
LEVEL_DROP_MAX_RETAINED_PROGRESS_PRESTIGE = 0.5
|
||||||
|
|
@ -942,7 +1003,7 @@ NDynasty = {
|
||||||
MARRIAGE_PRESTIGE = { -100 0 100 200 300 400 500 600 700 800 900 }
|
MARRIAGE_PRESTIGE = { -100 0 100 200 300 400 500 600 700 800 900 }
|
||||||
BIRTH_PRESTIGE = { 0 100 200 300 400 500 600 700 800 900 1000 }
|
BIRTH_PRESTIGE = { 0 100 200 300 400 500 600 700 800 900 1000 }
|
||||||
MAX_LONG_REIGN = { 5 10 15 20 25 30 35 40 45 50 55 }
|
MAX_LONG_REIGN = { 5 10 15 20 25 30 35 40 45 50 55 }
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.01 0.02 0.03 0.04 0.05 }
|
HEAD_MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.01 0.02 0.03 0.04 0.05 0.06 }
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.01
|
HEAD_MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.01
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_CAP = 3
|
HEAD_MONTHLY_PRESTIGE_GAIN_CAP = 3
|
||||||
CURRENT_DYNAST_EXTRA_POWER = 0.1 # For determining who should by dynast, the current dynast is considered to be this much more powerful than reality so that it doesn't bounce back and forth. 0.1 means 10%
|
CURRENT_DYNAST_EXTRA_POWER = 0.1 # For determining who should by dynast, the current dynast is considered to be this much more powerful than reality so that it doesn't bounce back and forth. 0.1 means 10%
|
||||||
|
|
@ -957,13 +1018,21 @@ NDynasty = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NHouse = {
|
NHouse = {
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.02 0.04 0.06 0.08 0.1 }
|
HEAD_MONTHLY_PRESTIGE_GAIN_PER_TITLE_TIER = { 0 0.02 0.04 0.06 0.08 0.1 0.12 }
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.02
|
HEAD_MONTHLY_PRESTIGE_GAIN_PER_MEMBER = 0.02
|
||||||
HEAD_MONTHLY_PRESTIGE_GAIN_CAP = 5
|
HEAD_MONTHLY_PRESTIGE_GAIN_CAP = 5
|
||||||
RENAME_MOTTO_MAX_LENGTH = 120 # How long can a motto be when custom renaming
|
RENAME_MOTTO_MAX_LENGTH = 120 # How long can a motto be when custom renaming
|
||||||
POWERFUL_HOUSE_MINIMUM_POWER = 40 # Miminum house power values for the house to be considered powerful
|
POWERFUL_HOUSE_MINIMUM_POWER = 40 # Miminum house power values for the house to be considered powerful
|
||||||
POWERFUL_HOUSE_MAX_COUNT = 5 # Max number of powerful houses in an admin realm (not counting the top liege house)
|
POWERFUL_HOUSE_MAX_COUNT = 5 # Max number of powerful houses in an admin realm (not counting the top liege house)
|
||||||
HOUSE_POWER_BONUS_COOLDOWN_DAYS = 9125 # Cooldown days unable to change family attribute
|
HOUSE_POWER_BONUS_COOLDOWN_DAYS = 9125 # Cooldown days beforechanges or upgrades to house powers
|
||||||
|
}
|
||||||
|
|
||||||
|
NHouseRelation = {
|
||||||
|
MAX_CHANGES_TO_REMEMBER = 100 # How many changes to house relations are remembered before the oldest are removed.
|
||||||
|
DECAY_TOWARDS_NEUTRAL_AFTER_YEARS = 50 # Years without change before house relation moves one level towards neutral.
|
||||||
|
CEASE_FROM_NEUTRAL_AFTER_YEARS = 75 # Years without change at neutral level before house relation is removed.
|
||||||
|
|
||||||
|
IMPROVEMENT_FROM_MARRIAGE = 0.1 # How much a house relation will change from a single marriage.
|
||||||
}
|
}
|
||||||
|
|
||||||
NDreadEffectOnBoldness = {
|
NDreadEffectOnBoldness = {
|
||||||
|
|
@ -988,15 +1057,15 @@ NDomain = {
|
||||||
LEVIES_AT_MAX_COUNTY_DEVELOPMENT = 0.5 # How many % levies bonus do you get at 100 county development? Interpolated between this value and 0% when between 0 and 100
|
LEVIES_AT_MAX_COUNTY_DEVELOPMENT = 0.5 # How many % levies bonus do you get at 100 county development? Interpolated between this value and 0% when between 0 and 100
|
||||||
TAX_AT_MAX_COUNTY_DEVELOPMENT = 0.5 # How much % tax bonus do you get at 100 county development? Interpolated between this value and 0% when between 0 and 100
|
TAX_AT_MAX_COUNTY_DEVELOPMENT = 0.5 # How much % tax bonus do you get at 100 county development? Interpolated between this value and 0% when between 0 and 100
|
||||||
HOLDING_MIN_GARRISON_COUNT = 25 # The minimal amount of garrisons a holding should have if it should have garrisons
|
HOLDING_MIN_GARRISON_COUNT = 25 # The minimal amount of garrisons a holding should have if it should have garrisons
|
||||||
|
ABOVE_LIMIT_BARTER_GOODS_INCOME_PENALTY = 0.2 # How much Barter Goods are reduced per holding over the limit
|
||||||
|
ABOVE_LIMIT_MAX_BARTER_GOODS_INCOME_PENALTY = 1 # How much Barter Goods can be reduced at most
|
||||||
}
|
}
|
||||||
|
|
||||||
NFaction =
|
NFaction =
|
||||||
{
|
{
|
||||||
UPDATE_INTERVAL_DAYS = 30 # How often does the faction updates
|
|
||||||
COUNTY_CREATE_MIN_SCORE = 10 # Minimum score to necessary to even consider create a faction
|
COUNTY_CREATE_MIN_SCORE = 10 # Minimum score to necessary to even consider create a faction
|
||||||
COUNTY_JOIN_MIN_SCORE = 15 # Minimum score to necessary to even consider join a faction
|
COUNTY_JOIN_MIN_SCORE = 15 # Minimum score to necessary to even consider join a faction
|
||||||
COUNTY_LEAVE_SCORE_THRESHOLD = 5 # If the join score goes below this value the member leaves the faction
|
COUNTY_LEAVE_SCORE_THRESHOLD = 5 # If the join score goes below this value the member leaves the faction
|
||||||
MAX_POWER = 200 # Max power reachable
|
|
||||||
MONTHS_IDLE_DEMAND = 12 # After accepting or losing a war the faction will stay this time without enforcing any demands
|
MONTHS_IDLE_DEMAND = 12 # After accepting or losing a war the faction will stay this time without enforcing any demands
|
||||||
COUNTY_INCOME_POWER_FACTOR = 100 # Strength per income for the counties
|
COUNTY_INCOME_POWER_FACTOR = 100 # Strength per income for the counties
|
||||||
DISCONTENT_THRESHOLD = 100 # The discontent threshold at which the faction can send demands.
|
DISCONTENT_THRESHOLD = 100 # The discontent threshold at which the faction can send demands.
|
||||||
|
|
@ -1012,31 +1081,49 @@ NPathFinding = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NCulture = {
|
NCulture = {
|
||||||
MINIMUM_INNOVATIONS_TO_NEXT_ERA = 0.5 # Percentage of innovations to be able to go to the next era
|
MINIMUM_INNOVATIONS_TO_NEXT_ERA = 8 # Raw number of innovations needed to be able to go to the next era. If an era has less innovations than this number, the lowest is used.
|
||||||
ERA_PROGRESS_GAIN_BASE_MONTHLY = 0.1 # Base percentage gain every month for era exposure
|
ERA_PROGRESS_GAIN_BASE_MONTHLY = 0.1 # Base percentage gain every month for era spread
|
||||||
ERA_PROGRESS_GAIN_MONTHLY_PER_AVERAGE_DEVELOPMENT_LEVEL = 0.05 # How much extra per average development level
|
ERA_PROGRESS_GAIN_MONTHLY_PER_AVERAGE_DEVELOPMENT_LEVEL = 0.05 # How much extra per average development level
|
||||||
FIRST_ERA_START_YEAR = 2300 # When did the first era start?
|
FIRST_ERA_START_YEAR = 476 # When did the first era start?
|
||||||
|
|
||||||
# Regional exposure will start with the minimum number of regions from any of the next percentages
|
# Regional spread will start with the minimum number of regions from any of the next percentages
|
||||||
INNOVATION_REGIONAL_PERCENTAGE = 0.1 # Minimum percentage of region for regional innovations to get regional exposure
|
INNOVATION_REGIONAL_PERCENTAGE = 0.1 # Minimum percentage of region for regional innovations to get regional spread
|
||||||
INNOVATION_CULTURE_PERCENTAGE_IN_REGION = 0.2 # Minimum percentage for a culture in a region to be exposed to get regional exposure
|
INNOVATION_CULTURE_PERCENTAGE_IN_REGION = 0.4 # Minimum percentage for a culture in a region to be exposed to get regional spread
|
||||||
|
INNOVATION_CULTURE_ACCEPTANCE_THRESHOLD_FOR_SPREAD = 5 # Minimum Cultural Acceptance for selecting spread innovation (0-100). Cultures with an acceptance level below this threshold won't be considered when choosing innovation spread.
|
||||||
|
|
||||||
# Chance (0..100) to advance with the innovation each month:
|
# Chance (0..100) to advance with the innovation each month:
|
||||||
# base + from exposure + from fascination
|
# base + from spread + from fascination
|
||||||
INNOVATION_PROGRESS_CHANCE_BASE = 5
|
INNOVATION_PROGRESS_CHANCE_BASE = 5
|
||||||
INNOVATION_PROGRESS_CHANCE_FROM_EXPOSURE = 100 # if there is any exposure
|
INNOVATION_PROGRESS_CHANCE_FROM_SPREAD = 40 # chance bonus to innovation if there is any spread by nearby cultures
|
||||||
# from fascination = base + max( 0, head learning skill - HEAD_LEARNING_BASE ) * PER_LEARNING_LEVEL
|
INNOVATION_PROGRESS_CHANCE_SPREAD_AND_FASCINATION_MULTIPLIER = 2 # multiply Cultural Acceptance (100-based) by this as bonus multiplier if the current spread innovation is ALSO a fascination
|
||||||
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_BASE = 10
|
# from fascination = base + SKILL_LEVEL_BONUS( max( 0, head relevant skill - HEAD_SKILL_BASE ) )
|
||||||
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_HEAD_LEARNING_BASE = 0
|
# SKILL_LEVEL_BONUS( SKILL_MOD ) is computed as a sum of contributions that get smaller the higher the skill modifier.
|
||||||
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_PER_LEARNING_LEVEL = 1
|
# The first 10 (SECTION_SIZE) points may give +1 each, the second 10 may give +0.8 and so on. With these numbers:
|
||||||
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_NO_HEAD_LEARNING = 10 # used as the skill value if there is no cultural head
|
# Skill mod 15 -> 1 * 10 + 0.9 * 5 = 14.5% bonus from skill.
|
||||||
|
# Skill mod 37 -> 1 * 10 + 0.9 * 10 + 0.8 * 10 + 0.7 * 7 = 27.4
|
||||||
|
# trailing points after the highest section take the last multiplier of the PER_SKILL_SECTION array, which should have at minimum 2 entries
|
||||||
|
# this skill level bonus will not exceed the SKILL_CAP, so a Skill 100 character will still get at most (for example) 30% progress chance from their skill.
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_BASE = 10 # base progress chance bonus if fascination
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_HEAD_SKILL_BASE = 0 # skill level below which no bonus is given
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_SKILL_LEVEL_SECTION_SIZE = 10 # size of each multiplier chunk. with 10, the first 10 bonus point will get the first multiplier and so on
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_SKILL_CAP = 45 # how high can the skill bonus be at most (BASE included)
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_PER_SKILL_SECTION = { 1 0.9 0.8 0.7 0.6 }
|
||||||
|
INNOVATION_PROGRESS_CHANCE_FROM_FASCINATION_NO_HEAD_SKILL = 10 # used as the skill value if there is no cultural head
|
||||||
|
|
||||||
|
INNOVATION_PROGRESS_GAIN_FROM_BONUS_FASCINATION = 1.5 # Additional progress rate if the innovation is current fascination AND was selected as bonus_fascination_innovation
|
||||||
|
|
||||||
# If the random roll succeeds, the innovation will progress by:
|
# If the random roll succeeds, the innovation will progress by:
|
||||||
# base + from development + from eras ahead
|
# base + from development + from eras ahead
|
||||||
INNOVATION_PROGRESS_GAIN_BASE = 0.3
|
INNOVATION_PROGRESS_GAIN_BASE = 0.3
|
||||||
INNOVATION_PROGRESS_GAIN_PER_AVERAGE_DEVELOPMENT_LEVEL = 0.1
|
INNOVATION_PROGRESS_GAIN_PER_AVERAGE_DEVELOPMENT_LEVEL = 0.02
|
||||||
INNOVATION_PROGRESS_GAIN_PER_ERA_AHEAD = 0.2
|
INNOVATION_PROGRESS_GAIN_PER_ERA_AHEAD = 0.2
|
||||||
MINIMUM_DYNASTY_NAMES = 2 # We'll log an error for any culture with less dynasty names than this. Dynasty names from the culture group will count
|
INNOVATION_PROGRESS_DIVIDE_FACTOR_IF_ERA_BEHIND = 5 # the overall progress is divided by this number to achieve a way slower progress for future innovations. 10 would divide the total progress by 10, and this is further divided by the number of eras the culture is behind - so the progress may end up being divided by 30 at most. Set to 0 to disable this behavior.
|
||||||
|
INNOVATION_PROGRESS_MIN_MULTIPLIER_IF_ERA_BEHIND = 0.01 # the division from the define above may not go lower than this. Ranges between 0 and 1.
|
||||||
|
INNOVATION_PROGRESS_DIVIDE_FACTOR_PER_AHEAD_OF_TIME_TECH = 2 # divide the progress gain by this number for each ahead-of-time innovation the culture has. Scales exponentially, so 2 would halve the gain when 1 innovation is discovered, divide by 4 after the second is discovered etc. Set to 0 to disable this behavior.
|
||||||
|
INNOVATION_PROGRESS_MIN_MULTIPLIER_PER_AHEAD_OF_TIME_TECH = 0.01 # The division from the system above won't go below this multiplier. Ranges between 0 and 1.
|
||||||
|
INNOVATION_MIN_PROGRESS_TO_SHOW_IN_UI = 0.01 # Progress rates below this number will show as "stale" in the UI - this doesn't mean that the culture is not discovering it though
|
||||||
|
|
||||||
|
MINIMUM_DYNASTY_NAMES = 2 # We'll log an error for any culture with less dynasty names than this. Dynasty names from the culture group will count
|
||||||
|
|
||||||
# This counts the # of border counties. So if culture A has a county that borders a single county of culture B, that's 2 border counties. If it bordered 2, it'd be 3 border counties, as each individual county can only get counted once
|
# This counts the # of border counties. So if culture A has a county that borders a single county of culture B, that's 2 border counties. If it bordered 2, it'd be 3 border counties, as each individual county can only get counted once
|
||||||
YEARLY_ACCEPTANCE_PER_BORDER_COUNTY = 0.05
|
YEARLY_ACCEPTANCE_PER_BORDER_COUNTY = 0.05
|
||||||
|
|
@ -1046,7 +1133,7 @@ NCulture = {
|
||||||
# This is then divided by the size of the smaller of the two cultures, or by MIN_CULTURE_SIZE_FOR_VASSAL_ACCEPTANCE if that's bigger
|
# This is then divided by the size of the smaller of the two cultures, or by MIN_CULTURE_SIZE_FOR_VASSAL_ACCEPTANCE if that's bigger
|
||||||
# So a king vassal gives the same gain for a small culture as two king vassals for one that's twice as big
|
# So a king vassal gives the same gain for a small culture as two king vassals for one that's twice as big
|
||||||
# We don't support baron vassals for this
|
# We don't support baron vassals for this
|
||||||
YEARLY_ACCEPTANCE_FROM_TIER = { 0 0 1 3 10 0 }
|
YEARLY_ACCEPTANCE_FROM_TIER = { 0 0 1 3 10 0 0 }
|
||||||
MAX_YEARLY_ACCEPTANCE_FROM_VASSALS = 0.5 # We don't give more than this from vassalage
|
MAX_YEARLY_ACCEPTANCE_FROM_VASSALS = 0.5 # We don't give more than this from vassalage
|
||||||
MIN_CULTURE_SIZE_FOR_VASSAL_ACCEPTANCE = 5 # We pretend neither culture involved is smaller than this
|
MIN_CULTURE_SIZE_FOR_VASSAL_ACCEPTANCE = 5 # We pretend neither culture involved is smaller than this
|
||||||
ACCEPTANCE_REDUCTION_FROM_NO_INTERACTION = 0.5 # If two cultures gain no acceptance at all from bordering, vassals, or shared realm, their acceptance will go down by this amount each year. Cultures with the same heritage are exempt
|
ACCEPTANCE_REDUCTION_FROM_NO_INTERACTION = 0.5 # If two cultures gain no acceptance at all from bordering, vassals, or shared realm, their acceptance will go down by this amount each year. Cultures with the same heritage are exempt
|
||||||
|
|
@ -1133,22 +1220,25 @@ NHolyOrder = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NCourt = {
|
NCourt = {
|
||||||
# Number of spouses and commanders that should be available in a court.
|
# Number of spouses that should be available in a court.
|
||||||
# Characters will be spawned at game start and on succession, if no matching characters are available.
|
# Spouses will be spawned at game start and on succession, if no matching characters are available.
|
||||||
GENERATED_SPOUSES_BARONY_PER_HOLDING_KEYS = {}
|
GENERATED_SPOUSES_BARONY_PER_HOLDING_KEYS = {}
|
||||||
GENERATED_SPOUSES_BARONY_PER_HOLDING_VALUES = {}
|
GENERATED_SPOUSES_BARONY_PER_HOLDING_VALUES = {}
|
||||||
GENERATED_SPOUSES_COUNTY = 0
|
GENERATED_SPOUSES_COUNTY = 0
|
||||||
GENERATED_SPOUSES_DUCHY = 0
|
GENERATED_SPOUSES_DUCHY = 0
|
||||||
GENERATED_SPOUSES_KINGDOM = 0
|
GENERATED_SPOUSES_KINGDOM = 0
|
||||||
GENERATED_SPOUSES_EMPIRE = 0
|
GENERATED_SPOUSES_EMPIRE = 0
|
||||||
|
GENERATED_SPOUSES_HEGEMONY = 0
|
||||||
|
|
||||||
# Commanders multiplied by court_generate_commanders defined in 00_government_types.txt
|
# Number of commanders that should be available in a court.
|
||||||
|
# Commanders will be spawned at game start and on succession, if no matching characters are available.
|
||||||
GENERATED_COMMANDERS_BARONY_PER_HOLDING_KEYS = {}
|
GENERATED_COMMANDERS_BARONY_PER_HOLDING_KEYS = {}
|
||||||
GENERATED_COMMANDERS_BARONY_PER_HOLDING_VALUES = {}
|
GENERATED_COMMANDERS_BARONY_PER_HOLDING_VALUES = {}
|
||||||
GENERATED_COMMANDERS_COUNTY = 0
|
GENERATED_COMMANDERS_COUNTY = 0
|
||||||
GENERATED_COMMANDERS_DUCHY = 0
|
GENERATED_COMMANDERS_DUCHY = 0
|
||||||
GENERATED_COMMANDERS_KINGDOM = 0
|
GENERATED_COMMANDERS_KINGDOM = 0
|
||||||
GENERATED_COMMANDERS_EMPIRE = 0
|
GENERATED_COMMANDERS_EMPIRE = 0
|
||||||
|
GENERATED_COMMANDERS_HEGEMONY = 0
|
||||||
GENERATED_COMMANDERS_MERCENARY_COMPANY = 1
|
GENERATED_COMMANDERS_MERCENARY_COMPANY = 1
|
||||||
GENERATED_COMMANDERS_HOLY_ORDER = 1
|
GENERATED_COMMANDERS_HOLY_ORDER = 1
|
||||||
|
|
||||||
|
|
@ -1162,18 +1252,15 @@ NCourt = {
|
||||||
GUEST_MOVE_TO_POOL_DELAY_MONTHS = 2
|
GUEST_MOVE_TO_POOL_DELAY_MONTHS = 2
|
||||||
|
|
||||||
# Maximum number of adult courtiers and guests, per ruler tier. While it won't throw anyone out if the limit is exceeded, no new guests will arrive while at or above the cap. See also: MIN_GUESTS_PER_TIER.
|
# Maximum number of adult courtiers and guests, per ruler tier. While it won't throw anyone out if the limit is exceeded, no new guests will arrive while at or above the cap. See also: MIN_GUESTS_PER_TIER.
|
||||||
MAX_COURTIERS_AND_GUESTS_PER_TIER = { 0 0 6 8 12 20 }
|
MAX_COURTIERS_AND_GUESTS_PER_TIER = { 0 0 6 8 12 20 36 }
|
||||||
# Minimum number of adult guests, per ruler tier. Overrides MAX_COURTIERS_AND_GUESTS_PER_TIER to make sure there are always some guests even if the courtiers have reached the cap.
|
# Minimum number of adult guests, per ruler tier. Overrides MAX_COURTIERS_AND_GUESTS_PER_TIER to make sure there are always some guests even if the courtiers have reached the cap.
|
||||||
MIN_GUESTS_PER_TIER = { 0 0 0 1 2 3 }
|
MIN_GUESTS_PER_TIER = { 0 0 0 1 2 3 4 }
|
||||||
|
|
||||||
# If the pools are empty and guests need to be generated, generate at most this many per month
|
# If the pools are empty and guests need to be generated, generate at most this many per month
|
||||||
MAX_GUESTS_TO_GENERATE = 2
|
MAX_GUESTS_TO_GENERATE = 0
|
||||||
}
|
}
|
||||||
|
|
||||||
NSubjectContract = {
|
NSubjectContract = {
|
||||||
OPINION_OF_LIEGE_UPDATE_INTERVAL = 30 # Interval in days - how often should the vassal's opinion of liege update for vassal contracts which use it
|
|
||||||
|
|
||||||
CHECK_OBLIGATION_VALIDITY_INTERVAL = 30 # Interval in days - how often should the selected obligation levels be validated for contracts with obligation level
|
|
||||||
|
|
||||||
# Only count vassals and above count towards the limit
|
# Only count vassals and above count towards the limit
|
||||||
ABOVE_LIMIT_LEVY_PENALTY = 0.05 # How much levies are reduced per vassal over the limit
|
ABOVE_LIMIT_LEVY_PENALTY = 0.05 # How much levies are reduced per vassal over the limit
|
||||||
|
|
@ -1186,12 +1273,14 @@ NSubjectContract = {
|
||||||
CEASE_PAYING_TRIBUTE_LABEL_LEVELS = { 10 25 100 }
|
CEASE_PAYING_TRIBUTE_LABEL_LEVELS = { 10 25 100 }
|
||||||
|
|
||||||
MEN_AT_ARMS_RECRUITMENT_COST_MULT = 0.5 # How much greater the cost is when recruiting MaAs from tributaries rather than directly
|
MEN_AT_ARMS_RECRUITMENT_COST_MULT = 0.5 # How much greater the cost is when recruiting MaAs from tributaries rather than directly
|
||||||
|
LIKELY_TO_ACCEPT_TRIBUTE_THRESHOLD = 70 # acceptance scores this level or above will be considered "likely" when building tooltips
|
||||||
|
MAX_SUBJECT_STANDING = 100 # max amount Subject Standing can reach before being capped
|
||||||
}
|
}
|
||||||
|
|
||||||
NGUI = {
|
NGUI = {
|
||||||
REALM_VIEW_NUM_HEIRS = 5
|
REALM_VIEW_NUM_HEIRS = 5
|
||||||
REALM_VIEW_CONTROL_THRESHOLD = 35
|
REALM_VIEW_CONTROL_THRESHOLD = 35
|
||||||
CHARACTER_LIST_TEXT_SEARCH_MIN_LENGTH = 3 # min text string lenght to start matching
|
CHARACTER_LIST_TEXT_SEARCH_MIN_LENGTH = 2 # min text string length to start matching
|
||||||
CHARACTER_LIST_MATCH_CUTOFF = 25 # lowest match score for text filter
|
CHARACTER_LIST_MATCH_CUTOFF = 25 # lowest match score for text filter
|
||||||
CHARACTER_LIST_MATCH_COUNT = 15 # text filter options limit
|
CHARACTER_LIST_MATCH_COUNT = 15 # text filter options limit
|
||||||
CHARACTER_LIST_NAME_MATCH_COUNT = 100 # match by name character limit
|
CHARACTER_LIST_NAME_MATCH_COUNT = 100 # match by name character limit
|
||||||
|
|
@ -1284,6 +1373,7 @@ NRaid = {
|
||||||
MIN_SOLDIERS_TO_RAID = 200 # How small can a raid army be and still be able to loot?
|
MIN_SOLDIERS_TO_RAID = 200 # How small can a raid army be and still be able to loot?
|
||||||
MONTHLY_ATTRITION = 0.01 # How much attrition do you take while looting a province? 0.01 = 1% per month
|
MONTHLY_ATTRITION = 0.01 # How much attrition do you take while looting a province? 0.01 = 1% per month
|
||||||
MONTHS_OF_RAID_LOOT = 12 # How many months of holding income (with owner effects discounted) does raiding provide?
|
MONTHS_OF_RAID_LOOT = 12 # How many months of holding income (with owner effects discounted) does raiding provide?
|
||||||
|
LESS_MONTHS_OF_RAID_LOOT = 6 # This is subtracted from MONTHS_OF_RAID_LOOT if you have the goverment 'barter = yes'
|
||||||
|
|
||||||
# Progress cannot be lower than 1/day (except when interrupted by combat)
|
# Progress cannot be lower than 1/day (except when interrupted by combat)
|
||||||
BASE_PROGRESS = 20 # How much base raid action progress do you get per day?
|
BASE_PROGRESS = 20 # How much base raid action progress do you get per day?
|
||||||
|
|
@ -1294,10 +1384,18 @@ NRaid = {
|
||||||
DAYS_OF_HOSTILITY = 180 # How long after raiding do hostilities last?
|
DAYS_OF_HOSTILITY = 180 # How long after raiding do hostilities last?
|
||||||
DAYS_OF_IMMUNITY = 1825 # How long does raid immunity after defeating a raid army last?
|
DAYS_OF_IMMUNITY = 1825 # How long does raid immunity after defeating a raid army last?
|
||||||
RAID_REALM_AI_COOLDOWN = 1 # How many years the AI should wait before considering raiding again, after any AI raiders have been defeated previously
|
RAID_REALM_AI_COOLDOWN = 1 # How many years the AI should wait before considering raiding again, after any AI raiders have been defeated previously
|
||||||
RAID_MINIMUM_ATTRITON = 0 # How low can the attrition go for raiders in particular?
|
RAID_MINIMUM_ATTRITION = 0 # How low can the attrition go for raiders in particular?
|
||||||
RAID_NOMAD_FACTOR = 100 # How much to divide nomad raid loot value with ((herd/countycapitals)/RAID_NOMAD_FACTOR)
|
RAID_NOMAD_FACTOR = 100 # How much to divide nomad raid loot value with ((herd/countycapitals)/RAID_NOMAD_FACTOR)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NBarter = {
|
||||||
|
BASE_DURATION = 400
|
||||||
|
BASE_PROGRESS = 15
|
||||||
|
PROGRESS_PER_SOLDIER = 0.005
|
||||||
|
LOOT_PER_SOLDIER = 0.1 # How much loot can a single soldier carry? Minimum increment is 0.001
|
||||||
|
BARTER_GOODS_TO_LOOT_MULT = 0.5 # Used to convert Barter Goods to Loot. A value of 0.5 means that 2 Barter Goods are worth 1 Loot
|
||||||
|
}
|
||||||
|
|
||||||
NCharacterGlow = {
|
NCharacterGlow = {
|
||||||
TINT_COLOR_DEFAULT = { 0.9 0.8 0.6 0.6 }
|
TINT_COLOR_DEFAULT = { 0.9 0.8 0.6 0.6 }
|
||||||
TINT_COLOR_PLAYER_CHARACTER = { 0.9 0.8 0.6 0.6 }
|
TINT_COLOR_PLAYER_CHARACTER = { 0.9 0.8 0.6 0.6 }
|
||||||
|
|
@ -1308,13 +1406,14 @@ NCharacterGlow = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NGraphics = {
|
NGraphics = {
|
||||||
# At how much VRAM (in MB) should the setting presets kick in?
|
# At how much VRAM (in MB) and physical cpu core count should the setting presets kick in?
|
||||||
QUALITY_SETTING_NAMES = { "low" "medium" "high" }
|
QUALITY_SETTING_NAMES = { "low" "medium" "high" }
|
||||||
VRAM_FOR_QUALITY_SETTING_DEFAULT = { 0 2000 3000 }
|
VRAM_FOR_QUALITY_SETTING_DEFAULT = { 0 6000 8000 }
|
||||||
|
CPU_CORES_FOR_QUALITY_SETTINGS_DEFAULT = { 0 10 16 }
|
||||||
|
|
||||||
# When to enable a graphics setting by default
|
# When to enable a graphics setting by default
|
||||||
VRAM_FOR_ADVANCED_SHADERS_DEFAULT_ON = 1000
|
VRAM_FOR_ADVANCED_SHADERS_DEFAULT_ON = 6000
|
||||||
VRAM_FOR_LOW_PRIO_COURT_SCENE_CHARACTERS_DEFAULT_ON = 2000
|
VRAM_FOR_LOW_PRIO_COURT_SCENE_CHARACTERS_DEFAULT_ON = 6000
|
||||||
|
|
||||||
# If we can't find how much VRAM is available then
|
# If we can't find how much VRAM is available then
|
||||||
QUALITY_SETTING_DEFAULT_IF_VRAM_UNKNOWN_DISCRETE = "medium" # Use this setting if the GPU is from AMD or nVIDIA
|
QUALITY_SETTING_DEFAULT_IF_VRAM_UNKNOWN_DISCRETE = "medium" # Use this setting if the GPU is from AMD or nVIDIA
|
||||||
|
|
@ -1331,6 +1430,15 @@ NGraphics = {
|
||||||
"gfx/interface/icons/culture_tradition/4-items"
|
"gfx/interface/icons/culture_tradition/4-items"
|
||||||
}
|
}
|
||||||
CULTURE_TRADITION_LAYER_DIFFERENCES = 2 # How different do we want each icon to be. 2 means we'll try to ensure that all icons have at least 2 layers that are different. If you don't have enough assets, it mimght be reduced to 1 or even 0. debug.log will have a note if that happens
|
CULTURE_TRADITION_LAYER_DIFFERENCES = 2 # How different do we want each icon to be. 2 means we'll try to ensure that all icons have at least 2 layers that are different. If you don't have enough assets, it mimght be reduced to 1 or even 0. debug.log will have a note if that happens
|
||||||
|
|
||||||
|
# Daily Tick Duration for picking a framerate when adaptive framerate bloom_enabled
|
||||||
|
ADAPTIVE_FRAMERATE_DURATION = {
|
||||||
|
0.03 # default framerate below this rate (seconds)
|
||||||
|
0.05 # 60 fps
|
||||||
|
0.09 # 30 fps
|
||||||
|
0.14 # 20 fps
|
||||||
|
0.18 # 15 fps, 10 fps if higher
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
NRulerDesigner = {
|
NRulerDesigner = {
|
||||||
|
|
@ -1425,12 +1533,11 @@ NStruggle = {
|
||||||
# How much points need to be accumulated during point-based phase in order to trigger the transition to a new phase
|
# How much points need to be accumulated during point-based phase in order to trigger the transition to a new phase
|
||||||
POINT_BASED_PHASE_DEFAULT_DURATION = 1000
|
POINT_BASED_PHASE_DEFAULT_DURATION = 1000
|
||||||
# Sound effect played when change animation for struggle button
|
# Sound effect played when change animation for struggle button
|
||||||
PHASE_TRANSITION_SOUND_EFFECT_PATH = "event:/DLC/FP2/SFX/UI/fp2_struggle_button_state_change"
|
PHASE_TRANSITION_SOUND_EFFECT_PATH = "event:/DLC/FP2/SFX/UI/fp2_struggle_button_state_change"
|
||||||
YEARLY_DEFAULT_PHASE_POINTS = 0 # How many points are given to the default phase every year
|
YEARLY_DEFAULT_PHASE_POINTS = 0 # How many points are given to the default phase every year
|
||||||
PHASE_TRANSITION_DURATION = 90 # How many days before the new phase starts once the threshold is reached
|
PHASE_TRANSITION_DURATION = 90 # How many days before the new phase starts once the threshold is reached
|
||||||
NUM_CATALYST_HISTORIES_DISPLAYED = 5 # How many catalyst histories that should be shown in the struggle tooltip
|
NUM_CATALYST_HISTORIES_DISPLAYED = 5 # How many catalyst histories that should be shown in the struggle tooltip
|
||||||
NOTIFICATION_MESSAGE_RELATIONS = { "friend", "rival", "nemesis" }
|
NOTIFICATION_MESSAGE_RELATIONS = { "friend", "rival", "nemesis" }
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
NHouseUnity = {
|
NHouseUnity = {
|
||||||
|
|
@ -1439,7 +1546,7 @@ NHouseUnity = {
|
||||||
|
|
||||||
NMemories = {
|
NMemories = {
|
||||||
DEFAULT_MEMORY_DURATION_YEARS = 10 # Default nr of years until a memory expires
|
DEFAULT_MEMORY_DURATION_YEARS = 10 # Default nr of years until a memory expires
|
||||||
DEATH_MEMORY_RETENTION_YEARS_PER_TIER = { -1 -1 -1 -1 0 0 } # We can keep or extend memories of dead characters by tier. (-1 forgets characters' memories on death, 0 keeps, and X positive adds X years)
|
DEATH_MEMORY_RETENTION_YEARS_PER_TIER = { -1 -1 -1 -1 0 0 0 } # We can keep or extend memories of dead characters by tier. (-1 forgets characters' memories on death, 0 keeps, and X positive adds X years)
|
||||||
DEATH_MEMORY_RETENTION_YEARS_PLAYED_CHARACTER = 1000 # Any character that was played by a player retains their memories, adding X years
|
DEATH_MEMORY_RETENTION_YEARS_PLAYED_CHARACTER = 1000 # Any character that was played by a player retains their memories, adding X years
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1599,6 +1706,11 @@ NTaskContract = {
|
||||||
LOW_TASK_CONTRACT_TIER = 0
|
LOW_TASK_CONTRACT_TIER = 0
|
||||||
MEDIUM_TASK_CONTRACT_TIER = 3
|
MEDIUM_TASK_CONTRACT_TIER = 3
|
||||||
HIGH_TASK_CONTRACT_TIER = 4
|
HIGH_TASK_CONTRACT_TIER = 4
|
||||||
|
|
||||||
|
UI_LOW_TASK_CONTRACT_TIER = 1
|
||||||
|
UI_MEDIUM_TASK_CONTRACT_TIER = 2
|
||||||
|
UI_HIGH_TASK_CONTRACT_TIER = 3
|
||||||
|
|
||||||
ADVENTURER_DISTANCE_RESTRICTION = 22500 # Squared radius distance from adventurer camp to contract location (rough illustrations can be found in 00_distance_values.txt)
|
ADVENTURER_DISTANCE_RESTRICTION = 22500 # Squared radius distance from adventurer camp to contract location (rough illustrations can be found in 00_distance_values.txt)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -1606,9 +1718,19 @@ NAdministrative = {
|
||||||
AI_MIN_INFLUENCE_FOR_APPOINTMENT = 100 # AI ruler needs to have at least this much influence to start using appointment interactions
|
AI_MIN_INFLUENCE_FOR_APPOINTMENT = 100 # AI ruler needs to have at least this much influence to start using appointment interactions
|
||||||
AI_MAX_AGE_FOR_APPOINTMENT = 50 # AI won't support candidates above this age for new appointments
|
AI_MAX_AGE_FOR_APPOINTMENT = 50 # AI won't support candidates above this age for new appointments
|
||||||
AI_MAX_TITLES_FOR_APPOINTMENT = 10 # This many titles are considered for new appointment support per attempt. Randomized each time
|
AI_MAX_TITLES_FOR_APPOINTMENT = 10 # This many titles are considered for new appointment support per attempt. Randomized each time
|
||||||
|
AI_MAX_NEW_HOUSE_MEMBERS_FOR_APPOINTMENT = 30 # This many new house mmebers are considered for new appointment support per attempt. Randomized each time
|
||||||
|
|
||||||
BASE_REASSIGN_COST = 100 # Base value used in the scripted cost for reassigning title troops
|
BASE_REASSIGN_COST = 150 # Base value used in the scripted cost for reassigning title troops
|
||||||
DISCOUNTED_THRESHOLD_FACTOR = 0.9 # If the final reassign cost <= BASE_REASSIGN_COST * DISCOUNTED_THRESHOLD_FACTOR, we consider the title "discounted"
|
DISCOUNTED_THRESHOLD_FACTOR = 0.9 # If the final reassign cost <= BASE_REASSIGN_COST * DISCOUNTED_THRESHOLD_FACTOR, we consider the title "discounted"
|
||||||
|
|
||||||
|
APPOINTMENT_MERIT_TIER = { 0 1 1 3 5 7 9 } # This and following defines set currency level required for a character to be valid
|
||||||
|
APPOINTMENT_PRESTIGE_TIER = { 0 1 2 3 6 7 8 } # appointment candidate per title tier
|
||||||
|
APPOINTMENT_PIETY_TIER = { 0 1 2 3 6 7 8 }
|
||||||
|
APPOINTMENT_INFLUENCE_TIER = { 0 1 2 3 6 7 8 }
|
||||||
|
APPOINTMENT_UNLIMITED_TIER = { 0 0 0 0 0 0 0 } # Fallback used when appointment doesn't use currency levels
|
||||||
|
|
||||||
|
RECENT_APPOINTMENT_COOLDOWN = 1825 # Ruler must hold previous appointment this many days (five years) before considering another appointment
|
||||||
|
MERIT_POOL_CANDIDATE_SCORE_POTENTIAL_HINT = 0.5 # Percentage of total gainable spots in candidate list to be considered an opportunity when looking just at candidate score (interface only)
|
||||||
}
|
}
|
||||||
|
|
||||||
NCouncilTasks = {
|
NCouncilTasks = {
|
||||||
|
|
@ -1619,6 +1741,16 @@ NCouncilTasks = {
|
||||||
COUNCIL_TASK_DEFAULT_GLOW_ASSET = "gfx/particles/halo.dds"
|
COUNCIL_TASK_DEFAULT_GLOW_ASSET = "gfx/particles/halo.dds"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
NConfederation = {
|
||||||
|
DEFAULT_TYPE = "nomadic_confederation" # Maintain backwards compatibility with "Khans of the Steppe" (in saves and script)
|
||||||
|
MAX_COHESION = 100 # Maximum cohesion value for a confederation (minimum is always 0)
|
||||||
|
|
||||||
|
COHESION_FROM_LEADER_HOUSE_RELATION_MULT = 0.25 # Applied to the accumulated cohesion contribution of the relations for the leading house
|
||||||
|
COHESION_FROM_MEMBER_HOUSE_RELATION_MULT = 0.10 # Applied to the accumulated cohesion contribution of the relations for other member houses
|
||||||
|
|
||||||
|
COHESION_SOFT_CAP_TAX = 0.5 # Cohesion tax for any gained monthly gained cohesion over the soft cap
|
||||||
|
}
|
||||||
|
|
||||||
NKurultai = {
|
NKurultai = {
|
||||||
KURULTAI_SUCCESSION_CHILD_MINIMUM_AGE = 12 # Minimum age when a child gets to vote in the Kurultai Succession
|
KURULTAI_SUCCESSION_CHILD_MINIMUM_AGE = 12 # Minimum age when a child gets to vote in the Kurultai Succession
|
||||||
KURULTAI_SUCCESSION_CHILD_ELECTORS_DOMINANCE_1 = 2 # 'has_realm_law = nomadic_authority_1' means total 4 Kurultai members + X children votes during succession
|
KURULTAI_SUCCESSION_CHILD_ELECTORS_DOMINANCE_1 = 2 # 'has_realm_law = nomadic_authority_1' means total 4 Kurultai members + X children votes during succession
|
||||||
|
|
@ -1629,11 +1761,32 @@ NKurultai = {
|
||||||
}
|
}
|
||||||
|
|
||||||
NBloodBrother = {
|
NBloodBrother = {
|
||||||
PRESTIGE_GAIN_PER_TIER = { 0.0 0.5 1 1.5 2 2 } # Prestige gain per tier higher your blood brother is than you
|
PRESTIGE_GAIN_PER_TIER = { 0.0 0.5 1 1.5 2 2 2 } # Prestige gain per tier higher your blood brother is than you
|
||||||
PIETY_GAIN_PER_TIER = { 0.1 0.5 1 1.5 2 2.5 } # Piety gain per tier of blood brother title
|
PIETY_GAIN_PER_TIER = { 0.1 0.5 1 1.5 2 2.5 2.5 } # Piety gain per tier of blood brother title
|
||||||
RENOWN_GAIN_PER_TIER = { 0.0 0.25 0.5 0.75 1 1.25 } # Renown gain per tier of blood brother title
|
RENOWN_GAIN_PER_TIER = { 0.0 0.25 0.5 0.75 1 1.25 1.25 } # Renown gain per tier of blood brother title
|
||||||
}
|
}
|
||||||
|
|
||||||
NMigration = {
|
NMigration = {
|
||||||
MAX_MIGRATION_SQUARED_DISTANCE = 300000 # base suqared migration range before modifiers
|
MAX_MIGRATION_SQUARED_DISTANCE = 300000 # base squared migration range before modifiers
|
||||||
|
}
|
||||||
|
|
||||||
|
NSilkRoad = {
|
||||||
|
INNOVATION_TRAVEL_DURATION = 12 # How many years, it's gonna take for innovation to travel from bazaar to bazaar. Tied into innovation_travel_countdown scrited variable, please update this value
|
||||||
|
NUM_SITUATION_CATALYST_HISTORIES_DISPLAYED = 3
|
||||||
|
}
|
||||||
|
|
||||||
|
NGreatProject = {
|
||||||
|
DEFAULT_CONTRIBUTION_THRESHOLD = 50 # Default progress percentage over which the Great Project will no longer accept optional Contributions
|
||||||
|
GREAT_PROJECT_CONTRIBUTION_MAX_INVITE_OPTIONS = 3 # The maximum number of options (tested bottom up) to use when checking from the UI if a potential contributor "Can be convinced"
|
||||||
|
GREAT_PROJECT_REBUILD_CONSTRUCTION_TIME = 365 # The number of days a Great Building is under construction when being rebuilt
|
||||||
|
}
|
||||||
|
|
||||||
|
NMandala = {
|
||||||
|
MAX_RADIANCE = 100 # max number for radiance value
|
||||||
|
TRIBUTARY_LEGITIMACY_GAIN = 0.05 # Value for being tributary to mandala ruler. Gains legitimacy per suzerain radiance value.
|
||||||
|
}
|
||||||
|
|
||||||
|
NTreasuryBudgeting = {
|
||||||
|
BASE_RATE_CHANGE_OPINION_LEVELS = { -0.8 -0.2 -0.05 0.05 0.2 0.8 10000000.0 } # Percentage budget base rate change levels (selected if smaller)
|
||||||
|
BASE_RATE_CHANGE_OPINION_MODIFIERS = { "reduction_large" "reduction_medium" "reduction_small" "" "increase_small" "increase_medium" "increase_large" } # What opinion modifier name to look for (defined `this_name` in `treasury_budget_<category>_<this_name>`
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:976489bf4105c4b8de795f57f7725111733f9ba94a055e99613b8653e80cdac0
|
|
||||||
size 65660
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d2feb9bc234b06d78942b2a6154d5db22fc1584ccb124a335e234dc6cc065f24
|
|
||||||
size 43836
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:264642c6701a96d4ceb7b443e417c38ddefc14f69876d042b85b573d76a7b3ea
|
|
||||||
size 11152
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f358ada53a1289daa8e4fe51e177a4e1541e0fb8119ccb1c6e83d04916e72c3d
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2209e528fa3a0617912cbedb0a208d6d596b8e51008bb465700b98f0e0f85dc1
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:362b0c3e2d199efb213cafe5450d2b06e66402f7eb2c8413b6a0fd21bb282980
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b6121137cccc0284caf23f419942415b21ca977da7a631dab5c861325fadbed9
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:8de8d1211432bdd813b2f406dfd8417d37f8a015f493f6c4283bfb1653273c8e
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:69d6b9ae9429bf76d34f7ab0419da9c53681c3bcdb043a84ceb011c06bb8a3b3
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f664eb9cc755cc4c595fde0ce00e6318c20986ddd39d0fb5e03c701091ed5a3a
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bf6cf9e43d9cf5e335a816eb6af3cab7417a6f45aa6f28a2ff1ebf9aab975089
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a694bfd7342d8654ebe0b70afca643f5989fd976c582dc6f2fcfdef656b06026
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d5133755ec5efabce21067c7c0118a0e6f4a853e83de56d1ab7ccef6eb4fd933
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3943693bbc39395f2f72f561801464606defb1734411f2936c90ed2c186f3db3
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:aa4cc30982472babe52c7231fb749795e4ee9721676fb78698207fe186b0f725
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4e1dcb5d927aae1736a30d29fb0c02535d4e3e1c677b123fcdb2ca99629b5b5d
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:d4692a3166508475493dd28bec61cf0ec0a7dcdb4ad40930c6e583eb9f029a41
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:362b0c3e2d199efb213cafe5450d2b06e66402f7eb2c8413b6a0fd21bb282980
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b3a6b0c8acf979cf9f0f8f7cdde38951935d24021feef26af06cc92c001b37d0
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:e891cdb40067718e5537cbe6450d28fd938941cc0052dba60223ca5dab74be23
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:7889bb0dd4a256c50424c1d91f1e2c860d98a8131ae3d64478c4cccb27c48692
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:ba3e111aabccd6bdd9a51411d93c218527f6322001b143add7f7acc45f879895
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:2f24b248ef48233c120ad12f3f0415a334dc4c936821f8efddc69861dbfdac88
|
|
||||||
size 4000
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:32108d224ba03e7aaedede32e033384981d729447a3e7ce5439d2c472496fbb4
|
|
||||||
size 29368
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5ef2407563e660f0ac637ed214299e3d46a78bfab34182e51aed1a5e44381f4b
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:9391929499285ae7af1fc443aa37f558db77489bd53f119b35a4949bf618c281
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:914469b67d0190f9733f98344c922c7086c2ac751c1bcc778ea7920edbbd4bd2
|
|
||||||
size 38876
|
|
||||||
|
|
@ -1,94 +0,0 @@
|
||||||
# The left hand side border types are pre-defined in code
|
|
||||||
# The right hand side is the texture and uses the default PdxBorder in gfx/FX/pdxborder.shader
|
|
||||||
# You can overwrite the effect and shader file by doing = { texture = ".dds" shader = ".shader" effect = "effect "}
|
|
||||||
# Alternatively you can define the border as vertical = yes in which case it uses settings.vertical_borders to load
|
|
||||||
|
|
||||||
water = "border_water.dds"
|
|
||||||
province = "border_province.dds"
|
|
||||||
county = "border_county.dds"
|
|
||||||
domain = "border_domain.dds"
|
|
||||||
other_realm = "border_other_realm.dds"
|
|
||||||
my_realm = "border_my_realm.dds"
|
|
||||||
sub_realm = "border_sub_realm.dds"
|
|
||||||
hovered_realm = "border_hovered_realm.dds"
|
|
||||||
hovered_realm_flat_map = "border_hovered_realm_flat_map.dds"
|
|
||||||
hovered_unit_destination = "selection_highlight.dds"
|
|
||||||
hovered_unit_destination_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
highlighted_province = "border_highlighted_province.dds"
|
|
||||||
selected_province = "selection_highlight.dds"
|
|
||||||
selected_realm = "border_selected_realm.dds"
|
|
||||||
selected_realm_flat_map = "border_selected_realm_flat_map.dds"
|
|
||||||
impassable = "border_impassable.dds"
|
|
||||||
selected_title = "selection_highlight.dds"
|
|
||||||
create_destroy_title = "selection_highlight.dds"
|
|
||||||
|
|
||||||
at_war = {
|
|
||||||
texture = "border_war.dds"
|
|
||||||
effect = "PdxBorderWar"
|
|
||||||
}
|
|
||||||
at_war_ally = {
|
|
||||||
texture = "border_war_ally.dds"
|
|
||||||
effect = "PdxBorderWar"
|
|
||||||
}
|
|
||||||
war_target = {
|
|
||||||
texture = "border_war_target.dds"
|
|
||||||
effect = "PdxBorderWar"
|
|
||||||
}
|
|
||||||
civil_war = {
|
|
||||||
texture = "border_civil_war.dds"
|
|
||||||
effect = "PdxBorderWar"
|
|
||||||
}
|
|
||||||
|
|
||||||
realm_explorer_independent = "border_realm_explorer_independent.dds"
|
|
||||||
realm_explorer_vassal = "border_realm_explorer_vassal.dds"
|
|
||||||
culture = "selection_highlight.dds"
|
|
||||||
culture_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
faith = "selection_highlight.dds"
|
|
||||||
faith_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
houses = "selection_highlight.dds"
|
|
||||||
houses_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
geographical_region = "selection_highlight.dds"
|
|
||||||
geographical_region_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
court_language = "selection_highlight.dds"
|
|
||||||
court_language_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
epidemic = "epidemic.dds"
|
|
||||||
selected_epidemic = "selection_highlight.dds"
|
|
||||||
selected_epidemic_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
|
|
||||||
legend = {
|
|
||||||
vertical = yes
|
|
||||||
}
|
|
||||||
|
|
||||||
selected_legend = "selection_highlight.dds"
|
|
||||||
selected_legend_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
activity_planner = "selection_highlight.dds"
|
|
||||||
activity_planner_flat_map = "selection_highlight_flat_map.dds"
|
|
||||||
my_top_realm = "my_top_realm.dds"
|
|
||||||
|
|
||||||
struggle = {
|
|
||||||
texture = "struggle.dds"
|
|
||||||
effect = "PdxBorderStruggle"
|
|
||||||
}
|
|
||||||
struggle_involved = {
|
|
||||||
texture = "struggle_involved.dds"
|
|
||||||
effect = "PdxBorderStruggle"
|
|
||||||
}
|
|
||||||
struggle_interloper = {
|
|
||||||
texture = "struggle_interloper.dds"
|
|
||||||
effect = "PdxBorderStruggle"
|
|
||||||
}
|
|
||||||
struggle_uninvolved = {
|
|
||||||
texture = "struggle_uninvolved.dds"
|
|
||||||
effect = "PdxBorderStruggle"
|
|
||||||
}
|
|
||||||
situation = "border_realm_explorer_independent.dds"
|
|
||||||
move_domicile_planner = "selection_highlight_flat_map.dds"
|
|
||||||
|
|
||||||
debug = "debug.dds"
|
|
||||||
|
|
||||||
migration_target = {
|
|
||||||
texture = "migrate.dds"
|
|
||||||
effect = "PdxBorderStruggle"
|
|
||||||
}
|
|
||||||
|
|
||||||
migration_domain = "migrate_domain.dds"
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
@height = 80.0
|
|
||||||
@legends1scale = 1.0
|
|
||||||
@legends2scale = 1.0
|
|
||||||
@legends3scale = 1.0
|
|
||||||
|
|
||||||
legend = {
|
|
||||||
height = @height
|
|
||||||
linear_angle = 0
|
|
||||||
color = { 1.0 1.0 1.0 }
|
|
||||||
shader_file = "gfx/FX/pdxverticalborder.shader"
|
|
||||||
effectname = "legend_vertical_border"
|
|
||||||
masks = {
|
|
||||||
mask = {
|
|
||||||
texture = "vertical_border_legend.dds"
|
|
||||||
speed = { 0.0 0.0 }
|
|
||||||
uv_scale = { @[1/height] 1.0 }
|
|
||||||
}
|
|
||||||
mask = {
|
|
||||||
texture = "vertical_border_legend.dds"
|
|
||||||
speed = { 0.0 0.4 }
|
|
||||||
uv_scale = { @[legends1scale/height] @legends1scale }
|
|
||||||
}
|
|
||||||
mask = {
|
|
||||||
texture = "vertical_border_legend.dds"
|
|
||||||
speed = { 0.0 0.0 }
|
|
||||||
uv_scale = { @[legends2scale/height] @legends2scale }
|
|
||||||
}
|
|
||||||
mask = {
|
|
||||||
texture = "vertical_border_legend.dds"
|
|
||||||
speed = { 0.0 0.0 }
|
|
||||||
uv_scale = { @[legends3scale/height] @legends3scale }
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:32108d224ba03e7aaedede32e033384981d729447a3e7ce5439d2c472496fbb4
|
|
||||||
size 29368
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:affdd08039549c510f8e9960048ac7c74d652a07f8bdec3ef533c883d21ae719
|
|
||||||
size 29368
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:f61db17d73825d632baf9d78940657299ff56bcbc85b291cf6c200f5dc96e512
|
|
||||||
size 29368
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:a9e44d7dbe97e10bc784336260c42b07282b4e2391fe551d76ab63d73de4be4f
|
|
||||||
size 29368
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:84056d978270ac1f4e507f6b040c251a29bccd7484434022a8911a03e7411f40
|
|
||||||
size 349680
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:bd67348bd31fa167588b5ea97bfeea9deb043d4cac76c4c4a9df18ccc5cb450f
|
|
||||||
size 1398256
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
"DiseaseMaskFactor" = 4.00000
|
|
||||||
"FogSpeedFactor" = 0.300000
|
|
||||||
"FogStrengthFactor" = 0.400000
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5685f5a8413097231645f3bf8da5992e1be664f9dba870ce74bb8e1f87ff00ac
|
|
||||||
size 1398256
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:286784345f7ff6e9bd1a19d70600d12a0f0d24d9a5531a9d6f27e18b5ab9cae5
|
|
||||||
size 1048784
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0.08 0.15 1 }
|
|
||||||
sun_intensity = 7
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -3.3 1.3 -1 }
|
|
||||||
shadow_direction_offset = { 0 1.8 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/map/environment/qwantani_8k_nosun_cube_specular.dds"
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.4 1 } #Actual fog
|
|
||||||
fog_begin = 100
|
|
||||||
fog_end = 600
|
|
||||||
fog_max = 1
|
|
||||||
|
|
||||||
water_sun_direction_offset = { 0 0 0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# original
|
|
||||||
# water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturation. Causes visual problems if increased beyond 1.0
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 0.5
|
|
||||||
bloom_scale = 0.75
|
|
||||||
bright_threshold = 0.4
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.65
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 0.85
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.6
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.1
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
# Map global Depth of field settings
|
|
||||||
# WARNING - Can impact performance
|
|
||||||
depthoffield = {
|
|
||||||
enabled = yes
|
|
||||||
dof_samplecount = 16 # Can have large performance impact
|
|
||||||
dof_baseradius = 0.1 # Blur radius
|
|
||||||
dof_blurblendmin = 0.1 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
dof_blurblendmax = 2.0 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
|
|
||||||
# Camera based settings - no performance impact
|
|
||||||
dof_blurmin = 1.0
|
|
||||||
dof_blurmax = 50.0
|
|
||||||
dof_blurscale = 3.0
|
|
||||||
dof_blurexponent = 1.3
|
|
||||||
dof_heightmin = 0.0
|
|
||||||
dof_heightmax = 1000.0
|
|
||||||
}
|
|
||||||
|
|
||||||
## U2 values // J. Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,117 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
#sun_color = hsv{ 0.08 0.15 1 }
|
|
||||||
sun_color = hsv{ 0.08 0.15 1 }
|
|
||||||
sun_intensity = 5
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -3.3 2.3 -1 }
|
|
||||||
shadow_direction_offset = { 0 1.8 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/portraits/environments/feast_01.dds"
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.4 1 } #Actual fog
|
|
||||||
fog_begin = 100
|
|
||||||
fog_end = 600
|
|
||||||
fog_max = 1
|
|
||||||
|
|
||||||
water_sun_direction_offset = { 0 0 0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# original
|
|
||||||
# water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturation. Causes visual problems if increased beyond 1.0
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 0.5
|
|
||||||
bloom_scale = 0.75
|
|
||||||
bright_threshold = 0.4
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.65
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 0.85
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.6
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.1
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
# Map global Depth of field settings
|
|
||||||
# WARNING - Can impact performance
|
|
||||||
depthoffield = {
|
|
||||||
enabled = yes
|
|
||||||
dof_samplecount = 16 # Can have large performance impact
|
|
||||||
dof_baseradius = 0.1 # Blur radius
|
|
||||||
dof_blurblendmin = 0.1 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
dof_blurblendmax = 2.0 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
|
|
||||||
# Camera based settings - no performance impact
|
|
||||||
dof_blurmin = 1.0
|
|
||||||
dof_blurmax = 50.0
|
|
||||||
dof_blurscale = 3.0
|
|
||||||
dof_blurexponent = 1.3
|
|
||||||
dof_heightmin = 0.0
|
|
||||||
dof_heightmax = 1000.0
|
|
||||||
}
|
|
||||||
|
|
||||||
## U2 values // J. Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,68 +0,0 @@
|
||||||
ambient_pos_x = hsv { 0.65 0.0 0.0 } # From Right
|
|
||||||
ambient_neg_x = hsv { 0.65 0.0 0.0 } # From Left
|
|
||||||
ambient_pos_y = hsv { 0.65 0.0 0.0 } # From Top
|
|
||||||
ambient_neg_y = hsv { 0.65 0.0 0.0 } # From Bottom
|
|
||||||
ambient_pos_z = hsv { 0.65 0.0 0.0 } # From Back
|
|
||||||
ambient_neg_z = hsv { 0.65 0.0 0.0 } # From Front
|
|
||||||
|
|
||||||
#Color of thing in shadow
|
|
||||||
|
|
||||||
shadow_ambient_pos_x = hsv { 0.6 0.1 1.4 } # From Right
|
|
||||||
shadow_ambient_neg_x = hsv { 0.6 0.1 1.4 } # From Left
|
|
||||||
shadow_ambient_pos_y = hsv { 0.6 0.1 1.4 } # From Top
|
|
||||||
shadow_ambient_neg_y = hsv { 0.6 0.1 1.4 } # From Bottom
|
|
||||||
shadow_ambient_pos_z = hsv { 0.6 0.1 1.4 } # From Back
|
|
||||||
shadow_ambient_neg_z = hsv { 0.6 0.1 1.4 } # From Front
|
|
||||||
#shadow_ambient_pos_y = hsv { 0.0 0.0 0.0 } # From Top (Neutral)
|
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0.1 0.3 1 }
|
|
||||||
sun_intensity = 0
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { 1.0 2 -1.25 }
|
|
||||||
shadow_direction_offset = { 0 0 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/map/environment/qwantani_8k_nosun_cube_specular.dds"
|
|
||||||
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.3 1.0 } #Actual fog
|
|
||||||
fog_begin = 10.0
|
|
||||||
fog_end = 200.0
|
|
||||||
fog_max = 0.5
|
|
||||||
|
|
||||||
water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturation
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0.1 }
|
|
||||||
levels_max = hsv{ 0 0 0.9 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 1
|
|
||||||
bloom_scale = 0.2
|
|
||||||
bright_threshold = 1.0
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.45
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
#shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.220000
|
|
||||||
linear_strength=0.300000
|
|
||||||
linear_angle=0.100000
|
|
||||||
toe_strength=0.200000
|
|
||||||
toe_numerator=0.010000
|
|
||||||
toe_denominator=0.300000
|
|
||||||
linear_white=11.200000
|
|
||||||
}
|
|
||||||
|
|
@ -1,115 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.5 0.08 0 }
|
|
||||||
sun_color = hsv{ 0.08 0.04 .5 }
|
|
||||||
sun_intensity = 12
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -3.3 2.3 -1 }
|
|
||||||
shadow_direction_offset = { 0 1.8 0 }
|
|
||||||
cubemap_intensity = 2
|
|
||||||
cubemap = "gfx/portraits/environments/bp2_university_02.dds"
|
|
||||||
cubemap_y_rotation = 45
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.4 1 } #Actual fog
|
|
||||||
fog_begin = 100
|
|
||||||
fog_end = 600
|
|
||||||
fog_max = 1
|
|
||||||
|
|
||||||
water_sun_direction_offset = { 0 0 0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# original
|
|
||||||
# water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturation. Causes visual problems if increased beyond 1.0
|
|
||||||
value_scale = 1 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 0.2
|
|
||||||
bloom_scale = 0.6
|
|
||||||
bright_threshold = .1
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.65
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 0.85
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.6
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.1
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
# Map global Depth of field settings
|
|
||||||
# WARNING - Can impact performance
|
|
||||||
depthoffield = {
|
|
||||||
enabled = yes
|
|
||||||
dof_samplecount = 16 # Can have large performance impact
|
|
||||||
dof_baseradius = 0.1 # Blur radius
|
|
||||||
dof_blurblendmin = 0.1 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
dof_blurblendmax = 2.0 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
|
|
||||||
# Camera based settings - no performance impact
|
|
||||||
dof_blurmin = 1.0
|
|
||||||
dof_blurmax = 50.0
|
|
||||||
dof_blurscale = 3.0
|
|
||||||
dof_blurexponent = 1.3
|
|
||||||
dof_heightmin = 0.0
|
|
||||||
dof_heightmax = 1000.0
|
|
||||||
}
|
|
||||||
|
|
||||||
## U2 values // J. Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
ambient_pos_x = hsv { 0.65 0.0 0.0 } # From Right
|
|
||||||
ambient_neg_x = hsv { 0.65 0.0 0.0 } # From Left
|
|
||||||
ambient_pos_y = hsv { 0.65 0.0 0.0 } # From Top
|
|
||||||
ambient_neg_y = hsv { 0.65 0.0 0.0 } # From Bottom
|
|
||||||
ambient_pos_z = hsv { 0.65 0.0 0.0 } # From Back
|
|
||||||
ambient_neg_z = hsv { 0.65 0.0 0.0 } # From Front
|
|
||||||
|
|
||||||
#Color of thing in shadow
|
|
||||||
|
|
||||||
shadow_ambient_pos_x = hsv { 0.6 0.1 1.4 } # From Right
|
|
||||||
shadow_ambient_neg_x = hsv { 0.6 0.1 1.4 } # From Left
|
|
||||||
shadow_ambient_pos_y = hsv { 0.6 0.1 1.4 } # From Top
|
|
||||||
shadow_ambient_neg_y = hsv { 0.6 0.1 1.4 } # From Bottom
|
|
||||||
shadow_ambient_pos_z = hsv { 0.6 0.1 1.4 } # From Back
|
|
||||||
shadow_ambient_neg_z = hsv { 0.6 0.1 1.4 } # From Front
|
|
||||||
#shadow_ambient_pos_y = hsv { 0.0 0.0 0.0 } # From Top (Neutral)
|
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0.1 0.2 1 }
|
|
||||||
sun_intensity = 5
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -2.0 1.5 -1.5 }
|
|
||||||
shadow_direction_offset = { 0 0 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/map/environment/qwantani_8k_nosun_cube_specular-2_dxt1.dds"
|
|
||||||
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.3 1.0 } #Actual fog
|
|
||||||
fog_begin = 75.0
|
|
||||||
fog_end = 250.0
|
|
||||||
fog_max = 0.5
|
|
||||||
|
|
||||||
water_sun_direction_offset = { -4 5 15 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
#original
|
|
||||||
#water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 0.0 # Saturations
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 1
|
|
||||||
bloom_scale = 0.6
|
|
||||||
bright_threshold = 2
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.65
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 3.4
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.35
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.4
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
## Uncharted 2 values // John Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0 0 1 }
|
|
||||||
sun_intensity = 10
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -2.0 1.5 -1.5 }
|
|
||||||
shadow_direction_offset = { 0 0 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/map/environment/qwantani_8k_nosun_cube_specular.dds"
|
|
||||||
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.3 0 } #Actual fog
|
|
||||||
fog_begin = 75.0
|
|
||||||
fog_end = 250.0
|
|
||||||
fog_max = 0
|
|
||||||
|
|
||||||
water_sun_direction_offset = { -4 5 15 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
#original
|
|
||||||
#water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturations
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 1
|
|
||||||
bloom_scale = 0
|
|
||||||
bright_threshold = 2
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.5
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 1
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = ""
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.35
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.4
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
## Uncharted 2 values // John Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,97 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0 0 1 }
|
|
||||||
sun_intensity = 14
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { 0.5 1.0 -2.5 }
|
|
||||||
shadow_direction_offset = { 0 0 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/map/environment/qwantani_8k_nosun_cube_specular.dds"
|
|
||||||
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.3 0 } #Actual fog
|
|
||||||
fog_begin = 75.0
|
|
||||||
fog_end = 250.0
|
|
||||||
fog_max = 0
|
|
||||||
|
|
||||||
water_sun_direction_offset = { -4 5 15 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
#original
|
|
||||||
#water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturations
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 1
|
|
||||||
bloom_scale = 0
|
|
||||||
bright_threshold = 2
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.5
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 1
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = ""
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.35
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.4
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
## Uncharted 2 values // John Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,114 +0,0 @@
|
||||||
|
|
||||||
# sun_color = hsv{ 0.1 0.08 1 }
|
|
||||||
sun_color = hsv{ 0.08 0.15 1 }
|
|
||||||
sun_intensity = 5
|
|
||||||
|
|
||||||
# +Right/-Left Height -Front/+Back
|
|
||||||
sun_direction = { -3.3 1.3 -1 }
|
|
||||||
shadow_direction_offset = { 0 1.8 0 }
|
|
||||||
cubemap_intensity = 1
|
|
||||||
cubemap = "gfx/portraits/environments/castle_interior_01_fire.dds"
|
|
||||||
|
|
||||||
fog_color = hsv{ 0.58 0.4 1 } #Actual fog
|
|
||||||
fog_begin = 100
|
|
||||||
fog_end = 600
|
|
||||||
fog_max = 1
|
|
||||||
|
|
||||||
water_sun_direction_offset = { 0 0 0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# original
|
|
||||||
# water_sun_direction_offset = { -0.88 0.08 2.0 } # +Right / -Left, Height, -Front/ +Back
|
|
||||||
|
|
||||||
# Post effects
|
|
||||||
hue_offset = 0
|
|
||||||
saturation_scale = 1.0 # Saturation. Causes visual problems if increased beyond 1.0
|
|
||||||
value_scale = 1.0 # Light multiplier
|
|
||||||
colorbalance = { 1 1 1 }
|
|
||||||
levels_min = hsv{ 0 0 0 }
|
|
||||||
levels_max = hsv{ 0 0 1 } # High increases range / Lower pushes range together
|
|
||||||
|
|
||||||
bloom_width = 0.5
|
|
||||||
bloom_scale = 0.75
|
|
||||||
bright_threshold = 0.4
|
|
||||||
|
|
||||||
hdr_min_adjustment = 0.5 # Adjust brigtness to be so extreme, not as bright as it should be. Limits exposure
|
|
||||||
hdr_max_adjustment = 1.0
|
|
||||||
hdr_adjustment_speed = 15.0
|
|
||||||
tonemap_middlegrey = 0.65
|
|
||||||
tonemap_whiteluminance = 1.0
|
|
||||||
|
|
||||||
exposure_function = "FixedExposure"
|
|
||||||
exposure = 0.85
|
|
||||||
|
|
||||||
### Tonemapping function; "Uncharted", "Reinhard", "ReinhardModified", "Filmic". Leave empty for netural gamma corrected output.
|
|
||||||
### You can find them in restorescene.shader
|
|
||||||
tonemap_function = "Uncharted"
|
|
||||||
|
|
||||||
tonemap_curve={
|
|
||||||
shoulder_strength=0.6
|
|
||||||
linear_strength=0.2
|
|
||||||
linear_angle=0.1
|
|
||||||
toe_strength=0.1
|
|
||||||
toe_numerator=0.01
|
|
||||||
toe_denominator=0.3
|
|
||||||
linear_white=11.2
|
|
||||||
}
|
|
||||||
|
|
||||||
# Map global Depth of field settings
|
|
||||||
# WARNING - Can impact performance
|
|
||||||
depthoffield = {
|
|
||||||
enabled = yes
|
|
||||||
dof_samplecount = 16 # Can have large performance impact
|
|
||||||
dof_baseradius = 0.1 # Blur radius
|
|
||||||
dof_blurblendmin = 0.1 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
dof_blurblendmax = 2.0 # Blur blend, used to blend between the downsampled dof image and the focused full resolution image
|
|
||||||
|
|
||||||
# Camera based settings - no performance impact
|
|
||||||
dof_blurmin = 1.0
|
|
||||||
dof_blurmax = 50.0
|
|
||||||
dof_blurscale = 3.0
|
|
||||||
dof_blurexponent = 1.3
|
|
||||||
dof_heightmin = 0.0
|
|
||||||
dof_heightmax = 1000.0
|
|
||||||
}
|
|
||||||
|
|
||||||
## U2 values // J. Hable
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=0.22
|
|
||||||
# linear_strength=0.3
|
|
||||||
# linear_angle=0.1
|
|
||||||
# toe_strength=0.2
|
|
||||||
# toe_numerator=0.01
|
|
||||||
# toe_denominator=0.3
|
|
||||||
# linear_white=11.2
|
|
||||||
# }
|
|
||||||
|
|
||||||
# ## Flat Curve
|
|
||||||
# tonemap_curve={
|
|
||||||
# shoulder_strength=1
|
|
||||||
# linear_strength=0
|
|
||||||
# linear_angle=1
|
|
||||||
# toe_strength=1
|
|
||||||
# toe_numerator=1
|
|
||||||
# toe_denominator=0.99
|
|
||||||
# linear_white=1
|
|
||||||
# }
|
|
||||||
|
|
||||||
### Uncharted Tonemapping, applies only when "tonemap_function" is set to "Uncharted"
|
|
||||||
### A = shoulder_strength
|
|
||||||
### B = linear_strength
|
|
||||||
### C = linear_angle
|
|
||||||
### D = toe_strength
|
|
||||||
### E = toe_numerator
|
|
||||||
### F = toe_denominator
|
|
||||||
### F(x) = ((x(A*x + C*B) + D*E) / (x(A*x + B) + D*F)) - E/F
|
|
||||||
### FinalColor = F(LinearColor)/F(LinearWhite)
|
|
||||||
|
|
||||||
### Console cmd to visualize curve: shader_debug PDX_DEBUG_TONEMAP_CURVE
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:88caa93f96b7063f9a4c3a6a1d4db67babdd6055d2545fdeeb04337a39d55124
|
|
||||||
size 2097280
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:eb2ccea0e9b824aebfb08383a2963cbe88447d55c976f452e8efb28fe7ff2658
|
|
||||||
size 1048784
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:86647705ca9c31489b311f2a4933593ded5bbfd3b535b9846ecff991a49af1d9
|
|
||||||
size 1048704
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,184 +0,0 @@
|
||||||
object={
|
|
||||||
name="bridge 01"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="bridge_01_mesh"
|
|
||||||
count=65
|
|
||||||
transform="2006.957764 1.823730 2821.479248 0.000000 0.112501 0.000000 0.993651 1.107324 1.107324 1.107324
|
|
||||||
2085.752930 1.963135 2772.360840 0.000000 0.472360 0.000000 0.881406 1.172290 1.172290 1.172290
|
|
||||||
1976.286255 1.963135 2833.257812 0.000000 0.237775 0.000000 0.971320 1.000000 1.000000 1.000000
|
|
||||||
1927.012329 3.885010 2873.366211 0.000000 0.757051 0.000000 0.653356 1.000000 1.000000 1.000000
|
|
||||||
1958.371582 2.158691 2952.244141 0.000000 0.820283 0.000000 0.571957 1.000000 1.000000 1.000000
|
|
||||||
1420.189697 1.917725 3469.786377 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1388.779785 2.377930 3390.520996 0.000000 -0.121495 0.000000 0.992592 1.184521 1.184521 1.184521
|
|
||||||
2169.343262 1.447021 3132.214600 0.000000 0.437640 0.000000 0.899150 1.280566 1.280566 1.280566
|
|
||||||
2250.261719 1.768799 3078.309814 0.000000 0.712440 0.000000 0.701733 1.107130 1.107130 1.107130
|
|
||||||
1959.617676 1.572998 2442.627686 0.000000 -0.181784 0.000000 0.983338 1.000000 1.000000 1.000000
|
|
||||||
1978.565308 1.811768 2445.066406 0.000000 -0.267750 0.000000 0.963488 1.100636 1.100636 1.100636
|
|
||||||
2007.251831 1.476563 2426.484863 0.000000 0.768804 0.000000 0.639485 1.000000 1.000000 1.000000
|
|
||||||
2006.050781 1.979492 2372.283691 0.000000 -0.675553 0.000000 0.737311 1.000000 1.000000 1.000000
|
|
||||||
2354.961426 1.714844 3323.854248 0.000000 -0.269837 0.000000 0.962906 1.000000 1.000000 1.000000
|
|
||||||
2352.711670 1.716797 2781.286133 0.000000 -0.090756 0.000000 0.995873 1.000000 1.000000 1.000000
|
|
||||||
2517.456299 0.889160 2642.310303 0.000000 0.531985 0.000000 0.846753 0.874976 0.874976 0.874976
|
|
||||||
2499.241455 0.996094 2674.218018 0.000000 0.441094 0.000000 0.897461 1.000000 1.000000 1.000000
|
|
||||||
2514.515137 1.117188 2726.083496 0.000000 -0.477121 0.000000 0.878838 1.000000 1.000000 1.000000
|
|
||||||
2488.531494 1.577393 2738.050781 0.000000 0.587224 0.000000 0.809425 1.000000 1.000000 1.000000
|
|
||||||
2482.887207 1.686035 2717.407471 0.000000 0.234372 0.000000 0.972147 0.922778 0.922778 0.922778
|
|
||||||
2450.451904 1.091553 2858.925781 0.000000 0.627790 0.000000 0.778383 1.000000 1.000000 1.000000
|
|
||||||
2607.106689 0.739258 2829.386230 0.000000 -0.802363 0.000000 0.596836 1.000000 1.000000 1.000000
|
|
||||||
2476.276855 1.763672 2973.940430 0.000000 -0.402080 0.000000 0.915604 1.000000 1.000000 1.000000
|
|
||||||
2662.864258 0.841064 3014.976074 0.000000 -0.536371 0.000000 0.843982 1.000000 1.000000 1.000000
|
|
||||||
2776.609131 1.917725 3024.895508 0.000000 -0.123797 0.000000 0.992308 1.000000 1.000000 1.000000
|
|
||||||
2828.017822 1.526123 2995.331543 0.000000 0.432502 0.000000 0.901633 1.000000 1.000000 1.000000
|
|
||||||
2883.260010 2.245850 2981.693115 0.000000 -0.619345 0.000000 0.785119 1.000000 1.000000 1.000000
|
|
||||||
2804.114258 2.569336 3195.937012 0.000000 0.076950 0.000000 0.997035 1.087720 1.087720 1.087720
|
|
||||||
2674.780518 0.872070 3215.582275 0.000000 -0.706072 0.000000 0.708140 1.000000 1.000000 1.000000
|
|
||||||
2617.385254 1.424561 3130.419678 0.000000 0.297316 0.000000 0.954779 1.000000 1.000000 1.000000
|
|
||||||
2573.587891 1.790527 3119.956299 0.000000 -0.659409 0.000000 0.751785 1.000000 1.000000 1.000000
|
|
||||||
2524.288574 1.977051 3116.454834 0.000000 0.382120 0.000000 0.924112 1.000000 1.000000 1.000000
|
|
||||||
2397.315918 0.770020 3253.749268 0.000000 0.677834 0.000000 0.735215 1.000000 1.000000 1.000000
|
|
||||||
2419.696289 1.663574 3166.833008 0.000000 -0.605473 0.000000 0.795866 1.000000 1.000000 1.000000
|
|
||||||
2401.355225 0.475586 3317.064453 0.000000 -0.667514 0.000000 0.744597 1.000000 1.000000 1.000000
|
|
||||||
2929.018799 1.784180 3105.046631 0.000000 -0.287013 0.000000 0.957927 1.000000 1.000000 1.000000
|
|
||||||
2921.186035 0.665771 3126.576660 0.000000 0.483251 0.000000 0.875482 1.000000 1.000000 1.000000
|
|
||||||
2408.447266 2.350830 3010.913574 0.000000 -0.125523 0.000000 0.992091 1.000000 1.000000 1.000000
|
|
||||||
2403.595703 1.536865 3073.968994 0.000000 -0.442655 0.000000 0.896692 1.000000 1.000000 1.000000
|
|
||||||
2431.599854 1.124023 3400.808838 0.000000 -0.547144 0.000000 0.837038 1.000000 1.000000 1.000000
|
|
||||||
2330.586182 0.862305 3036.283936 0.000000 0.466600 0.000000 0.884468 1.000000 1.000000 1.000000
|
|
||||||
2717.487549 1.931641 3219.907715 0.000000 0.069159 0.000000 0.997606 1.000000 1.000000 1.000000
|
|
||||||
2626.157471 1.286377 3322.205322 0.000000 0.682866 0.000000 0.730544 1.000000 1.000000 1.000000
|
|
||||||
2556.968994 0.853516 3382.837158 0.000000 0.557042 0.000000 0.830484 1.000000 1.000000 1.000000
|
|
||||||
2823.050293 0.529053 3510.985840 0.000000 0.238167 0.000000 0.971224 1.000000 1.000000 1.000000
|
|
||||||
2599.950439 0.478271 3670.013672 0.000000 0.247966 0.000000 0.968769 1.088550 1.088550 1.088550
|
|
||||||
2458.570068 1.774414 2491.473633 0.000000 0.296645 0.000000 0.954988 1.000000 1.000000 1.000000
|
|
||||||
2601.447510 1.800781 2345.621338 0.000000 0.363943 0.000000 0.931421 1.000000 1.000000 1.000000
|
|
||||||
2708.646729 0.793701 2381.362549 0.000000 -0.458131 0.000000 0.888885 1.000000 1.000000 1.000000
|
|
||||||
2784.580811 0.636963 2488.245361 0.000000 -0.725568 0.000000 0.688151 1.000000 1.000000 1.000000
|
|
||||||
2595.349854 2.002930 2589.366943 0.000000 0.415338 0.000000 0.909667 1.000000 1.000000 1.000000
|
|
||||||
3259.207275 1.970215 2564.942871 0.000000 -0.681527 0.000000 0.731793 1.154956 1.154956 1.154956
|
|
||||||
3206.572754 2.002197 2572.051514 0.000000 0.274301 0.000000 0.961644 1.000000 1.000000 1.000000
|
|
||||||
3239.701904 1.372803 2740.768555 0.000000 -0.524575 0.000000 0.851364 1.000000 1.000000 1.000000
|
|
||||||
3000.626221 1.119873 2631.730957 0.000000 0.414977 0.000000 0.909832 1.000000 1.000000 1.000000
|
|
||||||
3161.896484 2.092773 2460.697998 0.000000 -0.353717 0.000000 0.935353 1.192454 1.192454 1.192454
|
|
||||||
3395.539307 2.289551 2447.179932 0.000000 0.428894 0.000000 0.903355 1.242017 1.242017 1.242017
|
|
||||||
3052.830078 1.873291 2449.184082 0.000000 -0.304620 0.000000 0.952474 1.119897 1.119897 1.119897
|
|
||||||
3248.039307 1.513916 3001.883545 0.000000 -0.816565 0.000000 -0.577253 1.118066 1.118066 1.118066
|
|
||||||
3235.523193 1.306641 3036.850098 0.000000 0.347515 0.000000 0.937675 1.000000 1.000000 1.000000
|
|
||||||
3112.311035 1.837402 3096.644043 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3623.519775 0.654297 3170.242920 0.000000 0.367862 0.000000 0.929880 1.000000 1.000000 1.000000
|
|
||||||
3501.937744 0.511719 3043.615723 0.000000 -0.419636 0.000000 0.907692 1.000000 1.000000 1.000000
|
|
||||||
3297.926758 0.920410 3017.543945 0.000000 0.161972 0.000000 0.986795 1.000000 1.000000 1.000000
|
|
||||||
3383.166260 0.490723 2862.749023 0.000000 0.694065 0.000000 0.719912 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="bridge indian"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="bridge_indian_mesh"
|
|
||||||
count=30
|
|
||||||
transform="5976.100586 1.026306 982.019958 0.000000 -0.491804 0.000000 0.870706 1.000000 1.000000 1.000000
|
|
||||||
6013.286133 0.810608 993.051086 0.000000 0.516576 0.000000 0.856242 1.000000 1.000000 1.000000
|
|
||||||
5968.901367 1.241578 1096.702393 0.000000 0.677160 0.000000 0.735836 1.000000 1.000000 1.000000
|
|
||||||
5937.916016 0.797974 1212.167114 0.000000 -0.185564 0.000000 0.982632 1.000000 1.000000 1.000000
|
|
||||||
5979.626465 0.490967 1253.046875 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5227.207031 2.004028 514.726013 0.000000 -0.149704 0.000000 0.988731 1.000000 1.000000 1.000000
|
|
||||||
5211.485352 2.309998 511.644867 0.000000 0.000488 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5193.005371 1.552795 516.274292 0.000000 0.280253 0.000000 0.959926 1.000000 1.000000 1.000000
|
|
||||||
5324.924805 1.908936 863.157410 0.000000 0.552930 0.000000 0.833228 1.000000 1.000000 1.000000
|
|
||||||
5267.701660 1.881592 923.708191 0.000000 0.429748 0.000000 0.902949 1.000000 1.000000 1.000000
|
|
||||||
4822.459961 2.454956 1050.677124 0.000000 -0.249828 0.000000 0.968291 1.000000 1.000000 1.000000
|
|
||||||
4921.932617 3.318237 1070.396362 0.000000 0.159713 0.000000 0.987163 1.000000 1.000000 1.000000
|
|
||||||
5476.001465 2.030396 1097.332520 0.000000 -0.351003 0.000000 0.936374 1.000000 1.000000 1.000000
|
|
||||||
5590.829590 1.874146 1276.601074 0.000000 -0.607535 0.000000 0.794293 1.000000 1.000000 1.000000
|
|
||||||
5610.779785 1.063598 1322.270386 0.000000 0.025083 0.000000 0.999685 1.000000 1.000000 1.000000
|
|
||||||
5582.435547 2.140380 1311.450562 0.000000 -0.707281 0.000000 0.706933 1.000000 1.000000 1.000000
|
|
||||||
5676.745605 1.004639 1296.061890 0.000000 0.086318 0.000000 0.996268 1.000000 1.000000 1.000000
|
|
||||||
5646.924805 0.929443 1351.154663 0.000000 0.513017 0.000000 0.858378 1.000000 1.000000 1.000000
|
|
||||||
5552.473633 1.044189 1348.894897 0.000000 0.596130 0.000000 0.802888 1.000000 1.000000 1.000000
|
|
||||||
5415.053223 1.129882 1372.482788 0.000000 0.241012 0.000000 0.970523 1.000000 1.000000 1.000000
|
|
||||||
5290.033203 0.768921 1334.398071 0.000000 0.016967 0.000000 0.999856 1.000000 1.000000 1.000000
|
|
||||||
5755.768066 0.769532 1463.366577 0.000000 -0.334375 0.000000 0.942440 1.000000 1.000000 1.000000
|
|
||||||
5813.230469 1.059814 1485.676514 0.000000 -0.379411 0.000000 0.925228 1.000000 1.000000 1.000000
|
|
||||||
4555.329590 1.148682 1373.671753 0.000000 -0.373871 0.000000 0.927481 1.000000 1.000000 1.000000
|
|
||||||
4545.923828 1.309082 1207.504517 0.000000 -0.560788 0.000000 0.827960 1.000000 1.000000 1.000000
|
|
||||||
4636.471191 1.937989 1450.236206 0.000000 -0.362066 0.000000 0.932152 1.000000 1.000000 1.000000
|
|
||||||
4713.086426 1.145752 1496.105957 0.000000 -0.289497 0.000000 0.957179 1.000000 1.000000 1.000000
|
|
||||||
4642.469727 2.042115 1546.074707 0.000000 0.605789 0.000000 0.795626 1.000000 1.000000 1.000000
|
|
||||||
4782.060547 1.840209 1553.819946 0.000000 -0.228790 0.000000 0.973476 1.000000 1.000000 1.000000
|
|
||||||
5249.948730 2.282410 518.317688 0.000000 -0.000549 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="bridge mediterranean"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="bridge_mediterranean_mesh"
|
|
||||||
count=13
|
|
||||||
transform="1201.781494 1.404297 2142.136475 0.000000 0.763223 0.000000 0.646136 1.000000 1.000000 1.000000
|
|
||||||
536.181946 2.289307 1726.596802 0.000000 0.587520 0.000000 0.809210 1.185828 1.185828 1.185828
|
|
||||||
567.262512 1.425171 1834.394897 0.000000 0.032968 0.000000 0.999456 1.000000 1.000000 1.000000
|
|
||||||
689.055725 4.171021 1757.883911 0.000000 -0.447069 0.000000 0.894500 1.243198 1.243198 1.243198
|
|
||||||
618.776489 1.881836 1728.374634 0.000000 -0.521922 0.000000 0.852993 1.223791 1.223791 1.223791
|
|
||||||
1611.499756 2.653320 2225.462891 0.000000 -0.373361 0.000000 0.927686 1.000000 1.000000 1.000000
|
|
||||||
1510.844727 2.004883 2235.304443 0.000000 0.308179 0.000000 0.951328 1.000000 1.000000 1.000000
|
|
||||||
2474.811035 2.075684 2182.157471 0.000000 0.089753 0.000000 0.995964 1.000000 1.000000 1.000000
|
|
||||||
2368.999756 2.166504 2145.002197 0.000000 -0.009338 0.000000 0.999957 1.000000 1.000000 1.000000
|
|
||||||
2217.542725 2.128662 2209.341553 0.000000 0.332160 0.000000 0.943223 1.000000 1.000000 1.000000
|
|
||||||
2026.607544 2.719482 2251.434814 0.000000 0.246620 0.000000 0.969112 1.000000 1.000000 1.000000
|
|
||||||
1548.521240 1.102783 2230.096680 0.000000 -0.531494 0.000000 0.847062 1.000000 1.000000 1.000000
|
|
||||||
2554.966553 1.810059 2258.207764 0.000000 0.230602 0.000000 0.973048 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="bridge mena"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="bridge_mena_mesh"
|
|
||||||
count=18
|
|
||||||
transform="2713.815430 1.848633 1323.707275 0.000000 0.263955 0.000000 0.964535 0.909766 0.909766 0.909766
|
|
||||||
2745.656738 1.781250 1270.376953 0.000000 0.579888 0.000000 0.814696 1.000000 1.000000 1.000000
|
|
||||||
2757.452881 2.080079 1327.057861 0.000000 -0.390902 0.000000 0.920432 1.000000 1.000000 1.000000
|
|
||||||
2723.351562 1.519654 1199.105347 0.000000 -0.607899 0.000000 0.794014 1.000000 1.000000 1.000000
|
|
||||||
2722.582520 0.852417 1168.082520 0.000000 0.574830 0.000000 0.818273 1.000000 1.000000 1.000000
|
|
||||||
2749.729980 2.016602 1133.278442 0.000000 0.292154 0.000000 0.956371 1.000000 1.000000 1.000000
|
|
||||||
2810.808838 1.831665 1069.873169 0.000000 0.469486 0.000000 0.882940 1.000000 1.000000 1.000000
|
|
||||||
820.831055 2.921021 537.380493 0.000000 0.922063 0.000000 0.387039 1.000000 1.000000 1.000000
|
|
||||||
926.682007 2.623168 647.567627 0.000000 0.035279 0.000000 0.999377 1.000000 1.000000 1.000000
|
|
||||||
1090.883057 2.627259 636.384094 0.000000 0.323049 0.000000 0.946382 1.000000 1.000000 1.000000
|
|
||||||
1281.182861 0.789338 455.339600 0.000000 0.006287 0.000000 0.999980 1.000000 1.000000 1.000000
|
|
||||||
1391.802246 1.992829 379.500336 0.000000 0.385643 0.000000 0.922648 1.000000 1.000000 1.000000
|
|
||||||
1490.171143 2.906876 260.415131 0.000000 -0.996579 0.000000 -0.082644 1.000000 1.000000 1.000000
|
|
||||||
1533.750000 2.092575 115.710915 0.000000 -0.764808 0.000000 0.644259 1.000000 1.000000 1.000000
|
|
||||||
1530.273438 1.455552 45.237511 0.000000 0.614613 0.000000 0.788828 1.000000 1.000000 1.000000
|
|
||||||
3463.608887 2.161988 1501.964600 0.000000 -0.848214 0.000000 0.529654 1.158841 1.158841 1.158841
|
|
||||||
3424.626953 1.647217 1524.405273 0.000000 0.442162 0.000000 0.896935 1.000000 1.000000 1.000000
|
|
||||||
3524.212402 1.390747 1431.536987 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="bridge western"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="bridge_western_mesh"
|
|
||||||
count=13
|
|
||||||
transform="902.271057 1.470703 2269.728516 0.000000 0.479821 0.000000 0.877367 1.348145 1.348145 1.348145
|
|
||||||
921.155334 2.316895 2452.137939 0.000000 0.391415 0.000000 0.920214 1.000000 1.000000 1.000000
|
|
||||||
1604.367920 2.074707 2864.107178 0.000000 0.053282 0.000000 0.998580 1.273535 1.273535 1.273535
|
|
||||||
1506.189697 1.596436 2915.341797 0.000000 0.253276 0.000000 0.967394 1.000000 1.000000 1.000000
|
|
||||||
1327.155151 1.596436 2760.664062 0.000000 0.683729 0.000000 0.729736 1.000000 1.000000 1.000000
|
|
||||||
1276.288208 1.818359 2794.170654 0.000000 -0.225097 0.000000 0.974336 1.000000 1.000000 1.000000
|
|
||||||
1064.918091 1.818359 2567.945068 0.000000 -0.053525 0.000000 0.998567 1.000000 1.000000 1.000000
|
|
||||||
1041.053223 2.516113 2573.523193 0.000000 -0.164434 0.000000 0.986388 1.044534 1.044534 1.044534
|
|
||||||
992.649841 1.080566 2616.223633 0.000000 0.349224 0.000000 0.937039 1.000000 1.000000 1.000000
|
|
||||||
838.224976 2.503662 2447.720215 0.000000 0.109203 0.000000 0.994020 1.000000 1.000000 1.000000
|
|
||||||
985.008911 1.519043 2786.154541 0.000000 0.358792 0.000000 0.933417 1.256811 1.256811 1.256811
|
|
||||||
948.640991 1.180176 2791.607910 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2599.950439 0.478271 3670.013672 0.000000 0.247966 0.000000 0.968769 1.088550 1.088550 1.088550
|
|
||||||
"}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,64 +0,0 @@
|
||||||
object={
|
|
||||||
name="cliff coastline 01"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_coastline_01_mesh"
|
|
||||||
count=12
|
|
||||||
transform="7148.858887 -5.207947 280.674744 -0.000000 -0.375690 -0.000000 -0.926746 0.205334 0.205334 0.205334
|
|
||||||
7135.991699 -8.310181 273.520325 -0.000000 -0.897830 -0.000000 -0.440343 0.205334 0.205334 0.205334
|
|
||||||
7141.346191 -8.310181 276.135468 -0.000000 -0.453956 -0.000000 -0.891024 0.205334 0.205334 0.205334
|
|
||||||
7142.213379 -3.742706 277.641632 -0.000000 0.589585 -0.000000 -0.807706 0.205334 0.205334 0.205334
|
|
||||||
7136.857422 -4.109802 275.051758 -0.000000 0.900470 -0.000000 0.434918 0.205334 0.205334 0.205334
|
|
||||||
7124.160645 -10.846344 270.471100 -0.000000 -0.660103 -0.000000 -0.751175 0.205334 0.205334 0.205334
|
|
||||||
7125.823730 -10.183868 271.006958 -0.000000 -0.098421 -0.000000 -0.995145 0.205334 0.205334 0.205334
|
|
||||||
7129.560547 -7.514496 271.086853 -0.000000 0.861429 -0.000000 -0.507878 0.205334 0.205334 0.205334
|
|
||||||
7128.437988 -7.514496 271.625427 -0.000000 0.861429 -0.000000 -0.507878 0.205334 0.205334 0.205334
|
|
||||||
7132.663086 -8.230652 271.917175 -0.000000 0.957057 -0.000000 0.289902 0.205334 0.205334 0.205334
|
|
||||||
7131.136230 -6.746429 272.651306 -0.000000 0.957057 -0.000000 0.289902 0.205334 0.205334 0.205334
|
|
||||||
7134.109375 -4.879974 273.636017 -0.000000 0.619824 -0.000000 0.784741 0.205334 0.205334 0.205334
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="cliff coastline 02"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_coastline_02_mesh"
|
|
||||||
count=4
|
|
||||||
transform="0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
7139.026855 -2.094574 275.863495 -0.000000 0.814658 -0.000000 -0.579941 0.138236 0.138236 0.138236
|
|
||||||
7140.562012 -0.798676 276.562561 -0.000000 0.999852 -0.000000 -0.017216 0.138236 0.138236 0.138236
|
|
||||||
7145.329102 -0.798676 278.393585 -0.000000 0.811430 -0.000000 0.584450 0.138236 0.138236 0.138236
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="cliff coastline 03"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_coastline_03_mesh"
|
|
||||||
count=5
|
|
||||||
transform="0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
7146.542969 -0.847015 280.398224 -0.000000 0.927711 -0.000000 0.373300 0.120853 0.120853 0.120853
|
|
||||||
7144.854980 -0.847015 279.542084 -0.000000 0.485787 -0.000000 0.874077 0.120853 0.120853 0.120853
|
|
||||||
7146.671387 -0.847015 279.668762 -0.000000 0.682175 -0.000000 0.731189 0.120853 0.120853 0.120853
|
|
||||||
7146.769043 -0.847015 278.856720 -0.000000 -0.000000 -0.000000 1.000000 0.120853 0.120853 0.120853
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="cliff coastline 04"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_coastline_04_mesh"
|
|
||||||
count=7
|
|
||||||
transform="0.000000 0.000000 0.000000 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
7151.473145 -4.598541 283.087006 -0.000000 0.947121 -0.000000 0.320877 0.288403 0.288403 0.288403
|
|
||||||
7150.455078 -5.109619 281.243591 -0.000000 0.869259 -0.000000 -0.494356 0.288403 0.288403 0.288403
|
|
||||||
7148.125000 -5.227631 280.102112 -0.000000 0.592841 -0.000000 0.805319 0.288403 0.288403 0.288403
|
|
||||||
7144.223145 -4.134888 277.799530 -0.000000 -0.245334 -0.000000 0.969439 0.288403 0.288403 0.288403
|
|
||||||
7138.897949 -4.406006 275.537689 -0.000000 0.635974 -0.000000 0.771710 0.288403 0.288403 0.288403
|
|
||||||
7151.754395 -5.699432 282.654297 -0.000000 -0.308077 -0.000000 0.951361 0.288403 0.288403 0.288403
|
|
||||||
"}
|
|
||||||
|
|
@ -1,72 +0,0 @@
|
||||||
object={
|
|
||||||
name="cliff big 01"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_big_01_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff big 02"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_big_02_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff end 01"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_end_01_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff end 02"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_end_02_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff rock 01"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_rock_01_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff rock 02"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_rock_02_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff rock 03"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_rock_03_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="cliff small 01"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="cliff_small_01_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
|
|
@ -1,942 +0,0 @@
|
||||||
object={
|
|
||||||
name="env_coast_foam_l"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="coast_foam_layer"
|
|
||||||
entity="env_coast_foam_l"
|
|
||||||
count=366
|
|
||||||
transform="926.502808 0.000000 2729.516357 0.000000 0.014931 0.000000 -0.999889 1.000000 1.000000 1.000000
|
|
||||||
947.339722 0.000000 2726.212891 0.000000 -0.168239 -0.000000 -0.985746 1.000000 1.000000 1.000000
|
|
||||||
1050.354858 0.000000 2833.330322 0.000000 0.449584 0.000000 -0.893238 1.000000 1.000000 1.000000
|
|
||||||
728.954773 0.000000 2873.778564 0.000000 0.853247 0.000000 0.521509 1.000000 1.000000 1.000000
|
|
||||||
800.816711 0.000000 3308.993896 0.000000 0.309730 0.000000 -0.950824 1.000000 1.000000 1.000000
|
|
||||||
818.421936 0.000000 3319.487793 0.000000 -0.298576 0.000000 0.954386 1.000000 1.000000 1.000000
|
|
||||||
783.402161 0.000000 3354.384033 0.000000 0.997180 0.000000 0.075051 1.000000 1.000000 1.000000
|
|
||||||
849.115234 0.000000 3287.124268 0.000000 -0.999828 -0.000000 -0.018565 1.000000 1.000000 1.000000
|
|
||||||
874.758728 0.000000 3286.371338 0.000000 0.999217 0.000000 0.039559 1.000000 1.000000 1.000000
|
|
||||||
873.804321 0.000000 3211.631104 0.000000 0.426175 0.000000 -0.904640 1.000000 1.000000 1.000000
|
|
||||||
855.967041 0.000000 3192.380859 0.000000 0.359411 0.000000 -0.933179 1.000000 1.000000 1.000000
|
|
||||||
682.310303 0.000000 1601.618652 0.000000 -0.937930 0.000000 0.346824 1.000000 1.000000 1.000000
|
|
||||||
560.707947 0.000000 3107.166992 0.000000 0.992063 0.000000 0.125745 1.000000 1.000000 1.000000
|
|
||||||
534.407471 0.000000 3098.567383 0.000000 -0.943710 0.000000 -0.330775 1.000000 1.000000 1.000000
|
|
||||||
672.799988 0.000000 2703.767090 0.000000 -0.342280 0.000000 0.939598 1.000000 1.000000 1.000000
|
|
||||||
689.993835 0.000000 2852.137695 0.000000 0.959608 0.000000 0.281340 1.000000 1.000000 1.000000
|
|
||||||
779.293762 0.000000 3026.198730 0.000000 0.519382 0.000000 0.854542 1.000000 1.000000 1.000000
|
|
||||||
669.852051 0.000000 3116.088867 0.000000 0.841219 0.000000 0.540694 1.000000 1.000000 1.000000
|
|
||||||
598.612061 0.000000 3255.095703 0.000000 0.736917 0.000000 0.675983 1.000000 1.000000 1.000000
|
|
||||||
1025.286621 0.000000 2686.204590 0.000000 0.755743 0.000000 0.654868 1.000000 1.000000 1.000000
|
|
||||||
1029.351440 0.000000 2713.795898 0.000000 0.788113 0.000000 0.615530 1.000000 1.000000 1.000000
|
|
||||||
1009.478455 0.000000 2662.967773 0.000000 0.962837 0.000000 0.270083 1.000000 1.000000 1.000000
|
|
||||||
962.038269 0.000000 2649.765625 0.000000 0.977519 0.000000 0.210849 1.000000 1.000000 1.000000
|
|
||||||
987.826477 0.000000 2656.629883 0.000000 0.998488 0.000000 0.054968 1.000000 1.000000 1.000000
|
|
||||||
753.250366 0.000000 2586.844971 0.000000 0.998753 0.000000 0.049924 1.000000 1.000000 1.000000
|
|
||||||
725.920227 0.000000 2493.571533 0.000000 0.196273 0.000000 0.980549 1.000000 1.000000 1.000000
|
|
||||||
794.706299 0.000000 2152.147949 0.000000 0.964783 0.000000 -0.263047 1.000000 1.000000 1.000000
|
|
||||||
645.773682 0.000000 2165.505127 0.000000 0.995074 0.000000 -0.099130 1.000000 1.000000 1.000000
|
|
||||||
448.748962 0.000000 2050.882324 0.000000 0.651590 0.000000 0.758571 1.000000 1.000000 1.000000
|
|
||||||
459.011902 0.000000 1947.697632 0.000000 0.756263 0.000000 0.654268 1.000000 1.000000 1.000000
|
|
||||||
460.771606 0.000000 1752.329346 0.000000 0.694946 0.000000 0.719062 1.000000 1.000000 1.000000
|
|
||||||
571.688049 0.000000 1710.230713 0.000000 0.195839 0.000000 0.980636 1.000000 1.000000 1.000000
|
|
||||||
605.120544 0.000000 1662.734863 0.000000 0.497698 0.000000 0.867351 1.000000 1.000000 1.000000
|
|
||||||
374.032196 0.000000 1215.738281 0.000000 0.926594 0.000000 0.376063 1.000000 1.000000 1.000000
|
|
||||||
618.347473 0.000000 1595.282104 0.000000 0.790325 0.000000 0.612688 1.000000 1.000000 1.000000
|
|
||||||
1216.357300 0.000000 2856.561035 0.000000 0.805123 0.000000 0.593108 1.000000 1.000000 1.000000
|
|
||||||
1264.615601 0.000000 2918.047852 0.000000 0.990350 0.000000 0.138586 1.000000 1.000000 1.000000
|
|
||||||
1441.544800 0.000000 3108.879395 0.000000 0.734100 0.000000 0.679041 1.000000 1.000000 1.000000
|
|
||||||
1781.788574 0.000000 3091.301270 0.000000 0.111584 0.000000 0.993755 1.000000 1.000000 1.000000
|
|
||||||
1839.044312 0.000000 3112.068604 0.000000 -0.552523 0.000000 0.833498 1.000000 1.000000 1.000000
|
|
||||||
1847.576172 0.000000 3138.687500 0.000000 -0.571003 0.000000 0.820948 1.000000 1.000000 1.000000
|
|
||||||
1857.182739 0.000000 3165.473145 0.000000 -0.622622 0.000000 0.782523 1.000000 1.000000 1.000000
|
|
||||||
1840.958374 0.000000 3200.047607 0.000000 -0.706590 0.000000 0.707623 1.000000 1.000000 1.000000
|
|
||||||
1843.133179 0.000000 3224.339844 0.000000 -0.696040 0.000000 0.718003 1.000000 1.000000 1.000000
|
|
||||||
1846.586914 0.000000 3253.900146 0.000000 -0.693999 0.000000 0.719976 1.000000 1.000000 1.000000
|
|
||||||
1859.253906 0.000000 3272.557129 0.000000 -0.294400 0.000000 0.955682 1.000000 1.000000 1.000000
|
|
||||||
1853.488892 0.000000 3423.587402 0.000000 -0.802545 0.000000 0.596592 1.000000 1.000000 1.000000
|
|
||||||
1849.704956 0.000000 3452.291748 0.000000 -0.741905 0.000000 0.670505 1.000000 1.000000 1.000000
|
|
||||||
1856.279175 0.000000 3499.664551 0.000000 -0.616658 0.000000 0.787232 1.000000 1.000000 1.000000
|
|
||||||
1989.353516 0.000000 3634.318604 0.000000 -0.343620 0.000000 0.939109 1.000000 1.000000 1.000000
|
|
||||||
1988.756958 0.000000 3663.963867 0.000000 -0.879698 0.000000 0.475534 1.000000 1.000000 1.000000
|
|
||||||
2115.842529 0.000000 3705.789551 0.000000 0.280224 0.000000 0.959935 1.000000 1.000000 1.000000
|
|
||||||
1988.541870 0.000000 3530.500000 0.000000 0.687578 0.000000 0.726111 0.983643 0.983643 0.983643
|
|
||||||
1995.011475 0.000000 3508.521240 0.000000 0.487333 0.000000 0.873216 1.000000 1.000000 1.000000
|
|
||||||
2001.654907 0.000000 3490.481445 0.000000 0.589198 0.000000 0.807989 1.000000 1.000000 1.000000
|
|
||||||
2006.462891 0.000000 3467.795166 0.000000 0.609957 0.000000 0.792435 1.000000 1.000000 1.000000
|
|
||||||
1741.543823 0.000000 2943.671631 0.000000 0.980517 0.000000 0.196433 1.000000 1.000000 1.000000
|
|
||||||
1888.089233 0.000000 2997.183838 0.000000 0.996885 0.000000 0.078863 1.000000 1.000000 1.000000
|
|
||||||
1940.065186 0.000000 2991.946533 0.000000 -0.970656 0.000000 0.240474 1.000000 1.000000 1.000000
|
|
||||||
2081.047852 0.000000 3195.060791 0.000000 0.986095 0.000000 0.166183 1.000000 1.000000 1.000000
|
|
||||||
2247.938721 0.000000 3362.632812 0.000000 -0.085923 0.000000 0.996302 1.000000 1.000000 1.000000
|
|
||||||
2217.083496 0.000000 3360.207520 0.000000 -0.117495 0.000000 0.993073 1.000000 1.000000 1.000000
|
|
||||||
2188.164795 0.000000 3352.000488 0.000000 -0.214089 0.000000 0.976814 1.000000 1.000000 1.000000
|
|
||||||
2158.982910 0.000000 3347.141357 0.000000 -0.178512 0.000000 0.983938 1.000000 1.000000 1.000000
|
|
||||||
2137.085205 0.000000 3339.964111 0.000000 -0.113676 0.000000 0.993518 1.000000 1.000000 1.000000
|
|
||||||
1455.996338 0.000000 3249.082520 0.000000 -0.083749 0.000000 0.996487 1.000000 1.000000 1.000000
|
|
||||||
1488.961792 0.000000 3266.937744 0.000000 -0.339519 0.000000 0.940599 1.000000 1.000000 1.000000
|
|
||||||
1504.444092 0.000000 3279.049072 0.000000 -0.339519 0.000000 0.940599 1.000000 1.000000 1.000000
|
|
||||||
1521.078979 0.000000 3293.061035 0.000000 -0.339519 0.000000 0.940599 1.000000 1.000000 1.000000
|
|
||||||
2379.390625 0.000000 3969.601562 0.000000 0.971470 0.000000 -0.237164 1.000000 1.000000 1.000000
|
|
||||||
2407.550781 0.000000 3955.712646 0.000000 0.976551 0.000000 -0.215286 1.000000 1.000000 1.000000
|
|
||||||
2457.062256 0.000000 3927.631348 0.000000 0.962434 0.000000 -0.271516 1.000000 1.000000 1.000000
|
|
||||||
2496.021484 0.000000 3911.830811 0.000000 0.972984 0.000000 -0.230874 1.000000 1.000000 1.000000
|
|
||||||
2543.003662 0.000000 3857.454102 0.000000 -0.786556 0.000000 0.617519 1.000000 1.000000 1.000000
|
|
||||||
2538.271240 0.000000 3826.964844 0.000000 0.551600 0.000000 -0.834109 1.000000 1.000000 1.000000
|
|
||||||
2509.348633 0.000000 3785.509277 0.000000 -0.259861 0.000000 0.965646 1.000000 1.000000 1.000000
|
|
||||||
2473.853516 0.000000 3773.622803 0.000000 -0.003296 0.000000 0.999995 1.000000 1.000000 1.000000
|
|
||||||
2430.196533 0.000000 3779.202393 0.000000 -0.019530 0.000000 0.999809 1.000000 1.000000 1.000000
|
|
||||||
2388.874023 0.000000 3786.636230 0.000000 0.252191 0.000000 0.967677 1.000000 1.000000 1.000000
|
|
||||||
2372.791748 0.000000 3765.790527 0.000000 0.961567 0.000000 -0.274569 1.000000 1.000000 1.000000
|
|
||||||
2393.282715 0.000000 3728.690918 0.000000 -0.636257 0.000000 0.771478 1.000000 1.000000 1.000000
|
|
||||||
2402.927246 0.000000 3689.746582 0.000000 -0.846057 0.000000 0.533092 1.000000 1.000000 1.000000
|
|
||||||
2470.354248 0.000000 3629.025391 0.000000 -0.997404 0.000000 0.072016 1.000000 1.000000 1.000000
|
|
||||||
2465.469727 0.000000 3663.135498 0.000000 0.417308 0.000000 0.908765 1.000000 1.000000 1.000000
|
|
||||||
2471.343262 0.000000 3709.804932 0.000000 0.980341 0.000000 -0.197310 1.000000 1.000000 1.000000
|
|
||||||
2544.650879 0.000000 3718.447510 0.000000 0.382515 0.000000 0.923949 1.000000 1.000000 1.000000
|
|
||||||
2526.545898 0.000000 3754.590820 0.000000 0.759741 0.000000 0.650226 1.000000 1.000000 1.000000
|
|
||||||
229.664749 0.000000 3827.883057 0.000000 0.090659 0.000000 0.995882 1.000000 1.000000 1.000000
|
|
||||||
255.106247 0.000000 3808.201660 0.000000 0.492008 0.000000 0.870591 1.000000 1.000000 1.000000
|
|
||||||
273.623596 0.000000 3789.852051 0.000000 0.286870 0.000000 0.957969 1.000000 1.000000 1.000000
|
|
||||||
305.212433 0.000000 3776.104248 0.000000 0.055814 0.000000 0.998441 1.000000 1.000000 1.000000
|
|
||||||
341.306335 0.000000 3784.115723 0.000000 -0.255243 0.000000 0.966877 1.000000 1.000000 1.000000
|
|
||||||
395.256439 0.000000 3799.062988 0.000000 -0.316362 0.000000 0.948639 1.000000 1.000000 1.000000
|
|
||||||
216.270355 0.000000 1067.690430 0.000000 0.819058 0.000000 0.573711 1.000000 1.000000 1.000000
|
|
||||||
256.750946 0.000000 1119.856323 0.000000 0.959576 0.000000 0.281450 1.000000 1.000000 1.000000
|
|
||||||
277.937225 0.000000 1155.586792 0.000000 -0.835402 0.000000 -0.549640 1.000000 1.000000 1.000000
|
|
||||||
320.326019 0.000000 1194.844849 0.000000 0.998854 0.000000 0.047863 1.000000 1.000000 1.000000
|
|
||||||
109.993187 0.000000 868.588806 0.000000 0.773062 0.000000 0.634330 1.000000 1.000000 1.000000
|
|
||||||
3628.786865 0.000000 182.401566 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3613.851807 0.000000 163.905991 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3599.320801 0.000000 147.919724 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3586.049805 0.000000 132.486572 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3571.906982 0.000000 115.157196 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3553.591797 0.000000 93.487686 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3536.115234 0.000000 72.078560 0.000000 -0.412226 0.000000 0.911081 1.000000 1.000000 1.000000
|
|
||||||
3696.333984 0.000000 455.652771 0.000000 0.991323 0.000000 0.131450 1.000000 1.000000 1.000000
|
|
||||||
3624.454590 0.000000 441.252625 0.000000 -0.980202 0.000000 -0.197998 1.000000 1.000000 1.000000
|
|
||||||
3603.148193 0.000000 436.505676 0.000000 -0.998467 0.000000 -0.055348 1.000000 1.000000 1.000000
|
|
||||||
3528.669189 0.000000 416.695068 0.000000 -0.996867 0.000000 0.079093 1.000000 1.000000 1.000000
|
|
||||||
3483.301514 0.000000 411.751404 0.000000 0.975336 0.000000 0.220727 1.000000 1.000000 1.000000
|
|
||||||
3171.598389 0.000000 683.647644 0.000000 -0.780870 0.000000 0.624694 1.000000 1.000000 1.000000
|
|
||||||
3162.275391 0.000000 713.473572 0.000000 -0.812499 0.000000 0.582963 1.000000 1.000000 1.000000
|
|
||||||
3148.488281 0.000000 741.332092 0.000000 -0.869203 0.000000 0.494455 1.000000 1.000000 1.000000
|
|
||||||
3053.298096 0.000000 906.444214 0.000000 -0.926337 0.000000 0.376695 1.000000 1.000000 1.000000
|
|
||||||
2926.595703 0.000000 1082.145996 0.000000 -0.850902 0.000000 0.525324 1.000000 1.000000 1.000000
|
|
||||||
2912.738281 0.000000 1100.199585 0.000000 -0.911912 0.000000 0.410386 1.000000 1.000000 1.000000
|
|
||||||
2898.472900 0.000000 1120.542847 0.000000 -0.865528 0.000000 0.500861 1.000000 1.000000 1.000000
|
|
||||||
2891.667236 0.000000 1141.101562 0.000000 -0.752351 0.000000 0.658763 1.000000 1.000000 1.000000
|
|
||||||
2646.089600 0.000000 1305.743530 0.000000 0.968398 0.000000 0.249410 1.000000 1.000000 1.000000
|
|
||||||
2584.868164 0.000000 1308.444214 0.000000 0.999835 0.000000 0.018183 1.000000 1.000000 1.000000
|
|
||||||
2557.250732 0.000000 1309.519531 0.000000 -0.999502 0.000000 0.031545 1.000000 1.000000 1.000000
|
|
||||||
2526.334961 0.000000 1318.286987 0.000000 0.998298 0.000000 -0.058321 1.000000 1.000000 1.000000
|
|
||||||
2500.989746 0.000000 1320.882324 0.000000 0.999050 0.000000 -0.043570 1.000000 1.000000 1.000000
|
|
||||||
2453.322021 0.000000 1322.277832 0.000000 0.997441 0.000000 0.071498 1.000000 1.000000 1.000000
|
|
||||||
2396.359863 0.000000 1334.952148 0.000000 -0.999038 0.000000 -0.043844 1.000000 1.000000 1.000000
|
|
||||||
2372.797607 0.000000 1335.263550 0.000000 0.999458 0.000000 -0.032927 1.000000 1.000000 1.000000
|
|
||||||
2337.175781 0.000000 1341.031616 0.000000 -1.000000 0.000000 -0.000859 1.000000 1.000000 1.000000
|
|
||||||
2294.884033 0.000000 1368.193481 0.000000 -0.994243 0.000000 0.107150 1.000000 1.000000 1.000000
|
|
||||||
2267.463135 0.000000 1375.134521 0.000000 -0.997348 0.000000 0.072777 1.000000 1.000000 1.000000
|
|
||||||
2134.816406 0.000000 1264.029541 0.000000 0.885664 0.000000 0.464328 1.000000 1.000000 1.000000
|
|
||||||
2121.763184 0.000000 1248.993042 0.000000 -0.946253 0.000000 -0.323428 1.000000 1.000000 1.000000
|
|
||||||
1931.767212 0.000000 1273.153198 0.000000 -0.999368 0.000000 0.035541 1.000000 1.000000 1.000000
|
|
||||||
1912.378174 0.000000 1277.090210 0.000000 -0.990546 0.000000 0.137181 1.000000 1.000000 1.000000
|
|
||||||
1950.994873 0.000000 1272.693970 0.000000 -0.999630 0.000000 0.027214 1.000000 1.000000 1.000000
|
|
||||||
1976.615845 0.000000 1270.296021 0.000000 -0.995510 0.000000 0.094656 1.000000 1.000000 1.000000
|
|
||||||
1624.236328 0.000000 1494.613403 0.000000 -0.548447 0.000000 0.836186 1.000000 1.000000 1.000000
|
|
||||||
1622.932007 0.000000 1522.090820 0.000000 -0.749580 0.000000 0.661914 1.000000 1.000000 1.000000
|
|
||||||
1568.208008 0.000000 1624.983521 0.000000 -0.874516 0.000000 0.484996 1.000000 1.000000 1.000000
|
|
||||||
1521.752808 0.000000 1652.160156 0.000000 0.993977 0.000000 0.109592 1.000000 1.000000 1.000000
|
|
||||||
1490.120972 0.000000 1639.379761 0.000000 0.954276 0.000000 0.298928 1.000000 1.000000 1.000000
|
|
||||||
1237.889771 0.000000 1648.000366 0.000000 0.998326 0.000000 -0.057833 1.000000 1.000000 1.000000
|
|
||||||
1213.010986 0.000000 1650.979614 0.000000 -0.997921 0.000000 0.064450 1.000000 1.000000 1.000000
|
|
||||||
1099.073242 0.000000 1638.837280 0.000000 0.997837 0.000000 0.065744 1.000000 1.000000 1.000000
|
|
||||||
1078.579102 0.000000 1638.664551 0.000000 0.999957 0.000000 -0.009282 1.000000 1.000000 1.000000
|
|
||||||
698.896179 0.000000 1588.904663 0.000000 0.968794 0.000000 -0.247867 1.000000 1.000000 1.000000
|
|
||||||
523.747192 0.000000 1492.718018 0.000000 0.985909 0.000000 0.167281 1.000000 1.000000 1.000000
|
|
||||||
1583.416992 0.000000 1420.989868 0.000000 -0.914461 0.000000 0.404673 1.000000 1.000000 1.000000
|
|
||||||
1693.964966 0.000000 1363.117065 0.000000 0.945127 0.000000 -0.326704 1.000000 1.000000 1.000000
|
|
||||||
138.877609 0.000000 633.316162 0.000000 0.693679 0.000000 0.720284 1.000000 1.000000 1.000000
|
|
||||||
146.848907 0.000000 666.220581 0.000000 0.863993 0.000000 0.503505 1.000000 1.000000 1.000000
|
|
||||||
140.299179 0.000000 453.497131 0.000000 0.349338 0.000000 0.936997 1.000000 1.000000 1.000000
|
|
||||||
376.698730 0.000000 200.414810 0.000000 0.137211 0.000000 0.990542 1.000000 1.000000 1.000000
|
|
||||||
397.097778 0.000000 193.281616 0.000000 0.187164 0.000000 0.982329 1.000000 1.000000 1.000000
|
|
||||||
418.581970 0.000000 183.210144 0.000000 0.249617 0.000000 0.968345 1.000000 1.000000 1.000000
|
|
||||||
1482.416870 0.000000 40.834999 0.000000 0.435636 0.000000 0.900123 1.000000 1.000000 1.000000
|
|
||||||
1466.533936 0.000000 65.907768 0.000000 0.399802 0.000000 0.916602 1.000000 1.000000 1.000000
|
|
||||||
1441.156494 0.000000 101.991821 0.000000 0.461857 0.000000 0.886955 1.000000 1.000000 1.000000
|
|
||||||
1423.942871 0.000000 127.852051 0.000000 0.325704 0.000000 0.945472 1.000000 1.000000 1.000000
|
|
||||||
1300.997803 0.000000 141.518326 0.000000 -0.012619 0.000000 0.999920 1.000000 1.000000 1.000000
|
|
||||||
1323.330078 0.000000 143.098709 0.000000 0.001755 0.000000 0.999998 1.000000 1.000000 1.000000
|
|
||||||
1347.202881 0.000000 142.993301 0.000000 0.051262 0.000000 0.998685 1.000000 1.000000 1.000000
|
|
||||||
1118.656006 0.000000 97.552269 0.000000 -0.248749 0.000000 0.968568 1.000000 1.000000 1.000000
|
|
||||||
1094.248291 0.000000 86.796631 0.000000 -0.118980 0.000000 0.992897 1.000000 1.000000 1.000000
|
|
||||||
1034.340942 0.000000 68.731689 0.000000 -0.182699 0.000000 0.983169 1.000000 1.000000 1.000000
|
|
||||||
988.533630 0.000000 76.508362 0.000000 0.077947 0.000000 0.996958 1.000000 1.000000 1.000000
|
|
||||||
958.723511 0.000000 82.027527 0.000000 0.032747 0.000000 0.999464 1.000000 1.000000 1.000000
|
|
||||||
884.003479 0.000000 88.386490 0.000000 -0.062513 0.000000 0.998044 1.000000 1.000000 1.000000
|
|
||||||
854.937866 0.000000 86.576515 0.000000 -0.071586 0.000000 0.997434 1.000000 1.000000 1.000000
|
|
||||||
820.530090 0.000000 84.998817 0.000000 -0.060114 0.000000 0.998192 1.000000 1.000000 1.000000
|
|
||||||
789.459656 0.000000 80.592934 0.000000 -0.097220 0.000000 0.995263 1.000000 1.000000 1.000000
|
|
||||||
550.268799 0.000000 100.025345 0.000000 0.334066 0.000000 0.942550 1.000000 1.000000 1.000000
|
|
||||||
588.223389 0.000000 77.482521 0.000000 0.228783 0.000000 0.973477 1.000000 1.000000 1.000000
|
|
||||||
628.177612 0.000000 59.427475 0.000000 0.157529 0.000000 0.987514 1.000000 1.000000 1.000000
|
|
||||||
691.502441 0.000000 52.276089 0.000000 -0.205959 0.000000 0.978561 1.000000 1.000000 1.000000
|
|
||||||
710.910278 0.000000 60.394974 0.000000 -0.222488 0.000000 0.974936 1.000000 1.000000 1.000000
|
|
||||||
3757.528564 0.000000 395.747986 0.000000 -0.718240 0.000000 0.695795 1.000000 1.000000 1.000000
|
|
||||||
740.756714 0.000000 1676.516846 0.000000 0.017585 0.000000 0.999845 1.000000 1.000000 1.000000
|
|
||||||
757.582520 0.000000 1673.511597 0.000000 0.118564 0.000000 0.992946 1.000000 1.000000 1.000000
|
|
||||||
787.217285 0.000000 1672.171753 0.000000 0.061957 0.000000 0.998079 1.000000 1.000000 1.000000
|
|
||||||
862.704224 0.000000 1691.860840 0.000000 -0.578402 0.000000 0.815752 1.000000 1.000000 1.000000
|
|
||||||
880.397583 0.000000 1710.653442 0.000000 -0.300650 0.000000 0.953735 1.000000 1.000000 1.000000
|
|
||||||
940.899780 0.000000 1771.755127 0.000000 -0.473120 0.000000 0.880998 1.000000 1.000000 1.000000
|
|
||||||
961.333069 0.000000 1890.030273 0.000000 -0.430471 0.000000 0.902604 1.000000 1.000000 1.000000
|
|
||||||
973.572327 0.000000 1905.708130 0.000000 -0.474698 0.000000 0.880149 1.000000 1.000000 1.000000
|
|
||||||
1005.436218 0.000000 1957.798340 0.000000 -0.352353 0.000000 0.935867 1.000000 1.000000 1.000000
|
|
||||||
1097.777222 0.000000 1992.476685 0.000000 -0.212375 0.000000 0.977188 1.000000 1.000000 1.000000
|
|
||||||
1115.451050 0.000000 2002.179688 0.000000 -0.260554 0.000000 0.965459 1.000000 1.000000 1.000000
|
|
||||||
1422.646851 0.000000 2170.753662 0.000000 -0.357353 0.000000 0.933969 1.000000 1.000000 1.000000
|
|
||||||
1480.021606 0.000000 2168.445312 0.000000 0.286004 0.000000 0.958228 1.000000 1.000000 1.000000
|
|
||||||
1497.611816 0.000000 2158.055664 0.000000 0.212583 0.000000 0.977143 1.000000 1.000000 1.000000
|
|
||||||
1581.861816 0.000000 2040.647705 0.000000 0.363261 0.000000 0.931688 1.000000 1.000000 1.000000
|
|
||||||
1491.114380 0.000000 2057.350586 0.000000 -0.717390 0.000000 0.696672 1.000000 1.000000 1.000000
|
|
||||||
1498.313843 0.000000 2025.362549 0.000000 -0.728073 0.000000 0.685500 1.000000 1.000000 1.000000
|
|
||||||
1496.156128 0.000000 1994.221802 0.000000 -0.641316 0.000000 0.767277 1.000000 1.000000 1.000000
|
|
||||||
1519.755981 0.000000 1891.976440 0.000000 -0.838657 0.000000 0.544661 1.000000 1.000000 1.000000
|
|
||||||
1772.494019 0.000000 2026.028076 0.000000 -0.931145 0.000000 0.364649 1.000000 1.000000 1.000000
|
|
||||||
1755.951294 0.000000 2046.803833 0.000000 -0.874146 0.000000 0.485663 1.000000 1.000000 1.000000
|
|
||||||
1740.788208 0.000000 2080.872803 0.000000 -0.821977 0.000000 0.569520 1.000000 1.000000 1.000000
|
|
||||||
1730.307373 0.000000 2103.208252 0.000000 -0.835828 0.000000 0.548991 1.000000 1.000000 1.000000
|
|
||||||
1797.729004 0.000000 2149.889160 0.000000 -0.397375 0.000000 -0.917656 1.000000 1.000000 1.000000
|
|
||||||
1949.824219 0.000000 2052.188965 0.000000 0.106851 0.000000 0.994275 1.000000 1.000000 1.000000
|
|
||||||
2074.452393 0.000000 1865.717529 0.000000 0.332448 0.000000 0.943122 1.000000 1.000000 1.000000
|
|
||||||
2345.793457 0.000000 1526.907959 0.000000 0.050942 0.000000 0.998702 1.000000 1.000000 1.000000
|
|
||||||
2368.158447 0.000000 1526.020630 0.000000 -0.022123 0.000000 0.999755 1.000000 1.000000 1.000000
|
|
||||||
2413.917969 0.000000 1513.017822 0.000000 -0.069372 0.000000 0.997591 1.000000 1.000000 1.000000
|
|
||||||
2439.143799 0.000000 1517.896729 0.000000 -0.042895 0.000000 0.999080 1.000000 1.000000 1.000000
|
|
||||||
2934.894531 0.000000 1426.071655 0.000000 0.762887 0.000000 0.646531 1.000000 1.000000 1.000000
|
|
||||||
2959.095459 0.000000 1500.756104 0.000000 0.779056 0.000000 0.626955 1.000000 1.000000 1.000000
|
|
||||||
2848.768311 0.000000 1633.374878 0.000000 -0.148195 0.000000 0.988958 1.000000 1.000000 1.000000
|
|
||||||
2805.746582 0.000000 1625.931885 0.000000 0.195839 0.000000 0.980636 1.000000 1.000000 1.000000
|
|
||||||
2785.125488 0.000000 1641.739990 0.000000 0.421630 0.000000 0.906768 1.000000 1.000000 1.000000
|
|
||||||
2766.558838 0.000000 1654.421509 0.000000 0.153655 0.000000 0.988125 1.000000 1.000000 1.000000
|
|
||||||
2728.483398 0.000000 1664.654175 0.000000 0.027706 0.000000 0.999616 1.000000 1.000000 1.000000
|
|
||||||
2704.986572 0.000000 1652.569092 0.000000 -0.655707 0.000000 0.755016 1.000000 1.000000 1.000000
|
|
||||||
2293.421387 0.000000 1657.234009 0.000000 -0.831912 0.000000 0.554908 1.000000 1.000000 1.000000
|
|
||||||
2619.787354 0.000000 1977.084595 0.000000 -0.997274 0.000000 0.073781 1.000000 1.000000 1.000000
|
|
||||||
2676.878174 0.000000 1977.057739 0.000000 -0.996265 0.000000 0.086344 1.000000 1.000000 1.000000
|
|
||||||
2728.532227 0.000000 1998.575439 0.000000 -0.947743 0.000000 -0.319035 1.000000 1.000000 1.000000
|
|
||||||
2749.907471 0.000000 2014.472412 0.000000 -0.949548 0.000000 -0.313622 1.000000 1.000000 1.000000
|
|
||||||
2769.881592 0.000000 2029.474609 0.000000 -0.966300 0.000000 -0.257419 1.000000 1.000000 1.000000
|
|
||||||
2793.712158 0.000000 2039.795654 0.000000 -0.973300 0.000000 -0.229537 1.000000 1.000000 1.000000
|
|
||||||
2825.440186 0.000000 2048.949951 0.000000 -0.999953 0.000000 -0.009648 1.000000 1.000000 1.000000
|
|
||||||
2852.913086 0.000000 2049.869629 0.000000 -0.999898 0.000000 0.014247 1.000000 1.000000 1.000000
|
|
||||||
2874.823975 0.000000 2050.932861 0.000000 -0.999995 0.000000 0.003200 1.000000 1.000000 1.000000
|
|
||||||
3209.129395 0.000000 2083.111572 0.000000 0.498221 0.000000 0.867050 1.000000 1.000000 1.000000
|
|
||||||
3199.333496 0.000000 2104.913086 0.000000 -0.562260 0.000000 -0.826961 1.000000 1.000000 1.000000
|
|
||||||
3170.734375 0.000000 2138.582275 0.000000 0.383643 0.000000 0.923482 1.000000 1.000000 1.000000
|
|
||||||
3152.976074 0.000000 2146.424072 0.000000 -0.104706 0.000000 -0.994503 1.000000 1.000000 1.000000
|
|
||||||
3131.372314 0.000000 2157.747559 0.000000 -0.296566 0.000000 -0.955012 1.000000 1.000000 1.000000
|
|
||||||
3109.479980 0.000000 2173.320068 0.000000 -0.339355 0.000000 -0.940658 1.000000 1.000000 1.000000
|
|
||||||
3078.271484 0.000000 2201.667480 0.000000 -0.349097 0.000000 -0.937087 1.000000 1.000000 1.000000
|
|
||||||
3054.578369 0.000000 2220.120605 0.000000 -0.247915 0.000000 -0.968782 1.000000 1.000000 1.000000
|
|
||||||
3029.763916 0.000000 2229.866211 0.000000 -0.109409 0.000000 -0.993997 1.000000 1.000000 1.000000
|
|
||||||
3006.703613 0.000000 2241.921143 0.000000 0.272657 0.000000 0.962111 1.000000 1.000000 1.000000
|
|
||||||
2984.483887 0.000000 2250.077148 0.000000 0.119223 0.000000 0.992868 1.000000 1.000000 1.000000
|
|
||||||
2950.565918 0.000000 2275.416016 0.000000 0.170850 0.000000 0.985297 1.000000 1.000000 1.000000
|
|
||||||
2910.118896 0.000000 2270.910400 0.000000 -0.102693 0.000000 0.994713 1.000000 1.000000 1.000000
|
|
||||||
2886.750488 0.000000 2273.285645 0.000000 0.226443 0.000000 0.974024 1.000000 1.000000 1.000000
|
|
||||||
2872.485596 0.000000 2265.777100 0.000000 -0.461112 0.000000 0.887342 1.000000 1.000000 1.000000
|
|
||||||
2848.086426 0.000000 2248.583252 0.000000 -0.096954 0.000000 0.995289 1.000000 1.000000 1.000000
|
|
||||||
2829.106201 0.000000 2230.094238 0.000000 -0.408163 0.000000 0.912909 1.000000 1.000000 1.000000
|
|
||||||
2792.798828 0.000000 2222.002197 0.000000 0.244949 0.000000 0.969536 1.000000 1.000000 1.000000
|
|
||||||
2781.595215 0.000000 2245.208252 0.000000 0.652359 0.000000 0.757910 1.000000 1.000000 1.000000
|
|
||||||
2776.973633 0.000000 2264.224854 0.000000 0.499596 0.000000 0.866259 1.000000 1.000000 1.000000
|
|
||||||
2750.849609 0.000000 2279.018799 0.000000 0.323828 0.000000 0.946116 1.000000 1.000000 1.000000
|
|
||||||
2724.462158 0.000000 2299.879883 0.000000 0.925669 0.000000 0.378334 1.000000 1.000000 1.000000
|
|
||||||
2744.705566 0.000000 2318.099854 0.000000 -0.955465 0.000000 -0.295105 1.000000 1.000000 1.000000
|
|
||||||
2749.957031 0.000000 2337.360352 0.000000 -0.138358 0.000000 -0.990382 1.000000 1.000000 1.000000
|
|
||||||
2712.820312 0.000000 2335.488037 0.000000 0.056245 0.000000 0.998417 1.000000 1.000000 1.000000
|
|
||||||
2689.219238 0.000000 2344.584473 0.000000 0.356513 0.000000 0.934291 1.000000 1.000000 1.000000
|
|
||||||
2648.808838 0.000000 2372.638184 0.000000 -0.036277 0.000000 0.999342 1.000000 1.000000 1.000000
|
|
||||||
2633.694336 0.000000 2368.291504 0.000000 -0.219333 0.000000 0.975650 1.000000 1.000000 1.000000
|
|
||||||
2622.785645 0.000000 2356.120605 0.000000 -0.585938 0.000000 0.810356 1.000000 1.000000 1.000000
|
|
||||||
2530.619385 0.000000 2118.194336 0.000000 -0.609086 0.000000 0.793104 1.000000 1.000000 1.000000
|
|
||||||
2529.605713 0.000000 2093.011230 0.000000 -0.692019 0.000000 0.721879 1.000000 1.000000 1.000000
|
|
||||||
2519.512451 0.000000 2058.773438 0.000000 -0.875041 0.000000 0.484048 1.000000 1.000000 1.000000
|
|
||||||
2532.821045 0.000000 2039.544922 0.000000 -0.897839 0.000000 0.440323 1.000000 1.000000 1.000000
|
|
||||||
2952.990234 0.000000 1192.565308 0.000000 0.186223 0.000000 0.982507 1.000000 1.000000 1.000000
|
|
||||||
2966.946777 0.000000 1180.548950 0.000000 0.483758 0.000000 0.875202 1.000000 1.000000 1.000000
|
|
||||||
3030.552979 0.000000 1088.577881 0.000000 0.222755 0.000000 0.974874 1.000000 1.000000 1.000000
|
|
||||||
3083.431152 0.000000 1032.721680 0.000000 0.160195 0.000000 0.987085 1.000000 1.000000 1.000000
|
|
||||||
3140.150146 0.000000 975.901367 0.000000 0.531158 0.000000 0.847273 1.000000 1.000000 1.000000
|
|
||||||
3143.791504 0.000000 953.657776 0.000000 0.751647 0.000000 0.659566 1.000000 1.000000 1.000000
|
|
||||||
3147.376465 0.000000 923.272827 0.000000 0.623863 0.000000 0.781534 1.000000 1.000000 1.000000
|
|
||||||
3167.960205 0.000000 882.778564 0.000000 0.416975 0.000000 0.908918 1.000000 1.000000 1.000000
|
|
||||||
3284.593018 0.000000 760.753723 0.000000 0.437393 0.000000 0.899270 1.000000 1.000000 1.000000
|
|
||||||
3301.532959 0.000000 745.926636 0.000000 0.353574 0.000000 0.935407 1.000000 1.000000 1.000000
|
|
||||||
3420.171143 0.000000 502.415985 0.000000 -0.011780 0.000000 0.999931 1.000000 1.000000 1.000000
|
|
||||||
3507.849365 0.000000 538.692810 0.000000 -0.098230 0.000000 0.995164 1.000000 1.000000 1.000000
|
|
||||||
3567.171875 0.000000 548.767456 0.000000 -0.133511 0.000000 0.991047 1.000000 1.000000 1.000000
|
|
||||||
3596.408203 0.000000 566.153381 0.000000 -0.178062 0.000000 0.984019 1.000000 1.000000 1.000000
|
|
||||||
3618.652344 0.000000 567.670044 0.000000 -0.010376 0.000000 0.999946 1.000000 1.000000 1.000000
|
|
||||||
3666.772461 0.000000 600.538086 0.000000 -0.216861 0.000000 0.976203 1.000000 1.000000 1.000000
|
|
||||||
3689.962402 0.000000 612.186523 0.000000 -0.196617 0.000000 0.980480 1.000000 1.000000 1.000000
|
|
||||||
3729.803711 0.000000 626.242126 0.000000 -0.169917 0.000000 0.985458 1.000000 1.000000 1.000000
|
|
||||||
3749.666016 0.000000 633.289856 0.000000 -0.177911 0.000000 0.984047 1.000000 1.000000 1.000000
|
|
||||||
3768.423340 0.000000 640.678284 0.000000 -0.163960 0.000000 0.986467 1.000000 1.000000 1.000000
|
|
||||||
3898.136719 0.000000 732.106628 0.000000 -0.081513 0.000000 0.996672 1.000000 1.000000 1.000000
|
|
||||||
3878.611816 0.000000 725.084167 0.000000 -0.206750 0.000000 0.978394 1.000000 1.000000 1.000000
|
|
||||||
3857.694580 0.000000 718.304565 0.000000 -0.161912 0.000000 0.986805 1.000000 1.000000 1.000000
|
|
||||||
3840.349609 0.000000 711.163330 0.000000 -0.161912 0.000000 0.986805 1.000000 1.000000 1.000000
|
|
||||||
4136.067383 0.000000 1055.259766 0.000000 -0.931844 0.000000 0.362858 1.000000 1.000000 1.000000
|
|
||||||
4123.583496 0.000000 1069.093262 0.000000 -0.921338 0.000000 0.388762 1.000000 1.000000 1.000000
|
|
||||||
4106.706543 0.000000 1086.857422 0.000000 -0.910643 0.000000 0.413195 1.000000 1.000000 1.000000
|
|
||||||
4007.693604 0.000000 1120.358521 0.000000 -0.935570 0.000000 0.353142 1.000000 1.000000 1.000000
|
|
||||||
3954.243408 0.000000 1210.626709 0.000000 0.834931 0.000000 0.550355 1.000000 1.000000 1.000000
|
|
||||||
3925.958496 0.000000 1174.783325 0.000000 0.885706 0.000000 0.464246 1.000000 1.000000 1.000000
|
|
||||||
3713.406006 0.000000 1188.613403 0.000000 0.873099 0.000000 0.487543 1.000000 1.000000 1.000000
|
|
||||||
3648.020752 0.000000 1396.362427 0.000000 -0.335267 0.000000 0.942123 1.000000 1.000000 1.000000
|
|
||||||
3672.842773 0.000000 1379.687134 0.000000 0.415838 0.000000 0.909439 1.000000 1.000000 1.000000
|
|
||||||
3682.695801 0.000000 1369.837036 0.000000 0.408915 0.000000 0.912573 1.000000 1.000000 1.000000
|
|
||||||
3695.941162 0.000000 1339.956665 0.000000 0.451880 0.000000 0.892079 1.000000 1.000000 1.000000
|
|
||||||
3710.521973 0.000000 1319.115723 0.000000 0.566057 0.000000 0.824366 1.000000 1.000000 1.000000
|
|
||||||
3768.338379 0.000000 1277.963379 0.000000 0.219779 0.000000 0.975550 1.000000 1.000000 1.000000
|
|
||||||
3795.482422 0.000000 1255.646729 0.000000 0.276384 0.000000 0.961047 1.000000 1.000000 1.000000
|
|
||||||
3818.209229 0.000000 1246.307739 0.000000 0.184574 0.000000 0.982819 1.000000 1.000000 1.000000
|
|
||||||
3851.440918 0.000000 1233.562866 0.000000 -0.102633 0.000000 0.994719 1.000000 1.000000 1.000000
|
|
||||||
3887.123291 0.000000 1227.885498 0.000000 0.136475 0.000000 0.990644 1.000000 1.000000 1.000000
|
|
||||||
3905.551514 0.000000 1233.717896 0.000000 -0.358821 0.000000 0.933406 1.000000 1.000000 1.000000
|
|
||||||
3995.781006 0.000000 1258.061035 0.000000 0.359191 0.000000 0.933264 1.000000 1.000000 1.000000
|
|
||||||
4035.460938 0.000000 1197.656006 0.000000 0.045974 0.000000 0.998943 1.000000 1.000000 1.000000
|
|
||||||
4068.404053 0.000000 1193.237915 0.000000 -0.016448 0.000000 0.999865 1.000000 1.000000 1.000000
|
|
||||||
4086.357178 0.000000 1194.357422 0.000000 -0.012664 0.000000 0.999920 1.000000 1.000000 1.000000
|
|
||||||
4123.368652 0.000000 1190.090454 0.000000 0.066540 0.000000 0.997784 1.000000 1.000000 1.000000
|
|
||||||
4151.068359 0.000000 1188.390137 0.000000 -0.036674 0.000000 0.999327 1.000000 1.000000 1.000000
|
|
||||||
4177.008301 0.000000 1189.168213 0.000000 0.056123 0.000000 0.998424 1.000000 1.000000 1.000000
|
|
||||||
4194.734375 0.000000 1187.480103 0.000000 0.063678 0.000000 0.997971 1.000000 1.000000 1.000000
|
|
||||||
4216.145508 0.000000 1183.099976 0.000000 0.110977 0.000000 0.993823 1.000000 1.000000 1.000000
|
|
||||||
4282.794434 0.000000 1195.410034 0.000000 -0.098777 0.000000 0.995110 1.000000 1.000000 1.000000
|
|
||||||
4338.579590 0.000000 1211.065063 0.000000 -0.086257 0.000000 0.996273 1.000000 1.000000 1.000000
|
|
||||||
4364.635254 0.000000 1209.448242 0.000000 0.006775 0.000000 0.999977 1.000000 1.000000 1.000000
|
|
||||||
4396.629395 0.000000 1215.952637 0.000000 -0.044846 0.000000 0.998994 1.000000 1.000000 1.000000
|
|
||||||
4418.522461 0.000000 1220.333374 0.000000 -0.099141 0.000000 0.995073 1.000000 1.000000 1.000000
|
|
||||||
4443.162109 0.000000 1226.279907 0.000000 -0.156640 0.000000 0.987656 1.000000 1.000000 1.000000
|
|
||||||
4821.133301 0.000000 1027.896729 0.000000 0.531805 0.000000 0.846867 1.000000 1.000000 1.000000
|
|
||||||
4820.452637 0.000000 1002.262085 0.000000 0.773031 0.000000 0.634368 1.000000 1.000000 1.000000
|
|
||||||
4824.590820 0.000000 963.462158 0.000000 0.555318 0.000000 0.831638 1.000000 1.000000 1.000000
|
|
||||||
4830.756348 0.000000 943.287354 0.000000 0.648790 0.000000 0.760967 1.000000 1.000000 1.000000
|
|
||||||
4839.568848 0.000000 907.146179 0.000000 0.618050 0.000000 0.786139 1.000000 1.000000 1.000000
|
|
||||||
4848.522949 0.000000 881.575012 0.000000 0.528544 0.000000 0.848906 1.000000 1.000000 1.000000
|
|
||||||
4858.461426 0.000000 858.693665 0.000000 0.566887 0.000000 0.823795 1.000000 1.000000 1.000000
|
|
||||||
4868.513672 0.000000 831.265259 0.000000 0.599115 0.000000 0.800663 1.000000 1.000000 1.000000
|
|
||||||
4873.712891 0.000000 808.662781 0.000000 0.620686 0.000000 0.784060 1.000000 1.000000 1.000000
|
|
||||||
4880.695312 0.000000 790.796570 0.000000 0.533716 0.000000 0.845664 1.000000 1.000000 1.000000
|
|
||||||
4889.929199 0.000000 771.183167 0.000000 0.520073 0.000000 0.854122 1.000000 1.000000 1.000000
|
|
||||||
4903.389648 0.000000 750.988281 0.000000 0.476316 0.000000 0.879274 1.000000 1.000000 1.000000
|
|
||||||
4942.051270 0.000000 696.195129 0.000000 0.489357 0.000000 0.872083 1.000000 1.000000 1.000000
|
|
||||||
4950.822266 0.000000 677.756104 0.000000 0.568646 0.000000 0.822583 1.000000 1.000000 1.000000
|
|
||||||
4976.542480 0.000000 608.499634 0.000000 0.547528 0.000000 0.836788 1.000000 1.000000 1.000000
|
|
||||||
4988.747070 0.000000 582.470764 0.000000 0.524133 0.000000 0.851636 1.000000 1.000000 1.000000
|
|
||||||
5009.926270 0.000000 557.814636 0.000000 0.296266 0.000000 0.955105 1.000000 1.000000 1.000000
|
|
||||||
5027.493652 0.000000 537.315125 0.000000 0.490581 0.000000 0.871396 1.000000 1.000000 1.000000
|
|
||||||
5041.274414 0.000000 511.015839 0.000000 0.553438 0.000000 0.832890 1.000000 1.000000 1.000000
|
|
||||||
5049.565430 0.000000 491.612488 0.000000 0.514693 0.000000 0.857375 1.000000 1.000000 1.000000
|
|
||||||
5067.140137 0.000000 454.834045 0.000000 0.576252 0.000000 0.817272 1.000000 1.000000 1.000000
|
|
||||||
5074.450684 0.000000 436.815674 0.000000 0.554404 0.000000 0.832248 1.000000 1.000000 1.000000
|
|
||||||
5103.180664 0.000000 389.959595 0.000000 0.377886 0.000000 0.925852 1.000000 1.000000 1.000000
|
|
||||||
5118.737793 0.000000 375.258453 0.000000 0.345625 0.000000 0.938373 1.000000 1.000000 1.000000
|
|
||||||
5134.185547 0.000000 363.854187 0.000000 0.255084 0.000000 0.966919 1.000000 1.000000 1.000000
|
|
||||||
5167.901855 0.000000 365.265259 0.000000 -0.268279 0.000000 0.963341 1.000000 1.000000 1.000000
|
|
||||||
5292.310059 0.000000 328.506653 0.000000 0.633002 0.000000 0.774150 1.000000 1.000000 1.000000
|
|
||||||
5297.874023 0.000000 304.403900 0.000000 0.580981 0.000000 0.813917 1.000000 1.000000 1.000000
|
|
||||||
5308.645020 0.000000 281.070831 0.000000 0.520959 0.000000 0.853582 1.000000 1.000000 1.000000
|
|
||||||
5333.065918 0.000000 259.730072 0.000000 0.118132 0.000000 0.992998 1.000000 1.000000 1.000000
|
|
||||||
5359.840820 0.000000 263.666077 0.000000 -0.212718 0.000000 0.977114 1.000000 1.000000 1.000000
|
|
||||||
5370.665039 0.000000 900.461487 0.000000 -0.316195 0.000000 0.948694 1.000000 1.000000 1.000000
|
|
||||||
5938.065918 0.000000 1013.963013 0.000000 0.752069 0.000000 0.659084 1.000000 1.000000 1.000000
|
|
||||||
5933.776855 0.000000 990.487366 0.000000 0.787535 0.000000 0.616270 1.000000 1.000000 1.000000
|
|
||||||
5929.772949 0.000000 966.217590 0.000000 0.778347 0.000000 0.627834 1.000000 1.000000 1.000000
|
|
||||||
6016.303711 0.000000 963.767212 0.000000 -0.502132 0.000000 0.864791 1.000000 1.000000 1.000000
|
|
||||||
6123.593262 0.000000 961.260437 0.000000 0.623839 0.000000 0.781553 1.000000 1.000000 1.000000
|
|
||||||
6129.367676 0.000000 934.297791 0.000000 0.659041 0.000000 0.752107 1.000000 1.000000 1.000000
|
|
||||||
3797.401855 0.000000 1807.264282 0.000000 0.994685 0.000000 0.102962 1.000000 1.000000 1.000000
|
|
||||||
3768.575928 0.000000 1798.281982 0.000000 0.991980 0.000000 0.126396 1.000000 1.000000 1.000000
|
|
||||||
3740.690430 0.000000 1789.420776 0.000000 0.981065 0.000000 0.193680 1.000000 1.000000 1.000000
|
|
||||||
3656.444580 0.000000 1801.294800 0.000000 -0.961804 0.000000 0.273739 1.000000 1.000000 1.000000
|
|
||||||
3678.285645 0.000000 1789.268311 0.000000 -0.990388 0.000000 0.138314 1.000000 1.000000 1.000000
|
|
||||||
3577.509766 0.000000 1855.480469 0.000000 -0.795905 0.000000 0.605421 1.000000 1.000000 1.000000
|
|
||||||
3556.691406 0.000000 2070.775146 0.000000 -0.874079 0.000000 0.485783 1.000000 1.000000 1.000000
|
|
||||||
3539.216797 0.000000 2093.059814 0.000000 -0.911523 0.000000 0.411249 1.000000 1.000000 1.000000
|
|
||||||
3523.125000 0.000000 2110.372314 0.000000 -0.911523 0.000000 0.411249 1.000000 1.000000 1.000000
|
|
||||||
3506.526855 0.000000 2130.708740 0.000000 0.904267 0.000000 -0.426967 1.000000 1.000000 1.000000
|
|
||||||
3491.996338 0.000000 2149.559570 0.000000 -0.899579 0.000000 0.436758 1.000000 1.000000 1.000000
|
|
||||||
3455.057861 0.000000 2246.018799 0.000000 0.892008 0.000000 -0.452020 1.000000 1.000000 1.000000
|
|
||||||
3449.628174 0.000000 2336.622314 0.000000 -0.518456 0.000000 0.855105 1.000000 1.000000 1.000000
|
|
||||||
3442.406982 0.000000 2316.130127 0.000000 -0.640016 0.000000 0.768362 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_coast_foam_m"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="coast_foam_layer"
|
|
||||||
entity="env_coast_foam_m"
|
|
||||||
count=370
|
|
||||||
transform="966.030457 0.000000 2724.600098 0.000000 -0.278451 0.000000 0.960450 1.000000 1.000000 1.000000
|
|
||||||
1030.579468 0.000000 2759.437988 0.000000 0.636532 0.000000 -0.771250 1.000000 1.000000 1.000000
|
|
||||||
1059.586182 0.000000 2847.778564 0.000000 0.510965 0.000000 -0.859602 1.000000 1.000000 1.000000
|
|
||||||
721.720886 0.000000 2806.762939 0.000000 -0.996188 0.000000 0.087233 1.000000 1.000000 1.000000
|
|
||||||
836.362732 0.000000 3328.842285 0.000000 -0.344494 0.000000 0.938788 1.000000 1.000000 1.000000
|
|
||||||
1045.002686 0.000000 2890.877197 0.000000 0.949892 0.000000 -0.312578 1.000000 1.000000 1.000000
|
|
||||||
962.354675 0.000000 3004.390869 0.000000 0.952846 0.000000 -0.303454 1.000000 1.000000 1.000000
|
|
||||||
896.398315 0.000000 3248.989258 0.000000 -0.401612 0.000000 0.915810 1.000000 1.000000 1.000000
|
|
||||||
819.267151 0.000000 3289.617676 0.000000 -0.993348 0.000000 -0.115151 1.000000 1.000000 1.000000
|
|
||||||
424.578613 0.000000 2834.675537 0.000000 0.015209 0.000000 0.999884 1.000000 1.000000 1.000000
|
|
||||||
442.229309 0.000000 2823.941895 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
453.184814 0.000000 2946.882324 0.000000 0.288679 0.000000 0.957426 1.000000 1.000000 1.000000
|
|
||||||
658.988647 0.000000 3088.841064 0.000000 -0.776692 0.000000 0.629881 1.000000 1.000000 1.000000
|
|
||||||
518.408936 0.000000 3060.248535 0.000000 0.207929 0.000000 0.978144 1.000000 1.000000 1.000000
|
|
||||||
1018.481995 0.000000 2745.812744 0.000000 -0.169564 0.000000 0.985519 1.000000 1.000000 1.000000
|
|
||||||
988.397217 0.000000 2731.813232 0.000000 -0.219407 0.000000 0.975633 1.000000 1.000000 1.000000
|
|
||||||
781.317078 0.000000 2731.887939 0.000000 -0.033952 0.000000 0.999423 1.000000 1.000000 1.000000
|
|
||||||
713.861450 0.000000 2861.264404 0.000000 -0.974880 0.000000 -0.222730 1.000000 1.000000 1.000000
|
|
||||||
714.920410 0.000000 2922.580811 0.000000 0.964308 0.000000 0.264782 1.000000 1.000000 1.000000
|
|
||||||
729.981201 0.000000 2893.266846 0.000000 0.682582 0.000000 0.730809 1.000000 1.000000 1.000000
|
|
||||||
721.242371 0.000000 3123.970703 0.000000 0.329575 0.000000 0.944129 1.000000 1.000000 1.000000
|
|
||||||
720.141479 0.000000 3109.983643 0.000000 0.883825 0.000000 0.467817 1.000000 1.000000 1.000000
|
|
||||||
593.000488 0.000000 3241.189209 0.000000 0.935995 0.000000 0.352014 1.000000 1.000000 1.000000
|
|
||||||
731.091553 0.000000 3352.266602 0.000000 0.884445 0.000000 0.466644 1.000000 1.000000 1.000000
|
|
||||||
829.188293 0.000000 3385.372559 0.000000 0.728480 0.000000 0.685067 1.000000 1.000000 1.000000
|
|
||||||
940.620239 0.000000 3464.187500 0.000000 0.293110 0.000000 0.956079 1.000000 1.000000 1.000000
|
|
||||||
935.653137 0.000000 2612.885498 0.000000 0.989253 0.000000 0.146213 1.000000 1.000000 1.000000
|
|
||||||
878.371216 0.000000 2631.072266 0.000000 -0.875407 0.000000 0.483387 1.000000 1.000000 1.000000
|
|
||||||
850.404785 0.000000 2648.119385 0.000000 0.991058 0.000000 -0.133433 1.000000 1.000000 1.000000
|
|
||||||
900.655762 0.000000 2726.267090 0.000000 0.034409 0.000000 0.999408 1.000000 1.000000 1.000000
|
|
||||||
1037.632202 0.000000 2733.961914 0.000000 0.954962 0.000000 0.296729 1.000000 1.000000 1.000000
|
|
||||||
820.830566 0.000000 2565.695557 0.000000 0.984761 0.000000 0.173911 1.000000 1.000000 1.000000
|
|
||||||
795.185242 0.000000 2563.245605 0.000000 0.969367 0.000000 0.245618 1.000000 1.000000 1.000000
|
|
||||||
782.508911 0.000000 2566.866699 0.000000 0.887217 0.000000 -0.461353 1.000000 1.000000 1.000000
|
|
||||||
774.120728 0.000000 2579.303223 0.000000 0.872704 0.000000 -0.488250 1.000000 1.000000 1.000000
|
|
||||||
725.998413 0.000000 2578.199707 0.000000 0.999696 0.000000 -0.024653 1.000000 1.000000 1.000000
|
|
||||||
703.474976 0.000000 2578.465820 0.000000 0.998722 0.000000 0.050534 1.000000 1.000000 1.000000
|
|
||||||
679.511353 0.000000 2574.268311 0.000000 0.980811 0.000000 0.194959 1.000000 1.000000 1.000000
|
|
||||||
665.864624 0.000000 2553.861328 0.000000 -0.703055 0.000000 -0.711135 1.000000 1.000000 1.000000
|
|
||||||
678.593201 0.000000 2530.566162 0.000000 0.998574 0.000000 0.053376 1.000000 1.000000 1.000000
|
|
||||||
849.682190 0.000000 2160.773193 0.000000 0.871360 0.000000 0.490644 1.000000 1.000000 1.000000
|
|
||||||
835.081665 0.000000 2150.510254 0.000000 -0.987413 0.000000 -0.158166 1.000000 1.000000 1.000000
|
|
||||||
818.603088 0.000000 2145.080811 0.000000 0.999088 0.000000 0.042707 1.000000 1.000000 1.000000
|
|
||||||
768.969177 0.000000 2155.127441 0.000000 0.988846 0.000000 0.148945 1.000000 1.000000 1.000000
|
|
||||||
748.736755 0.000000 2157.412354 0.000000 -0.981820 0.000000 0.189816 1.000000 1.000000 1.000000
|
|
||||||
620.688843 0.000000 2170.922119 0.000000 0.962405 0.000000 -0.271619 1.000000 1.000000 1.000000
|
|
||||||
625.275513 0.000000 1644.000366 0.000000 0.055551 0.000000 0.998456 0.721474 0.721474 0.721474
|
|
||||||
616.672668 0.000000 1649.459595 0.000000 0.359469 0.000000 0.933157 0.721474 0.721474 0.721474
|
|
||||||
454.053741 0.000000 1313.536987 0.000000 0.533880 0.000000 0.845560 1.000000 1.000000 1.000000
|
|
||||||
445.182495 0.000000 1325.966187 0.000000 0.391197 0.000000 0.920307 1.000000 1.000000 1.000000
|
|
||||||
440.648346 0.000000 1345.036987 0.000000 0.719007 0.000000 0.695003 1.000000 1.000000 1.000000
|
|
||||||
1145.481812 0.000000 2771.550293 0.000000 0.576227 0.000000 0.817289 0.663208 0.663208 0.663208
|
|
||||||
1231.073853 0.000000 2895.144531 0.000000 0.902281 0.000000 0.431149 1.000000 1.000000 1.000000
|
|
||||||
1433.325439 0.000000 2931.815674 0.000000 0.805322 0.000000 0.592838 1.000000 1.000000 1.000000
|
|
||||||
1550.445557 0.000000 3159.079834 0.000000 -0.691777 0.000000 0.722112 1.000000 1.000000 1.000000
|
|
||||||
1563.987793 0.000000 3136.895508 0.000000 0.998024 0.000000 -0.062829 1.000000 1.000000 1.000000
|
|
||||||
1542.883545 0.000000 2982.369385 0.000000 -0.965615 0.000000 0.259975 1.000000 1.000000 1.000000
|
|
||||||
1600.567505 0.000000 2992.215820 0.000000 -0.017791 0.000000 0.999842 1.000000 1.000000 1.000000
|
|
||||||
1693.787842 0.000000 3043.678711 0.000000 -0.154922 0.000000 0.987927 1.000000 1.000000 1.000000
|
|
||||||
1726.672241 0.000000 3048.694824 0.000000 -0.427598 0.000000 0.903969 1.000000 1.000000 1.000000
|
|
||||||
1726.707886 0.000000 3063.517090 0.000000 -0.833264 0.000000 0.552875 1.000000 1.000000 1.000000
|
|
||||||
1729.710938 0.000000 3081.754883 0.000000 -0.420744 0.000000 0.907179 1.000000 1.000000 1.000000
|
|
||||||
1806.329224 0.000000 3095.887207 0.000000 -0.437997 0.000000 0.898977 1.000000 1.000000 1.000000
|
|
||||||
1813.137329 0.000000 3112.492676 0.000000 -0.566862 0.000000 0.823813 1.000000 1.000000 1.000000
|
|
||||||
1758.666138 0.000000 3094.970703 0.000000 0.000854 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1935.003784 0.000000 3194.587402 0.000000 -0.704514 0.000000 0.709690 1.000000 1.000000 1.000000
|
|
||||||
1949.027954 0.000000 3214.692139 0.000000 -0.456801 0.000000 0.889569 1.000000 1.000000 1.000000
|
|
||||||
1887.492676 0.000000 3284.698975 0.000000 -0.408692 0.000000 0.912672 1.000000 1.000000 1.000000
|
|
||||||
1918.469971 0.000000 3364.201660 0.000000 -0.794684 0.000000 0.607023 1.000000 1.000000 1.000000
|
|
||||||
1889.506104 0.000000 3390.744141 0.000000 -0.928086 0.000000 0.372366 1.000000 1.000000 1.000000
|
|
||||||
1863.146118 0.000000 3407.638916 0.000000 -0.992937 0.000000 0.118642 1.000000 1.000000 1.000000
|
|
||||||
1864.683105 0.000000 3523.165771 0.000000 -0.409138 0.000000 0.912473 1.000000 1.000000 1.000000
|
|
||||||
1877.888062 0.000000 3538.636230 0.000000 -0.533509 0.000000 0.845794 1.000000 1.000000 1.000000
|
|
||||||
1891.896484 0.000000 3554.187256 0.000000 -0.437393 0.000000 0.899270 1.000000 1.000000 1.000000
|
|
||||||
1901.414307 0.000000 3567.443359 0.000000 -0.031214 0.000000 0.999513 1.000000 1.000000 1.000000
|
|
||||||
1915.401367 0.000000 3577.134521 0.000000 -0.431125 0.000000 0.902292 1.000000 1.000000 1.000000
|
|
||||||
1941.360718 0.000000 3593.216797 0.000000 -0.307526 0.000000 0.951540 1.000000 1.000000 1.000000
|
|
||||||
1972.850586 0.000000 3609.385010 0.000000 -0.463169 0.000000 0.886270 1.000000 1.000000 1.000000
|
|
||||||
1988.682495 0.000000 3678.371582 0.000000 -0.368032 0.000000 0.929813 1.000000 1.000000 1.000000
|
|
||||||
1995.323975 0.000000 3692.631104 0.000000 0.654570 0.000000 -0.756001 1.000000 1.000000 1.000000
|
|
||||||
2007.409546 0.000000 3705.161133 0.000000 -0.115040 0.000000 0.993361 1.000000 1.000000 1.000000
|
|
||||||
2030.716064 0.000000 3725.145996 0.000000 0.329943 0.000000 0.944001 1.000000 1.000000 1.000000
|
|
||||||
2049.659424 0.000000 3723.227539 0.000000 -0.055483 0.000000 0.998460 1.000000 1.000000 1.000000
|
|
||||||
2122.946289 0.000000 3684.365479 0.000000 0.696324 0.000000 0.717727 1.000000 1.000000 1.000000
|
|
||||||
2100.145752 0.000000 3667.791504 0.000000 0.696040 0.000000 0.718003 1.000000 1.000000 1.000000
|
|
||||||
2095.468262 0.000000 3651.394531 0.000000 0.878694 0.000000 0.477385 1.000000 1.000000 1.000000
|
|
||||||
2081.611084 0.000000 3632.028809 0.000000 0.909542 0.000000 0.415611 1.000000 1.000000 1.000000
|
|
||||||
2069.188965 0.000000 3618.602539 0.000000 0.925761 0.000000 0.378108 1.000000 1.000000 1.000000
|
|
||||||
2058.207031 0.000000 3608.400879 0.000000 -0.992472 0.000000 -0.122468 1.000000 1.000000 1.000000
|
|
||||||
2041.759888 0.000000 3604.335938 0.000000 0.970391 0.000000 0.241541 0.688574 0.688574 0.688574
|
|
||||||
2032.166138 0.000000 3594.075439 0.000000 0.877672 0.000000 0.479261 1.000000 1.000000 1.000000
|
|
||||||
2022.406250 0.000000 3580.563721 0.000000 0.923401 0.000000 0.383836 1.000000 1.000000 1.000000
|
|
||||||
2008.267212 0.000000 3571.820557 0.000000 0.987188 0.000000 0.159558 1.000000 1.000000 1.000000
|
|
||||||
1987.565186 0.000000 3564.315186 0.000000 0.467734 0.000000 0.883869 0.850244 0.850244 0.850244
|
|
||||||
2010.742920 0.000000 3427.972412 0.000000 0.802982 0.000000 0.596004 1.000000 1.000000 1.000000
|
|
||||||
2010.147949 0.000000 3403.515137 0.000000 0.478327 0.000000 0.878182 1.000000 1.000000 1.000000
|
|
||||||
1952.734863 0.000000 3363.946289 0.000000 0.295829 0.000000 0.955241 1.000000 1.000000 1.000000
|
|
||||||
1967.891113 0.000000 3357.384521 0.000000 0.188981 0.000000 0.981981 1.000000 1.000000 1.000000
|
|
||||||
2096.452393 0.000000 3331.721924 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1764.359009 0.000000 2950.972656 0.000000 0.993915 0.000000 0.110154 1.000000 1.000000 1.000000
|
|
||||||
1975.321777 0.000000 2966.411133 0.000000 0.992053 0.000000 0.125821 1.000000 1.000000 1.000000
|
|
||||||
1995.690308 0.000000 2978.753662 0.000000 0.886003 0.000000 0.463679 1.000000 1.000000 1.000000
|
|
||||||
2019.289795 0.000000 3008.254883 0.000000 -0.999866 0.000000 -0.016392 1.000000 1.000000 1.000000
|
|
||||||
2105.345947 0.000000 3193.067139 0.000000 -0.827945 0.000000 0.560809 1.000000 1.000000 1.000000
|
|
||||||
2150.705811 0.000000 3146.903076 0.000000 -0.984404 0.000000 0.175925 1.000000 1.000000 1.000000
|
|
||||||
2178.096191 0.000000 3177.286865 0.000000 0.587421 0.000000 0.809281 1.000000 1.000000 1.000000
|
|
||||||
2070.987061 0.000000 3270.301270 0.000000 0.128065 0.000000 0.991766 1.000000 1.000000 1.000000
|
|
||||||
2158.307129 0.000000 3306.626465 0.000000 -0.995789 0.000000 -0.091672 1.000000 1.000000 1.000000
|
|
||||||
2257.037354 0.000000 3308.593994 0.000000 0.656973 0.000000 0.753914 1.000000 1.000000 1.000000
|
|
||||||
2263.623047 0.000000 3356.081543 0.000000 0.510710 0.000000 0.859753 1.000000 1.000000 1.000000
|
|
||||||
2115.000244 0.000000 3335.179932 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1673.007446 0.000000 3042.773682 0.000000 0.159985 0.000000 0.987119 1.000000 1.000000 1.000000
|
|
||||||
1652.142456 0.000000 3144.304199 0.000000 0.551607 0.000000 0.834104 1.000000 1.000000 1.000000
|
|
||||||
1634.512451 0.000000 3169.256592 0.000000 0.517842 0.000000 0.855476 1.000000 1.000000 1.000000
|
|
||||||
1606.564697 0.000000 3234.630859 0.000000 0.610235 0.000000 0.792221 1.000000 1.000000 1.000000
|
|
||||||
1598.371460 0.000000 3278.980713 0.000000 0.643877 0.000000 0.765129 1.000000 1.000000 1.000000
|
|
||||||
1425.865967 0.000000 3247.513184 0.000000 0.090422 0.000000 0.995904 1.000000 1.000000 1.000000
|
|
||||||
1391.446167 0.000000 3266.600098 0.000000 0.296223 0.000000 0.955119 1.000000 1.000000 1.000000
|
|
||||||
1378.229492 0.000000 3277.002686 0.000000 0.344365 0.000000 0.938836 1.000000 1.000000 1.000000
|
|
||||||
1352.122681 0.000000 3351.133301 0.000000 0.850445 0.000000 0.526064 1.000000 1.000000 1.000000
|
|
||||||
1353.508057 0.000000 3376.768799 0.000000 0.732368 0.000000 0.680909 1.000000 1.000000 1.000000
|
|
||||||
1355.412720 0.000000 3418.061523 0.000000 0.719661 0.000000 0.694325 1.000000 1.000000 1.000000
|
|
||||||
1683.163940 0.000000 3892.262939 0.000000 -0.856814 0.000000 -0.515625 1.000000 1.000000 1.000000
|
|
||||||
1765.681763 0.000000 3954.771484 0.000000 -0.943444 0.000000 -0.331531 1.000000 1.000000 1.000000
|
|
||||||
1021.359436 0.000000 2802.153564 0.000000 -0.379722 0.000000 0.925101 1.000000 1.000000 1.000000
|
|
||||||
211.339035 0.000000 3832.990723 0.000000 0.136639 0.000000 0.990621 1.000000 1.000000 1.000000
|
|
||||||
417.381805 0.000000 3809.075684 0.000000 -0.148553 0.000000 0.988904 1.000000 1.000000 1.000000
|
|
||||||
457.278870 0.000000 3815.006592 0.000000 -0.305576 0.000000 0.952168 1.000000 1.000000 1.000000
|
|
||||||
493.013153 0.000000 3838.235352 0.000000 -0.220215 0.000000 0.975451 1.000000 1.000000 1.000000
|
|
||||||
519.380371 0.000000 3898.058350 0.000000 -0.963176 0.000000 0.268870 1.000000 1.000000 1.000000
|
|
||||||
503.431427 0.000000 3943.850830 0.000000 -0.081358 0.000000 0.996685 1.000000 1.000000 1.000000
|
|
||||||
482.799622 0.000000 3948.879639 0.000000 0.996367 0.000000 0.085166 1.000000 1.000000 1.000000
|
|
||||||
444.140503 0.000000 3958.885986 0.000000 0.776064 0.000000 0.630654 1.000000 1.000000 1.000000
|
|
||||||
413.720398 0.000000 3948.701416 0.000000 0.940210 0.000000 0.340594 1.000000 1.000000 1.000000
|
|
||||||
317.451965 0.000000 3948.637207 0.000000 0.798478 0.000000 0.602024 1.000000 1.000000 1.000000
|
|
||||||
288.536652 0.000000 3985.506592 0.000000 -0.894699 0.000000 0.446669 1.000000 1.000000 1.000000
|
|
||||||
3678.858398 0.000000 252.886368 0.000000 -0.475806 0.000000 0.879550 1.000000 1.000000 1.000000
|
|
||||||
3688.323242 0.000000 264.373322 0.000000 -0.345540 0.000000 0.938404 1.000000 1.000000 1.000000
|
|
||||||
3768.230957 0.000000 433.794098 0.000000 -0.669512 0.000000 0.742802 1.000000 1.000000 1.000000
|
|
||||||
3765.687012 0.000000 452.262878 0.000000 -0.663094 0.000000 0.748536 1.000000 1.000000 1.000000
|
|
||||||
3756.463867 0.000000 480.519257 0.000000 0.990981 0.000000 -0.134000 1.000000 1.000000 1.000000
|
|
||||||
3718.676514 0.000000 463.249817 0.000000 0.972312 0.000000 0.233685 1.000000 1.000000 1.000000
|
|
||||||
3677.833496 0.000000 449.488007 0.000000 -0.981626 0.000000 -0.190813 1.000000 1.000000 1.000000
|
|
||||||
3663.871338 0.000000 445.137817 0.000000 -0.993293 0.000000 -0.115621 1.000000 1.000000 1.000000
|
|
||||||
3647.673584 0.000000 444.904388 0.000000 -0.996757 0.000000 0.080475 1.000000 1.000000 1.000000
|
|
||||||
3575.779053 0.000000 435.478577 0.000000 -0.989744 0.000000 -0.142855 1.000000 1.000000 1.000000
|
|
||||||
3560.453857 0.000000 425.157104 0.000000 0.965782 0.000000 0.259356 1.000000 1.000000 1.000000
|
|
||||||
3508.232422 0.000000 419.858002 0.000000 0.996072 0.000000 -0.088542 1.000000 1.000000 1.000000
|
|
||||||
3468.196289 0.000000 404.095490 0.000000 0.969887 0.000000 0.243554 1.000000 1.000000 1.000000
|
|
||||||
3452.265625 0.000000 401.857758 0.000000 0.999771 0.000000 -0.021396 1.000000 1.000000 1.000000
|
|
||||||
3438.152832 0.000000 402.625275 0.000000 0.996102 0.000000 -0.088208 1.000000 1.000000 1.000000
|
|
||||||
3366.111328 0.000000 463.425537 0.000000 -0.170759 0.000000 0.985313 1.000000 1.000000 1.000000
|
|
||||||
3380.851562 0.000000 471.617310 0.000000 -0.242522 0.000000 0.970146 1.000000 1.000000 1.000000
|
|
||||||
3385.475830 0.000000 493.082886 0.000000 -0.800355 0.000000 0.599527 1.000000 1.000000 1.000000
|
|
||||||
2436.792725 0.000000 1317.281860 0.000000 0.994937 0.000000 0.100503 1.000000 1.000000 1.000000
|
|
||||||
2422.953613 0.000000 1324.901733 0.000000 -0.861155 0.000000 0.508343 1.000000 1.000000 1.000000
|
|
||||||
2315.680176 0.000000 1350.880493 0.000000 -0.728522 0.000000 0.685022 1.000000 1.000000 1.000000
|
|
||||||
2239.434326 0.000000 1378.872681 0.000000 0.999636 0.000000 -0.026979 1.000000 1.000000 1.000000
|
|
||||||
2214.545410 0.000000 1373.367676 0.000000 0.923272 0.000000 0.384146 1.000000 1.000000 1.000000
|
|
||||||
1561.560547 0.000000 1645.655029 0.000000 -0.959193 0.000000 0.282752 1.000000 1.000000 1.000000
|
|
||||||
1543.268921 0.000000 1651.376831 0.000000 0.979035 0.000000 -0.203693 1.000000 1.000000 1.000000
|
|
||||||
1277.044189 0.000000 1631.828247 0.000000 -0.922167 0.000000 0.386793 1.000000 1.000000 1.000000
|
|
||||||
1261.092163 0.000000 1642.310425 0.000000 0.971985 0.000000 -0.235044 1.000000 1.000000 1.000000
|
|
||||||
1185.650513 0.000000 1649.463257 0.000000 0.976240 0.000000 0.216692 1.000000 1.000000 1.000000
|
|
||||||
1120.296143 0.000000 1638.599854 0.000000 -0.980964 0.000000 0.194188 1.000000 1.000000 1.000000
|
|
||||||
715.804260 0.000000 1581.668945 0.000000 -0.991539 0.000000 0.129809 1.000000 1.000000 1.000000
|
|
||||||
728.115723 0.000000 1580.931885 0.000000 -0.998548 0.000000 -0.053872 1.000000 1.000000 1.000000
|
|
||||||
767.522339 0.000000 1581.398438 0.000000 0.963133 0.000000 -0.269026 1.000000 1.000000 1.000000
|
|
||||||
780.068604 0.000000 1576.927246 0.000000 -0.998713 0.000000 -0.050711 1.000000 1.000000 1.000000
|
|
||||||
794.320435 0.000000 1581.889648 0.000000 0.949821 0.000000 0.312794 1.000000 1.000000 1.000000
|
|
||||||
809.833557 0.000000 1579.598633 0.000000 -0.852800 0.000000 0.522237 1.000000 1.000000 1.000000
|
|
||||||
590.330627 0.000000 1528.462402 0.000000 -0.892335 0.000000 -0.451374 1.000000 1.000000 1.000000
|
|
||||||
579.105103 0.000000 1518.374146 0.000000 0.962135 0.000000 0.272572 1.000000 1.000000 1.000000
|
|
||||||
1678.841675 0.000000 1369.138184 0.000000 0.994422 0.000000 -0.105475 1.000000 1.000000 1.000000
|
|
||||||
667.878723 0.000000 1653.652344 0.000000 -0.487839 0.000000 0.872933 1.000000 1.000000 1.000000
|
|
||||||
679.904358 0.000000 1661.902710 0.000000 -0.201851 0.000000 0.979416 1.000000 1.000000 1.000000
|
|
||||||
708.146545 0.000000 1671.259644 0.000000 -0.386931 0.000000 0.922109 1.000000 1.000000 1.000000
|
|
||||||
720.012268 0.000000 1676.172607 0.000000 -0.002541 0.000000 0.999997 1.000000 1.000000 1.000000
|
|
||||||
803.705017 0.000000 1667.517700 0.000000 0.164998 0.000000 0.986294 1.000000 1.000000 1.000000
|
|
||||||
820.040405 0.000000 1670.785400 0.000000 -0.412191 0.000000 0.911097 1.000000 1.000000 1.000000
|
|
||||||
1049.437134 0.000000 1968.049927 0.000000 -0.132105 0.000000 0.991236 1.000000 1.000000 1.000000
|
|
||||||
1117.016113 0.000000 2091.615723 0.000000 -0.702671 0.000000 0.711515 1.000000 1.000000 1.000000
|
|
||||||
1124.174805 0.000000 2107.102539 0.000000 -0.379581 0.000000 0.925159 1.000000 1.000000 1.000000
|
|
||||||
1236.076294 0.000000 2109.691650 0.000000 0.100219 0.000000 0.994965 1.000000 1.000000 1.000000
|
|
||||||
1256.861572 0.000000 2097.802002 0.000000 0.184409 0.000000 0.982850 1.000000 1.000000 1.000000
|
|
||||||
1365.424316 0.000000 2133.022461 0.000000 -0.204510 0.000000 0.978864 1.000000 1.000000 1.000000
|
|
||||||
1379.515625 0.000000 2137.620850 0.000000 -0.116495 0.000000 0.993191 1.000000 1.000000 1.000000
|
|
||||||
1436.770142 0.000000 2181.135986 0.000000 -0.187273 0.000000 0.982308 1.000000 1.000000 1.000000
|
|
||||||
1513.879028 0.000000 2149.681641 0.000000 0.273978 0.000000 0.961736 1.000000 1.000000 1.000000
|
|
||||||
1568.325684 0.000000 2050.700439 0.000000 0.291351 0.000000 0.956616 1.000000 1.000000 1.000000
|
|
||||||
1535.141357 0.000000 2059.504150 0.000000 -0.994730 0.000000 -0.102531 1.000000 1.000000 1.000000
|
|
||||||
1478.579956 0.000000 2061.797119 0.000000 0.742181 0.000000 0.670199 1.000000 1.000000 1.000000
|
|
||||||
1453.751953 0.000000 2047.636963 0.000000 -0.988627 0.000000 -0.150387 1.000000 1.000000 1.000000
|
|
||||||
1442.637939 0.000000 2036.858887 0.000000 0.804135 0.000000 0.594446 1.000000 1.000000 1.000000
|
|
||||||
1450.648438 0.000000 1915.781494 0.000000 0.969809 0.000000 0.243865 1.000000 1.000000 1.000000
|
|
||||||
1435.212769 0.000000 1882.361938 0.000000 0.540730 0.000000 0.841196 1.000000 1.000000 1.000000
|
|
||||||
1517.545410 0.000000 1787.849976 0.000000 -0.649394 0.000000 0.760452 1.000000 1.000000 1.000000
|
|
||||||
1520.923706 0.000000 1824.833496 0.000000 -0.667185 0.000000 0.744892 1.000000 1.000000 1.000000
|
|
||||||
1521.854248 0.000000 1839.109131 0.000000 -0.695601 0.000000 0.718428 1.000000 1.000000 1.000000
|
|
||||||
1518.452881 0.000000 1851.717651 0.000000 0.886388 0.000000 -0.462943 1.000000 1.000000 1.000000
|
|
||||||
1518.596436 0.000000 1863.533447 0.000000 -0.498379 0.000000 0.866959 1.000000 1.000000 1.000000
|
|
||||||
1712.247681 0.000000 1936.028076 0.000000 -0.230409 0.000000 0.973094 1.000000 1.000000 1.000000
|
|
||||||
1841.916016 0.000000 1664.510620 0.000000 -0.575903 0.000000 0.817518 1.000000 1.000000 1.000000
|
|
||||||
1846.101929 0.000000 1681.104248 0.000000 -0.611407 0.000000 0.791317 1.000000 1.000000 1.000000
|
|
||||||
1864.034302 0.000000 1705.436157 0.000000 0.627089 0.000000 0.778947 1.000000 1.000000 1.000000
|
|
||||||
1882.083496 0.000000 1694.632568 0.000000 -0.070407 0.000000 0.997518 1.000000 1.000000 1.000000
|
|
||||||
1895.009277 0.000000 1704.045654 0.000000 -0.505953 0.000000 0.862561 1.000000 1.000000 1.000000
|
|
||||||
1902.247559 0.000000 1717.838257 0.000000 -0.460557 0.000000 0.887630 1.000000 1.000000 1.000000
|
|
||||||
1778.193848 0.000000 1889.315796 0.000000 0.904219 0.000000 0.427069 1.000000 1.000000 1.000000
|
|
||||||
1785.220947 0.000000 1880.406128 0.000000 -0.298947 0.000000 0.954270 1.000000 1.000000 1.000000
|
|
||||||
1858.451050 0.000000 1843.825806 0.000000 0.435993 0.000000 0.899950 1.000000 1.000000 1.000000
|
|
||||||
1864.516602 0.000000 1829.274658 0.000000 0.669602 0.000000 0.742720 1.000000 1.000000 1.000000
|
|
||||||
1846.827881 0.000000 1846.729004 0.000000 -0.113979 0.000000 0.993483 1.000000 1.000000 1.000000
|
|
||||||
1874.117676 0.000000 1807.371948 0.000000 0.404301 0.000000 0.914626 1.000000 1.000000 1.000000
|
|
||||||
1880.000244 0.000000 1793.694214 0.000000 0.629535 0.000000 0.776973 1.000000 1.000000 1.000000
|
|
||||||
1883.914429 0.000000 1778.322144 0.000000 0.605789 0.000000 0.795626 1.000000 1.000000 1.000000
|
|
||||||
1945.820801 0.000000 1787.956787 0.000000 -0.763903 0.000000 0.645332 1.000000 1.000000 1.000000
|
|
||||||
1938.802002 0.000000 1811.097900 0.000000 -0.951850 0.000000 0.306563 1.000000 1.000000 1.000000
|
|
||||||
1920.205322 0.000000 1822.503418 0.000000 -0.987592 0.000000 0.157042 1.000000 1.000000 1.000000
|
|
||||||
1916.942871 0.000000 1858.634033 0.000000 -0.564559 0.000000 0.825392 1.000000 1.000000 1.000000
|
|
||||||
1924.520996 0.000000 1871.034180 0.000000 -0.455946 0.000000 0.890008 1.000000 1.000000 1.000000
|
|
||||||
1950.987427 0.000000 1872.751221 0.000000 0.224585 0.000000 0.974455 1.000000 1.000000 1.000000
|
|
||||||
1969.520996 0.000000 1869.756104 0.000000 0.026181 0.000000 0.999657 1.000000 1.000000 1.000000
|
|
||||||
1932.652832 0.000000 1928.974487 0.000000 -0.972177 0.000000 0.234249 1.000000 1.000000 1.000000
|
|
||||||
1915.099976 0.000000 1935.013672 0.000000 -0.986021 0.000000 0.166619 1.000000 1.000000 1.000000
|
|
||||||
1806.801147 0.000000 1997.725708 0.000000 -0.948333 0.000000 0.317277 1.000000 1.000000 1.000000
|
|
||||||
1821.979614 0.000000 1990.584717 0.000000 -0.997940 0.000000 0.064160 1.000000 1.000000 1.000000
|
|
||||||
1821.269897 0.000000 2127.106445 0.000000 -0.370480 0.000000 -0.928841 1.000000 1.000000 1.000000
|
|
||||||
1992.866333 0.000000 2037.205444 0.000000 0.299180 0.000000 0.954197 1.000000 1.000000 1.000000
|
|
||||||
2016.559937 0.000000 2023.954102 0.000000 0.299820 0.000000 0.953996 1.000000 1.000000 1.000000
|
|
||||||
2093.019043 0.000000 1852.683105 0.000000 0.351404 0.000000 0.936224 1.000000 1.000000 1.000000
|
|
||||||
2088.537842 0.000000 1825.425537 0.000000 0.408079 0.000000 0.912947 1.000000 1.000000 1.000000
|
|
||||||
2105.827393 0.000000 1806.493652 0.000000 0.207646 0.000000 0.978204 1.000000 1.000000 1.000000
|
|
||||||
2124.333008 0.000000 1801.196167 0.000000 0.368940 0.000000 0.929453 1.000000 1.000000 1.000000
|
|
||||||
2153.450684 0.000000 1689.884155 0.000000 0.357311 0.000000 0.933986 1.000000 1.000000 1.000000
|
|
||||||
2148.377930 0.000000 1714.040283 0.000000 0.043108 0.000000 0.999070 1.000000 1.000000 1.000000
|
|
||||||
2187.646484 0.000000 1733.808472 0.000000 -0.183944 0.000000 0.982937 1.000000 1.000000 1.000000
|
|
||||||
2206.612793 0.000000 1645.011108 0.000000 0.605400 0.000000 0.795921 1.000000 1.000000 1.000000
|
|
||||||
2250.702393 0.000000 1627.214722 0.000000 0.499940 0.000000 0.866060 1.000000 1.000000 1.000000
|
|
||||||
2256.609375 0.000000 1613.093262 0.000000 0.624387 0.000000 0.781115 1.000000 1.000000 1.000000
|
|
||||||
2268.785400 0.000000 1612.175537 0.000000 -0.683824 0.000000 0.729647 1.000000 1.000000 1.000000
|
|
||||||
2273.097412 0.000000 1624.731934 0.000000 -0.446072 0.000000 0.894997 1.000000 1.000000 1.000000
|
|
||||||
2464.752441 0.000000 1521.414429 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2795.006836 0.000000 1554.911865 0.000000 0.552777 0.000000 0.833329 1.000000 1.000000 1.000000
|
|
||||||
2811.659912 0.000000 1536.707642 0.000000 0.136535 0.000000 0.990635 1.000000 1.000000 1.000000
|
|
||||||
2846.870850 0.000000 1543.197876 0.000000 -0.272745 0.000000 0.962086 1.000000 1.000000 1.000000
|
|
||||||
2861.384277 0.000000 1550.824707 0.000000 -0.258358 0.000000 0.966049 1.000000 1.000000 1.000000
|
|
||||||
2805.392578 0.000000 1566.779175 0.000000 -0.904033 0.000000 -0.427464 1.000000 1.000000 1.000000
|
|
||||||
2837.265869 0.000000 1588.815186 0.000000 -0.997484 0.000000 -0.070898 1.000000 1.000000 1.000000
|
|
||||||
2855.361084 0.000000 1591.047363 0.000000 0.993298 0.000000 0.115581 1.000000 1.000000 1.000000
|
|
||||||
2943.832031 0.000000 1451.436401 0.000000 0.755179 0.000000 0.655519 1.000000 1.000000 1.000000
|
|
||||||
2931.413818 0.000000 1408.809692 0.000000 0.791767 0.000000 0.610823 1.000000 1.000000 1.000000
|
|
||||||
2979.528564 0.000000 1601.492310 0.000000 0.685781 0.000000 0.727808 1.000000 1.000000 1.000000
|
|
||||||
2978.838867 0.000000 1585.368652 0.000000 0.724958 0.000000 0.688793 1.000000 1.000000 1.000000
|
|
||||||
2974.917725 0.000000 1654.588013 0.000000 0.564043 0.000000 0.825746 1.000000 1.000000 1.000000
|
|
||||||
2975.439941 0.000000 1698.365356 0.000000 -0.394803 0.000000 0.918766 1.000000 1.000000 1.000000
|
|
||||||
2942.682373 0.000000 1678.071533 0.000000 0.181664 0.000000 0.983361 1.000000 1.000000 1.000000
|
|
||||||
2907.082031 0.000000 1682.120605 0.000000 -0.373078 0.000000 0.927800 1.000000 1.000000 1.000000
|
|
||||||
2896.019043 0.000000 1671.374756 0.000000 -0.381923 0.000000 0.924194 1.000000 1.000000 1.000000
|
|
||||||
2889.932617 0.000000 1660.406128 0.000000 -0.616273 0.000000 0.787533 1.000000 1.000000 1.000000
|
|
||||||
2868.528809 0.000000 1641.323608 0.000000 -0.370245 0.000000 0.928934 1.000000 1.000000 1.000000
|
|
||||||
2828.587158 0.000000 1626.473877 0.000000 -0.183734 0.000000 0.982976 1.000000 1.000000 1.000000
|
|
||||||
2747.170410 0.000000 1661.851562 0.000000 0.219303 0.000000 0.975657 1.000000 1.000000 1.000000
|
|
||||||
2702.159912 0.000000 1632.008545 0.000000 -0.637410 0.000000 0.770525 1.000000 1.000000 1.000000
|
|
||||||
2680.253662 0.000000 1618.411743 0.000000 -0.309093 0.000000 0.951032 1.000000 1.000000 1.000000
|
|
||||||
2667.705078 0.000000 1610.697876 0.000000 -0.197634 0.000000 0.980276 1.000000 1.000000 1.000000
|
|
||||||
2650.381836 0.000000 1612.088501 0.000000 0.093582 0.000000 0.995612 1.000000 1.000000 1.000000
|
|
||||||
2632.243896 0.000000 1618.329346 0.000000 0.331527 0.000000 0.943446 1.000000 1.000000 1.000000
|
|
||||||
2459.141846 0.000000 1537.123779 0.000000 0.983610 0.000000 0.180309 1.000000 1.000000 1.000000
|
|
||||||
2421.764404 0.000000 1544.774658 0.000000 0.999960 0.000000 0.008998 1.000000 1.000000 1.000000
|
|
||||||
2380.338867 0.000000 1544.146851 0.000000 0.998477 0.000000 0.055174 1.000000 1.000000 1.000000
|
|
||||||
2558.206787 0.000000 1612.787231 0.000000 0.876955 0.000000 0.480573 1.000000 1.000000 1.000000
|
|
||||||
2283.969482 0.000000 1673.085327 0.000000 -0.891376 0.000000 0.453264 1.000000 1.000000 1.000000
|
|
||||||
2342.887695 0.000000 1700.879517 0.000000 -0.433748 0.000000 -0.901034 1.000000 1.000000 1.000000
|
|
||||||
2356.057861 0.000000 1716.299316 0.000000 -0.755818 0.000000 0.654781 1.000000 1.000000 1.000000
|
|
||||||
2364.569336 0.000000 1747.598022 0.000000 -0.828680 0.000000 0.559722 1.000000 1.000000 1.000000
|
|
||||||
2309.215088 0.000000 1794.482666 0.000000 -0.966967 0.000000 0.254903 1.000000 1.000000 1.000000
|
|
||||||
2303.707275 0.000000 1814.724243 0.000000 -0.880581 0.000000 0.473895 1.000000 1.000000 1.000000
|
|
||||||
2291.970703 0.000000 1827.875122 0.000000 -0.926429 0.000000 0.376469 1.000000 1.000000 1.000000
|
|
||||||
2281.392822 0.000000 1839.637817 0.000000 -0.833804 0.000000 0.552061 1.000000 1.000000 1.000000
|
|
||||||
2270.950195 0.000000 1855.133179 0.000000 -0.914560 0.000000 0.404450 1.000000 1.000000 1.000000
|
|
||||||
2260.824463 0.000000 1866.661011 0.000000 -0.887020 0.000000 0.461731 1.000000 1.000000 1.000000
|
|
||||||
2313.954102 0.000000 1878.386841 0.000000 0.135749 0.000000 0.990743 1.000000 1.000000 1.000000
|
|
||||||
2336.100342 0.000000 1886.957031 0.000000 0.081148 0.000000 0.996702 1.000000 1.000000 1.000000
|
|
||||||
2355.896240 0.000000 1886.699707 0.000000 -0.916609 0.000000 0.399784 1.000000 1.000000 1.000000
|
|
||||||
2343.575439 0.000000 1896.003540 0.000000 -0.972362 0.000000 0.233477 1.000000 1.000000 1.000000
|
|
||||||
2325.583740 0.000000 1913.931396 0.000000 -0.884598 0.000000 0.466353 1.000000 1.000000 1.000000
|
|
||||||
2465.661621 0.000000 1916.826172 0.000000 -0.087686 0.000000 0.996148 1.000000 1.000000 1.000000
|
|
||||||
2471.348145 0.000000 1914.505981 0.000000 0.943761 0.000000 0.330630 1.000000 1.000000 1.000000
|
|
||||||
2460.923096 0.000000 1905.809692 0.000000 0.947950 0.000000 0.318419 1.000000 1.000000 1.000000
|
|
||||||
2454.963379 0.000000 1827.875732 0.000000 0.950797 0.000000 0.309815 1.000000 1.000000 1.000000
|
|
||||||
2488.885986 0.000000 1840.528564 0.000000 -0.067119 0.000000 0.997745 1.000000 1.000000 1.000000
|
|
||||||
2473.019531 0.000000 1837.224365 0.000000 0.145016 0.000000 -0.989429 1.000000 1.000000 1.000000
|
|
||||||
2494.059082 0.000000 1775.074707 0.000000 0.452534 0.000000 0.891747 1.000000 1.000000 1.000000
|
|
||||||
2438.356689 0.000000 1878.331787 0.000000 -0.086592 0.000000 0.996244 1.000000 1.000000 1.000000
|
|
||||||
2432.973145 0.000000 1889.384277 0.000000 -0.972850 0.000000 -0.231438 1.000000 1.000000 1.000000
|
|
||||||
2477.226318 0.000000 1743.758057 0.000000 0.211644 0.000000 0.977347 1.000000 1.000000 1.000000
|
|
||||||
2499.293701 0.000000 1720.862671 0.000000 0.997408 0.000000 0.071955 1.000000 1.000000 1.000000
|
|
||||||
2542.230469 0.000000 1660.697388 0.000000 -0.104150 0.000000 0.994562 1.000000 1.000000 1.000000
|
|
||||||
2558.314941 0.000000 1663.230713 0.000000 -0.085406 0.000000 0.996346 1.000000 1.000000 1.000000
|
|
||||||
2539.322998 0.000000 1648.720093 0.000000 0.973602 0.000000 0.228251 1.000000 1.000000 1.000000
|
|
||||||
2572.088623 0.000000 1626.846313 0.000000 0.974787 0.000000 0.223138 1.000000 1.000000 1.000000
|
|
||||||
2557.704834 0.000000 1611.994263 0.000000 0.873887 0.000000 0.486130 1.000000 1.000000 1.000000
|
|
||||||
2392.850586 0.000000 1706.410278 0.000000 0.395504 0.000000 0.918464 1.000000 1.000000 1.000000
|
|
||||||
2410.193848 0.000000 1692.590454 0.000000 0.250714 0.000000 0.968061 1.000000 1.000000 1.000000
|
|
||||||
2427.214600 0.000000 1668.742432 0.000000 0.927334 0.000000 0.374234 1.000000 1.000000 1.000000
|
|
||||||
2650.484863 0.000000 1974.306763 0.000000 0.996871 0.000000 0.079045 1.000000 1.000000 1.000000
|
|
||||||
2955.791260 0.000000 2030.526489 0.000000 -0.855044 0.000000 0.518556 1.000000 1.000000 1.000000
|
|
||||||
2990.718262 0.000000 2015.795532 0.000000 -0.990888 0.000000 0.134686 1.000000 1.000000 1.000000
|
|
||||||
3017.558838 0.000000 2002.107666 0.000000 -0.996375 0.000000 0.085067 1.000000 1.000000 1.000000
|
|
||||||
3050.117188 0.000000 1997.266235 0.000000 -0.989251 0.000000 0.146228 1.000000 1.000000 1.000000
|
|
||||||
3065.632568 0.000000 1993.636841 0.000000 -0.998216 0.000000 0.059713 1.000000 1.000000 1.000000
|
|
||||||
3081.639160 0.000000 1997.046509 0.000000 -0.983165 0.000000 -0.182719 1.000000 1.000000 1.000000
|
|
||||||
3097.201416 0.000000 2004.505615 0.000000 0.992696 0.000000 0.120642 1.000000 1.000000 1.000000
|
|
||||||
3111.754639 0.000000 2008.157715 0.000000 -0.998749 0.000000 -0.050002 1.000000 1.000000 1.000000
|
|
||||||
3125.499512 0.000000 2006.084351 0.000000 -0.989067 0.000000 0.147466 1.000000 1.000000 1.000000
|
|
||||||
3144.242920 0.000000 2002.762329 0.000000 -0.990640 0.000000 0.136500 1.000000 1.000000 1.000000
|
|
||||||
3171.574463 0.000000 2012.829712 0.000000 -0.973878 0.000000 -0.227071 1.000000 1.000000 1.000000
|
|
||||||
3184.561768 0.000000 2020.457275 0.000000 -0.972374 0.000000 -0.233427 1.000000 1.000000 1.000000
|
|
||||||
3196.080322 0.000000 2028.383911 0.000000 -0.924518 0.000000 -0.381137 1.000000 1.000000 1.000000
|
|
||||||
3207.269531 0.000000 2040.530151 0.000000 0.849971 0.000000 0.526830 1.000000 1.000000 1.000000
|
|
||||||
3187.050781 0.000000 2124.996826 0.000000 0.169526 0.000000 0.985526 1.000000 1.000000 1.000000
|
|
||||||
2936.190674 0.000000 1198.015015 0.000000 -0.043870 0.000000 0.999037 1.000000 1.000000 1.000000
|
|
||||||
2976.217041 0.000000 1170.782227 0.000000 0.290665 0.000000 0.956825 1.000000 1.000000 1.000000
|
|
||||||
3102.145264 0.000000 1025.373169 0.000000 0.199758 0.000000 0.979845 1.000000 1.000000 1.000000
|
|
||||||
3351.479492 0.000000 620.485535 0.000000 0.467518 0.000000 0.883984 1.000000 1.000000 1.000000
|
|
||||||
3914.215576 0.000000 734.765198 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3993.623535 0.000000 1133.925415 0.000000 -0.923635 0.000000 0.383272 1.000000 1.000000 1.000000
|
|
||||||
3983.137939 0.000000 1150.462769 0.000000 -0.815318 0.000000 0.579014 1.000000 1.000000 1.000000
|
|
||||||
3978.602051 0.000000 1165.994873 0.000000 -0.727790 0.000000 0.685800 1.000000 1.000000 1.000000
|
|
||||||
3979.233154 0.000000 1183.322998 0.000000 -0.748782 0.000000 0.662817 1.000000 1.000000 1.000000
|
|
||||||
3978.227539 0.000000 1198.587646 0.000000 -0.562252 0.000000 0.826966 1.000000 1.000000 1.000000
|
|
||||||
3944.583984 0.000000 1194.524170 0.000000 0.919669 0.000000 0.392695 1.000000 1.000000 1.000000
|
|
||||||
3915.208984 0.000000 1162.268555 0.000000 0.904818 0.000000 0.425800 1.000000 1.000000 1.000000
|
|
||||||
3740.517090 0.000000 1120.141968 0.000000 -0.602140 0.000000 0.798390 1.000000 1.000000 1.000000
|
|
||||||
3609.950195 0.000000 1401.734131 0.000000 0.229503 0.000000 0.973308 1.000000 1.000000 1.000000
|
|
||||||
3662.428955 0.000000 1395.606934 0.000000 0.633946 0.000000 0.773377 1.000000 1.000000 1.000000
|
|
||||||
3717.167236 0.000000 1303.859375 0.000000 0.551760 0.000000 0.834003 1.000000 1.000000 1.000000
|
|
||||||
3731.164307 0.000000 1287.670410 0.000000 0.321893 0.000000 0.946776 1.000000 1.000000 1.000000
|
|
||||||
3750.175293 0.000000 1284.042725 0.000000 -0.127127 0.000000 0.991886 1.000000 1.000000 1.000000
|
|
||||||
4466.993652 0.000000 1230.062500 0.000000 0.122615 0.000000 0.992454 1.000000 1.000000 1.000000
|
|
||||||
4477.253906 0.000000 1225.204468 0.000000 0.329251 0.000000 0.944242 1.000000 1.000000 1.000000
|
|
||||||
4480.125000 0.000000 1213.439697 0.000000 0.730651 0.000000 0.682751 1.000000 1.000000 1.000000
|
|
||||||
4491.916992 0.000000 1201.670166 0.000000 -0.055696 0.000000 0.998448 1.000000 1.000000 1.000000
|
|
||||||
4508.575684 0.000000 1202.346924 0.000000 0.016967 0.000000 0.999856 1.000000 1.000000 1.000000
|
|
||||||
4912.860840 0.000000 735.474365 0.000000 0.416198 0.000000 0.909274 1.000000 1.000000 1.000000
|
|
||||||
4921.483887 0.000000 720.700806 0.000000 0.346370 0.000000 0.938098 1.000000 1.000000 1.000000
|
|
||||||
5182.857910 0.000000 375.625641 0.000000 -0.350661 0.000000 0.936503 1.000000 1.000000 1.000000
|
|
||||||
5355.992676 0.000000 876.122864 0.000000 -0.797142 0.000000 0.603792 1.000000 1.000000 1.000000
|
|
||||||
5358.565430 0.000000 888.475281 0.000000 -0.472770 0.000000 0.881186 1.000000 1.000000 1.000000
|
|
||||||
5386.416504 0.000000 912.107361 0.000000 -0.306509 0.000000 0.951868 1.000000 1.000000 1.000000
|
|
||||||
5401.741699 0.000000 932.675781 0.000000 -0.496208 0.000000 0.868203 1.000000 1.000000 1.000000
|
|
||||||
5413.041504 0.000000 946.204590 0.000000 -0.356826 0.000000 0.934171 1.000000 1.000000 1.000000
|
|
||||||
5773.603516 0.000000 1229.688721 0.000000 0.577349 0.000000 0.816497 1.000000 1.000000 1.000000
|
|
||||||
5777.145508 0.000000 1212.823364 0.000000 0.717475 0.000000 0.696584 1.000000 1.000000 1.000000
|
|
||||||
5785.354004 0.000000 1193.897217 0.000000 0.420024 0.000000 0.907513 1.000000 1.000000 1.000000
|
|
||||||
5795.892578 0.000000 1177.520630 0.000000 0.410641 0.000000 0.911797 1.000000 1.000000 1.000000
|
|
||||||
5936.108887 0.000000 1034.997314 0.000000 0.565176 0.000000 0.824970 1.000000 1.000000 1.000000
|
|
||||||
3605.572754 0.000000 1826.140747 0.000000 0.998531 0.000000 -0.054177 1.000000 1.000000 1.000000
|
|
||||||
3591.690430 0.000000 1833.412720 0.000000 -0.947814 0.000000 0.318824 1.000000 1.000000 1.000000
|
|
||||||
3434.083252 0.000000 2296.685059 0.000000 -0.419442 0.000000 0.907782 1.000000 1.000000 1.000000
|
|
||||||
3508.365967 0.000000 2412.149658 0.000000 -0.249473 0.000000 0.968382 1.000000 1.000000 1.000000
|
|
||||||
3521.682861 0.000000 2416.348877 0.000000 -0.080814 0.000000 0.996729 1.000000 1.000000 1.000000
|
|
||||||
3536.553711 0.000000 2419.383789 0.000000 -0.085649 0.000000 0.996325 1.000000 1.000000 1.000000
|
|
||||||
3551.528564 0.000000 2425.038086 0.000000 -0.218171 0.000000 0.975910 1.000000 1.000000 1.000000
|
|
||||||
3563.374756 0.000000 2432.805908 0.000000 -0.356855 0.000000 0.934160 1.000000 1.000000 1.000000
|
|
||||||
3572.640381 0.000000 2443.705322 0.000000 -0.274007 0.000000 0.961728 1.000000 1.000000 1.000000
|
|
||||||
3583.812988 0.000000 2451.291504 0.000000 -0.284878 0.000000 0.958564 1.000000 1.000000 1.000000
|
|
||||||
3596.201660 0.000000 2456.415283 0.000000 -0.211495 0.000000 0.977379 1.000000 1.000000 1.000000
|
|
||||||
3611.348389 0.000000 2459.948242 0.000000 0.066418 0.000000 0.997792 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_coast_foam_s"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="coast_foam_layer"
|
|
||||||
entity="env_coast_foam_s"
|
|
||||||
count=179
|
|
||||||
transform="2020.566284 0.000000 3363.593750 0.000000 0.229845 0.000000 0.973227 1.000000 1.000000 1.000000
|
|
||||||
1987.359497 0.000000 3352.523682 0.000000 -0.026135 0.000000 0.999658 1.000000 1.000000 1.000000
|
|
||||||
2283.258789 0.000000 3346.935791 0.000000 0.331613 0.000000 0.943416 1.000000 1.000000 1.000000
|
|
||||||
2282.776123 0.000000 3324.904541 0.000000 -0.992274 0.000000 0.124065 1.000000 1.000000 1.000000
|
|
||||||
1986.780396 0.000000 2970.521484 0.000000 0.972465 0.000000 0.233047 1.000000 1.000000 1.000000
|
|
||||||
1370.045410 0.000000 3528.012451 0.000000 0.889529 0.000000 0.456878 1.000000 1.000000 1.000000
|
|
||||||
1393.008911 0.000000 3545.452148 0.000000 0.905816 0.000000 0.423672 1.000000 1.000000 1.000000
|
|
||||||
1423.016113 0.000000 3565.824463 0.000000 0.894699 0.000000 0.446669 1.000000 1.000000 1.000000
|
|
||||||
1460.105347 0.000000 3587.590088 0.000000 -0.949083 0.000000 -0.315027 1.000000 1.000000 1.000000
|
|
||||||
1564.093018 0.000000 3635.753174 0.000000 -0.893259 0.000000 -0.449542 1.000000 1.000000 1.000000
|
|
||||||
1584.765381 0.000000 3660.843018 0.000000 -0.864957 0.000000 -0.501845 1.000000 1.000000 1.000000
|
|
||||||
1613.821411 0.000000 3697.808594 0.000000 0.075383 0.000000 0.997155 1.000000 1.000000 1.000000
|
|
||||||
1680.593750 0.000000 3807.802246 0.000000 -0.868972 0.000000 -0.494860 1.000000 1.000000 1.000000
|
|
||||||
1695.446045 0.000000 3823.328125 0.000000 -0.853953 0.000000 -0.520350 1.000000 1.000000 1.000000
|
|
||||||
1734.718262 0.000000 3857.467285 0.000000 -0.883024 0.000000 -0.469328 1.000000 1.000000 1.000000
|
|
||||||
1850.778320 0.000000 3983.893066 0.000000 0.937384 0.000000 0.348297 1.000000 1.000000 1.000000
|
|
||||||
1871.524414 0.000000 4008.937256 0.000000 -0.927479 0.000000 -0.373875 1.000000 1.000000 1.000000
|
|
||||||
1984.435547 0.000000 4042.825195 0.000000 -0.998080 0.000000 -0.061931 1.000000 1.000000 1.000000
|
|
||||||
2010.607422 0.000000 4048.708496 0.000000 0.988943 0.000000 0.148296 1.000000 1.000000 1.000000
|
|
||||||
2047.375610 0.000000 4043.534424 0.000000 0.987478 0.000000 -0.157759 1.000000 1.000000 1.000000
|
|
||||||
2101.378906 0.000000 4028.997803 0.000000 0.913917 0.000000 0.405901 1.000000 1.000000 1.000000
|
|
||||||
2120.113281 0.000000 4051.153564 0.000000 0.933277 0.000000 0.359159 1.000000 1.000000 1.000000
|
|
||||||
2151.339355 0.000000 4039.049805 0.000000 0.855581 0.000000 0.517669 1.000000 1.000000 1.000000
|
|
||||||
2142.250488 0.000000 4050.767822 0.000000 0.714358 0.000000 -0.699780 1.000000 1.000000 1.000000
|
|
||||||
2194.503906 0.000000 4058.463135 0.000000 -0.999806 0.000000 0.019709 1.000000 1.000000 1.000000
|
|
||||||
2225.242432 0.000000 4001.717285 0.000000 -0.996022 0.000000 0.089111 1.000000 1.000000 1.000000
|
|
||||||
2254.485596 0.000000 3993.690430 0.000000 0.985400 0.000000 -0.170253 1.000000 1.000000 1.000000
|
|
||||||
2339.191406 0.000000 3974.158936 0.000000 0.994678 0.000000 -0.103032 1.000000 1.000000 1.000000
|
|
||||||
772.210938 0.000000 2944.303467 0.000000 0.997246 0.000000 0.074169 1.000000 1.000000 1.000000
|
|
||||||
751.956970 0.000000 2944.573975 0.000000 0.990800 0.000000 0.135336 1.000000 1.000000 1.000000
|
|
||||||
737.094727 0.000000 3016.915039 0.000000 -0.480195 0.000000 0.877162 1.000000 1.000000 1.000000
|
|
||||||
244.537857 0.000000 3994.767578 0.000000 0.943971 0.000000 0.330028 1.000000 1.000000 1.000000
|
|
||||||
210.501129 0.000000 3969.069824 0.000000 0.934785 0.000000 0.355214 1.000000 1.000000 1.000000
|
|
||||||
231.278336 0.000000 3947.554443 0.000000 0.145620 0.000000 0.989341 1.000000 1.000000 1.000000
|
|
||||||
246.235001 0.000000 3930.658691 0.000000 -0.974335 0.000000 -0.225104 1.000000 1.000000 1.000000
|
|
||||||
223.682907 0.000000 3899.934570 0.000000 0.355375 0.000000 0.934724 1.000000 1.000000 1.000000
|
|
||||||
202.016266 0.000000 3848.476074 0.000000 0.830079 0.000000 0.557645 1.000000 1.000000 1.000000
|
|
||||||
293.533081 0.000000 3952.304932 0.000000 -0.505025 0.000000 0.863105 1.000000 1.000000 1.000000
|
|
||||||
518.054199 0.000000 3855.707520 0.000000 -0.268478 0.000000 0.963286 1.000000 1.000000 1.000000
|
|
||||||
438.197968 0.000000 3810.395264 0.000000 0.030761 0.000000 0.999527 1.000000 1.000000 1.000000
|
|
||||||
366.813385 0.000000 3790.474121 0.000000 0.090752 0.000000 0.995873 1.000000 1.000000 1.000000
|
|
||||||
658.271057 0.000000 3599.897461 0.000000 0.068854 0.000000 0.997627 1.000000 1.000000 1.000000
|
|
||||||
700.892883 0.000000 3607.363770 0.000000 -0.156881 0.000000 0.987617 1.000000 1.000000 1.000000
|
|
||||||
669.038025 0.000000 3620.237793 0.000000 -0.999497 0.000000 -0.031707 1.000000 1.000000 1.000000
|
|
||||||
673.976074 0.000000 3568.624756 0.000000 0.212576 0.000000 0.977145 1.000000 1.000000 1.000000
|
|
||||||
949.351196 0.000000 3451.658203 0.000000 0.795869 0.000000 0.605470 1.000000 1.000000 1.000000
|
|
||||||
238.461472 0.000000 1236.276733 0.000000 0.831590 0.000000 0.555390 1.000000 1.000000 1.000000
|
|
||||||
159.190048 0.000000 1197.268799 0.000000 0.332133 0.000000 0.943233 1.000000 1.000000 1.000000
|
|
||||||
137.605774 0.000000 1228.672974 0.000000 -0.513094 0.000000 0.858332 1.000000 1.000000 1.000000
|
|
||||||
1565.798096 0.000000 1633.701294 0.000000 -0.584998 0.000000 0.811035 1.000000 1.000000 1.000000
|
|
||||||
1506.634155 0.000000 1648.114014 0.000000 -0.995199 0.000000 -0.097870 1.000000 1.000000 1.000000
|
|
||||||
1476.780762 0.000000 1631.783325 0.000000 -0.993655 0.000000 -0.112467 1.000000 1.000000 1.000000
|
|
||||||
1172.191162 0.000000 1646.812378 0.000000 -0.960422 0.000000 0.278549 1.000000 1.000000 1.000000
|
|
||||||
1156.418457 0.000000 1646.614380 0.000000 -0.960422 0.000000 0.278549 1.000000 1.000000 1.000000
|
|
||||||
1142.228760 0.000000 1648.188232 0.000000 0.910030 0.000000 0.414542 1.000000 1.000000 1.000000
|
|
||||||
1064.158936 0.000000 1638.520386 0.000000 -0.999271 0.000000 -0.038188 1.000000 1.000000 1.000000
|
|
||||||
737.327393 0.000000 1582.187988 0.000000 0.996214 0.000000 0.086937 1.000000 1.000000 1.000000
|
|
||||||
748.576050 0.000000 1578.445679 0.000000 -0.968802 0.000000 0.247836 1.000000 1.000000 1.000000
|
|
||||||
816.730225 0.000000 1569.778687 0.000000 0.947952 0.000000 -0.318413 1.000000 1.000000 1.000000
|
|
||||||
827.680603 0.000000 1674.707520 0.000000 -0.002548 0.000000 0.999997 1.000000 1.000000 1.000000
|
|
||||||
837.456055 0.000000 1670.757202 0.000000 0.301268 0.000000 0.953539 1.000000 1.000000 1.000000
|
|
||||||
854.849426 0.000000 1675.963867 0.000000 -0.515026 0.000000 0.857174 1.000000 1.000000 1.000000
|
|
||||||
949.794312 0.000000 1779.888794 0.000000 -0.158350 0.000000 0.987383 1.000000 1.000000 1.000000
|
|
||||||
960.026917 0.000000 1784.809204 0.000000 -0.362919 0.000000 0.931821 1.000000 1.000000 1.000000
|
|
||||||
1061.943237 0.000000 1970.185669 0.000000 -0.074409 0.000000 0.997228 1.000000 1.000000 1.000000
|
|
||||||
1142.348022 0.000000 1820.586792 0.000000 -0.173720 0.000000 0.984795 1.000000 1.000000 1.000000
|
|
||||||
1150.910278 0.000000 1830.653442 0.000000 -0.641574 0.000000 0.767061 1.000000 1.000000 1.000000
|
|
||||||
1129.762085 0.000000 1821.763550 0.000000 0.256530 0.000000 0.966536 1.000000 1.000000 1.000000
|
|
||||||
1195.806519 0.000000 1855.411133 0.000000 0.218797 0.000000 0.975770 1.000000 1.000000 1.000000
|
|
||||||
1129.035156 0.000000 2028.988525 0.000000 0.869206 0.000000 -0.494449 1.000000 1.000000 1.000000
|
|
||||||
1130.761353 0.000000 2050.433594 0.000000 0.977129 0.000000 -0.212647 1.000000 1.000000 1.000000
|
|
||||||
1123.837280 0.000000 2062.070312 0.000000 0.908336 0.000000 -0.418241 1.000000 1.000000 1.000000
|
|
||||||
1119.265015 0.000000 2071.457764 0.000000 -0.780288 0.000000 0.625420 1.000000 1.000000 1.000000
|
|
||||||
1295.270386 0.000000 2082.875244 0.000000 -0.131748 0.000000 -0.991283 1.000000 1.000000 1.000000
|
|
||||||
1317.278931 0.000000 2092.335693 0.000000 -0.028271 0.000000 0.999600 1.000000 1.000000 1.000000
|
|
||||||
1342.023926 0.000000 2115.140381 0.000000 -0.407062 0.000000 0.913401 1.000000 1.000000 1.000000
|
|
||||||
1354.981079 0.000000 2125.842773 0.000000 -0.499054 0.000000 0.866571 1.000000 1.000000 1.000000
|
|
||||||
1440.541748 0.000000 2017.355591 0.000000 0.753215 0.000000 0.657775 1.000000 1.000000 1.000000
|
|
||||||
1444.139648 0.000000 2005.860962 0.000000 0.168068 0.000000 0.985775 1.000000 1.000000 1.000000
|
|
||||||
1448.540527 0.000000 1990.616455 0.000000 0.132649 0.000000 0.991163 1.000000 1.000000 1.000000
|
|
||||||
1445.340332 0.000000 1809.462524 0.000000 0.822038 0.000000 0.569432 1.000000 1.000000 1.000000
|
|
||||||
1467.411011 0.000000 1762.119873 0.000000 0.066936 0.000000 0.997757 1.000000 1.000000 1.000000
|
|
||||||
1482.666870 0.000000 1764.587646 0.000000 -0.432942 0.000000 0.901422 1.000000 1.000000 1.000000
|
|
||||||
1502.510742 0.000000 1777.643555 0.000000 0.287539 0.000000 0.957769 1.000000 1.000000 1.000000
|
|
||||||
1523.230957 0.000000 1872.847900 0.000000 -0.603577 0.000000 0.797305 1.000000 1.000000 1.000000
|
|
||||||
1697.558594 0.000000 1940.245605 0.000000 -0.454960 0.000000 -0.890512 1.000000 1.000000 1.000000
|
|
||||||
1720.942139 0.000000 1938.395508 0.000000 0.147153 0.000000 0.989114 1.000000 1.000000 1.000000
|
|
||||||
1944.664429 0.000000 1801.292847 0.000000 -0.716603 0.000000 0.697481 1.000000 1.000000 1.000000
|
|
||||||
1911.543823 0.000000 1829.291748 0.000000 -0.770732 0.000000 0.637159 1.000000 1.000000 1.000000
|
|
||||||
1716.450439 0.000000 2279.166016 0.000000 0.354373 0.000000 0.935104 1.000000 1.000000 1.000000
|
|
||||||
1808.248291 0.000000 2138.611572 0.000000 0.333196 0.000000 0.942858 1.000000 1.000000 1.000000
|
|
||||||
1854.061035 0.000000 2111.904053 0.000000 0.525627 0.000000 0.850715 1.000000 1.000000 1.000000
|
|
||||||
1891.546021 0.000000 2082.049316 0.000000 0.064637 0.000000 0.997909 1.000000 1.000000 1.000000
|
|
||||||
2027.135498 0.000000 2019.307373 0.000000 0.292125 0.000000 0.956380 1.000000 1.000000 1.000000
|
|
||||||
2382.993652 0.000000 1524.904907 0.000000 0.186823 0.000000 0.982394 1.000000 1.000000 1.000000
|
|
||||||
2393.496338 0.000000 1522.624634 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2966.044922 0.000000 1519.797119 0.000000 0.924312 0.000000 0.381637 1.000000 1.000000 1.000000
|
|
||||||
2969.060303 0.000000 1528.882812 0.000000 0.680253 0.000000 0.732977 1.000000 1.000000 1.000000
|
|
||||||
2984.118896 0.000000 1563.877319 0.000000 0.612637 0.000000 0.790364 1.000000 1.000000 1.000000
|
|
||||||
2620.350342 0.000000 1646.358643 0.000000 0.141068 0.000000 0.990000 1.000000 1.000000 1.000000
|
|
||||||
2602.937988 0.000000 1645.835083 0.000000 0.087048 0.000000 0.996204 1.000000 1.000000 1.000000
|
|
||||||
2438.487549 0.000000 1543.523193 0.000000 0.981077 0.000000 0.193620 1.000000 1.000000 1.000000
|
|
||||||
2407.730469 0.000000 1547.893433 0.000000 0.994144 0.000000 0.108060 1.000000 1.000000 1.000000
|
|
||||||
2388.858398 0.000000 1546.531372 0.000000 0.969999 0.000000 0.243110 1.000000 1.000000 1.000000
|
|
||||||
2398.420898 0.000000 1547.842651 0.000000 -0.999986 0.000000 -0.005314 1.000000 1.000000 1.000000
|
|
||||||
2353.248291 0.000000 1551.815308 0.000000 0.992724 0.000000 -0.120409 1.000000 1.000000 1.000000
|
|
||||||
2359.901855 0.000000 1553.361450 0.000000 0.895556 0.000000 0.444948 1.000000 1.000000 1.000000
|
|
||||||
2371.990723 0.000000 1548.078735 0.000000 -0.864563 0.000000 0.502524 1.000000 1.000000 1.000000
|
|
||||||
2573.515625 0.000000 1626.323486 0.000000 0.959679 0.000000 0.281098 1.000000 1.000000 1.000000
|
|
||||||
2522.684570 0.000000 1561.998169 0.000000 0.656352 0.000000 0.754455 1.000000 1.000000 1.000000
|
|
||||||
2524.588135 0.000000 1572.438110 0.000000 0.865497 0.000000 0.500913 1.000000 1.000000 1.000000
|
|
||||||
2300.899170 0.000000 1599.848145 0.000000 -0.962270 0.000000 0.272095 1.000000 1.000000 1.000000
|
|
||||||
2300.566406 0.000000 1640.076904 0.000000 -0.846464 0.000000 0.532447 1.000000 1.000000 1.000000
|
|
||||||
2292.453613 0.000000 1679.344727 0.000000 0.326829 0.000000 0.945083 1.000000 1.000000 1.000000
|
|
||||||
2332.075195 0.000000 1711.014282 0.000000 -0.320196 0.000000 -0.947351 1.000000 1.000000 1.000000
|
|
||||||
2353.701416 0.000000 1728.479370 0.000000 -0.689459 0.000000 0.724325 1.000000 1.000000 1.000000
|
|
||||||
2353.037109 0.000000 1696.042358 0.000000 -0.232205 0.000000 0.972667 1.000000 1.000000 1.000000
|
|
||||||
2371.403809 0.000000 1737.665161 0.000000 -0.983022 0.000000 0.183490 1.000000 1.000000 1.000000
|
|
||||||
2349.400391 0.000000 1773.122925 0.000000 -0.999320 0.000000 -0.036861 1.000000 1.000000 1.000000
|
|
||||||
2339.328369 0.000000 1773.070557 0.000000 0.982313 0.000000 -0.187247 1.000000 1.000000 1.000000
|
|
||||||
2326.123779 0.000000 1778.194824 0.000000 -0.995366 0.000000 0.096160 1.000000 1.000000 1.000000
|
|
||||||
2318.433838 0.000000 1782.618164 0.000000 -0.861201 0.000000 0.508264 1.000000 1.000000 1.000000
|
|
||||||
2259.055420 0.000000 1893.090820 0.000000 -0.808943 0.000000 0.587887 1.000000 1.000000 1.000000
|
|
||||||
2350.063721 0.000000 1880.354736 0.000000 0.391520 0.000000 0.920170 1.000000 1.000000 1.000000
|
|
||||||
2332.656738 0.000000 1880.853760 0.000000 -0.942145 0.000000 0.335205 1.000000 1.000000 1.000000
|
|
||||||
2378.945068 0.000000 1921.939087 0.000000 0.772038 0.000000 -0.635577 1.000000 1.000000 1.000000
|
|
||||||
2376.683838 0.000000 1911.424683 0.000000 -0.356940 0.000000 0.934127 1.000000 1.000000 1.000000
|
|
||||||
2456.762695 0.000000 1893.808105 0.000000 0.542590 0.000000 0.839998 1.000000 1.000000 1.000000
|
|
||||||
2455.458008 0.000000 1884.539673 0.000000 0.773612 0.000000 0.633660 1.000000 1.000000 1.000000
|
|
||||||
2449.287598 0.000000 1808.472656 0.000000 0.259684 0.000000 0.965694 1.000000 1.000000 1.000000
|
|
||||||
2467.403076 0.000000 1800.063965 0.000000 0.112220 0.000000 0.993683 1.000000 1.000000 1.000000
|
|
||||||
2477.526367 0.000000 1798.365601 0.000000 -0.073420 0.000000 0.997301 1.000000 1.000000 1.000000
|
|
||||||
2494.873047 0.000000 1799.416870 0.000000 0.387163 0.000000 0.922011 1.000000 1.000000 1.000000
|
|
||||||
2471.776123 0.000000 1774.063477 0.000000 0.712247 0.000000 0.701929 1.000000 1.000000 1.000000
|
|
||||||
2457.010010 0.000000 1773.582153 0.000000 0.997677 0.000000 -0.068128 1.000000 1.000000 1.000000
|
|
||||||
2451.528076 0.000000 1741.438232 0.000000 -0.404044 0.000000 -0.914740 1.000000 1.000000 1.000000
|
|
||||||
2446.149902 0.000000 1763.831421 0.000000 0.499622 0.000000 0.866243 1.000000 1.000000 1.000000
|
|
||||||
2376.604004 0.000000 1777.464478 0.000000 0.289000 0.000000 0.957329 1.000000 1.000000 1.000000
|
|
||||||
2369.412109 0.000000 1788.410156 0.000000 0.701823 0.000000 0.712351 1.000000 1.000000 1.000000
|
|
||||||
2396.272949 0.000000 1864.121826 0.000000 0.623004 0.000000 0.782219 1.000000 1.000000 1.000000
|
|
||||||
2417.555420 0.000000 1865.167358 0.000000 0.566075 0.000000 -0.824354 1.000000 1.000000 1.000000
|
|
||||||
2456.087158 0.000000 1894.874756 0.000000 0.463196 0.000000 0.886256 1.000000 1.000000 1.000000
|
|
||||||
2497.932129 0.000000 1742.177002 0.000000 0.522078 0.000000 0.852898 1.000000 1.000000 1.000000
|
|
||||||
2519.558105 0.000000 1730.888916 0.000000 0.082973 0.000000 0.996552 1.000000 1.000000 1.000000
|
|
||||||
2467.892090 0.000000 1707.094482 0.000000 0.999669 0.000000 -0.025728 1.000000 1.000000 1.000000
|
|
||||||
2458.949951 0.000000 1701.213135 0.000000 0.871966 0.000000 0.489566 1.000000 1.000000 1.000000
|
|
||||||
2515.092773 0.000000 1705.005981 0.000000 0.160045 0.000000 0.987110 1.000000 1.000000 1.000000
|
|
||||||
2529.239502 0.000000 1675.695190 0.000000 0.989477 0.000000 0.144689 1.000000 1.000000 1.000000
|
|
||||||
2528.853516 0.000000 1685.188965 0.000000 0.092549 0.000000 0.995708 1.000000 1.000000 1.000000
|
|
||||||
2522.453857 0.000000 1692.015747 0.000000 0.733478 0.000000 0.679713 1.000000 1.000000 1.000000
|
|
||||||
2524.816162 0.000000 1666.195435 0.000000 0.579714 0.000000 0.814820 1.000000 1.000000 1.000000
|
|
||||||
2503.117188 0.000000 1669.800781 0.000000 0.502686 0.000000 0.864469 1.000000 1.000000 1.000000
|
|
||||||
2509.537598 0.000000 1659.929932 0.000000 0.633451 0.000000 0.773783 1.000000 1.000000 1.000000
|
|
||||||
2487.135742 0.000000 1683.167725 0.000000 0.658398 0.000000 0.752670 1.000000 1.000000 1.000000
|
|
||||||
2578.724854 0.000000 1604.110596 0.000000 -0.631749 0.000000 0.775173 1.000000 1.000000 1.000000
|
|
||||||
2448.685059 0.000000 1546.652344 0.000000 -0.996849 0.000000 0.079319 1.000000 1.000000 1.000000
|
|
||||||
2427.497803 0.000000 1652.324219 0.000000 0.465088 0.000000 0.885264 1.000000 1.000000 1.000000
|
|
||||||
2397.179443 0.000000 1722.124268 0.000000 -0.931667 0.000000 0.363313 1.000000 1.000000 1.000000
|
|
||||||
2405.019043 0.000000 1712.464478 0.000000 -0.761227 0.000000 0.648485 1.000000 1.000000 1.000000
|
|
||||||
2414.695312 0.000000 1702.390625 0.000000 -0.990594 0.000000 0.136833 1.000000 1.000000 1.000000
|
|
||||||
2360.149658 0.000000 1728.099365 0.000000 0.336043 0.000000 0.941847 1.000000 1.000000 1.000000
|
|
||||||
2423.059082 0.000000 1633.204712 0.000000 0.381500 0.000000 0.924369 1.000000 1.000000 1.000000
|
|
||||||
2378.412109 0.000000 1625.282227 0.000000 -0.146987 0.000000 0.989138 1.000000 1.000000 1.000000
|
|
||||||
2387.870361 0.000000 1650.674072 0.000000 0.494963 0.000000 0.868914 1.000000 1.000000 1.000000
|
|
||||||
2373.467041 0.000000 1693.688843 0.000000 -0.551760 0.000000 0.834003 1.000000 1.000000 1.000000
|
|
||||||
2441.384521 0.000000 1667.940308 0.000000 -0.855881 0.000000 0.517173 1.000000 1.000000 1.000000
|
|
||||||
3066.658447 0.000000 1038.998047 0.000000 0.300927 0.000000 0.953647 1.000000 1.000000 1.000000
|
|
||||||
3734.876709 0.000000 1105.657837 0.000000 -0.406491 0.000000 0.913655 1.000000 1.000000 1.000000
|
|
||||||
3746.850586 0.000000 1138.260132 0.000000 -0.658490 0.000000 0.752589 1.000000 1.000000 1.000000
|
|
||||||
3742.362061 0.000000 1159.571167 0.000000 -0.735570 0.000000 0.677449 1.000000 1.000000 1.000000
|
|
||||||
3746.242920 0.000000 1176.963135 0.000000 -0.620279 0.000000 0.784382 1.000000 1.000000 1.000000
|
|
||||||
3739.408203 0.000000 1188.404175 0.000000 0.989016 0.000000 -0.147807 1.000000 1.000000 1.000000
|
|
||||||
3732.391113 0.000000 1194.879639 0.000000 -0.865390 0.000000 0.501098 1.000000 1.000000 1.000000
|
|
||||||
3689.780273 0.000000 1200.919067 0.000000 0.974081 0.000000 0.226201 1.000000 1.000000 1.000000
|
|
||||||
3685.422119 0.000000 1359.952759 0.000000 0.841586 0.000000 0.540123 1.000000 1.000000 1.000000
|
|
||||||
4231.677246 0.000000 1186.724121 0.000000 -0.064165 0.000000 0.997939 1.000000 1.000000 1.000000
|
|
||||||
4249.056152 0.000000 1185.936768 0.000000 -0.257267 0.000000 0.966340 1.000000 1.000000 1.000000
|
|
||||||
4258.995605 0.000000 1191.042114 0.000000 -0.135930 0.000000 0.990718 1.000000 1.000000 1.000000
|
|
||||||
6024.006836 0.000000 973.782043 0.000000 -0.294284 0.000000 0.955718 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
File diff suppressed because it is too large
Load diff
|
|
@ -1,24 +0,0 @@
|
||||||
layer={
|
|
||||||
name="coast_foam_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category=""
|
|
||||||
masks="medium|high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="env_effect_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=8
|
|
||||||
category=""
|
|
||||||
masks="high"
|
|
||||||
visibility_tags="realms"
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="env_effect_mountains_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category=""
|
|
||||||
masks="high"
|
|
||||||
visibility_tags="realms"
|
|
||||||
}
|
|
||||||
|
|
@ -1,805 +0,0 @@
|
||||||
object={
|
|
||||||
name="env_desert_ambient_close"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_desert_plains_ambient"
|
|
||||||
count=18
|
|
||||||
transform="5459.463379 0.000000 1891.604248 0.000000 0.000000 0.000000 1.000000 0.552173 0.552173 0.552173
|
|
||||||
5551.369141 0.000000 1907.295898 0.000000 0.000000 0.000000 1.000000 0.297986 0.297986 0.297986
|
|
||||||
5630.522461 0.000000 1921.134277 0.000000 0.000000 0.000000 1.000000 0.312842 0.312842 0.312842
|
|
||||||
5436.205566 0.000000 1947.849731 0.000000 0.000000 0.000000 1.000000 0.283594 0.283594 0.283594
|
|
||||||
5461.001465 0.000000 1787.006958 0.000000 0.000000 0.000000 1.000000 0.242018 0.242018 0.242018
|
|
||||||
5443.491211 0.000000 1820.069336 0.000000 0.000000 0.000000 1.000000 0.251880 0.251880 0.251880
|
|
||||||
5890.269043 0.000000 2329.384277 0.000000 0.000000 0.000000 1.000000 0.637500 0.637500 0.637500
|
|
||||||
5935.734863 1.051514 2339.483643 0.000000 0.000000 0.000000 1.000000 0.809375 0.809375 0.809375
|
|
||||||
6098.912598 0.000000 2288.814941 0.000000 0.000000 0.000000 1.000000 1.088477 1.088477 1.088477
|
|
||||||
6162.464844 0.000000 2333.692139 0.000000 0.000000 0.000000 1.000000 0.864160 0.864160 0.864160
|
|
||||||
6162.296387 0.000000 2218.608154 0.000000 0.000000 0.000000 1.000000 0.236219 0.236219 0.236219
|
|
||||||
6303.719727 0.000000 2237.951172 0.000000 0.000000 0.000000 1.000000 0.325684 0.325684 0.325684
|
|
||||||
6281.343262 0.000000 2304.405518 0.000000 0.000000 0.000000 1.000000 0.289404 0.289404 0.289404
|
|
||||||
6307.213379 0.000000 2268.338379 0.000000 0.000000 0.000000 1.000000 0.273193 0.273193 0.273193
|
|
||||||
6299.012695 0.000000 2295.916260 0.000000 0.000000 0.000000 1.000000 0.252507 0.252507 0.252507
|
|
||||||
4561.037598 0.000000 2453.812012 0.000000 0.000000 0.000000 1.000000 1.406836 1.406836 1.406836
|
|
||||||
4447.479492 0.000000 2472.533203 0.000000 0.000000 0.000000 1.000000 1.696492 1.696492 1.696492
|
|
||||||
4316.586914 0.000000 2527.282227 0.000000 0.000000 0.000000 1.000000 1.411133 1.411133 1.411133
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_desert_mountains"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_mountains_layer"
|
|
||||||
entity="env_desert_mountains"
|
|
||||||
count=139
|
|
||||||
transform="775.308350 -0.837280 1708.707886 0.000000 0.000000 0.000000 1.000000 0.448315 0.448315 0.448315
|
|
||||||
802.890625 1.222046 1703.966431 0.000000 0.000000 0.000000 1.000000 0.344629 0.344629 0.344629
|
|
||||||
375.819794 0.051819 418.680481 0.000000 0.000000 0.000000 1.000000 0.471188 0.471188 0.471188
|
|
||||||
381.445251 0.000000 366.929108 0.000000 0.000000 0.000000 1.000000 0.524271 0.524271 0.524271
|
|
||||||
392.364227 1.717834 309.431915 0.000000 0.000000 0.000000 1.000000 0.415286 0.415286 0.415286
|
|
||||||
1586.597290 0.923645 292.839447 0.000000 0.000000 0.000000 1.000000 0.685159 0.685159 0.685159
|
|
||||||
1856.005371 0.673035 335.611420 0.000000 0.000000 0.000000 1.000000 0.533850 0.533850 0.533850
|
|
||||||
2121.014648 0.000000 380.232758 0.000000 0.000000 0.000000 1.000000 0.568030 0.568030 0.568030
|
|
||||||
3260.866211 0.000000 471.638794 0.000000 0.000000 0.000000 1.000000 0.586319 0.586319 0.586319
|
|
||||||
3299.452881 0.000000 538.861511 0.000000 0.000000 0.000000 1.000000 0.299982 0.299982 0.299982
|
|
||||||
3268.445068 0.000000 574.481812 0.000000 0.000000 0.000000 1.000000 0.285730 0.285730 0.285730
|
|
||||||
3149.071045 0.000000 657.428833 0.000000 0.000000 0.000000 1.000000 0.263580 0.263580 0.263580
|
|
||||||
3034.322021 0.000000 839.589478 0.000000 0.000000 0.000000 1.000000 0.486504 0.486504 0.486504
|
|
||||||
1125.991699 0.000000 356.679169 0.000000 0.000000 0.000000 1.000000 0.335573 0.335573 0.335573
|
|
||||||
794.599060 0.000000 453.239258 0.000000 0.000000 0.000000 1.000000 0.493285 0.493285 0.493285
|
|
||||||
520.925903 0.000000 1245.199463 0.000000 0.000000 0.000000 1.000000 0.446889 0.446889 0.446889
|
|
||||||
565.938843 0.000000 1280.193726 0.000000 0.137805 0.000000 0.990459 0.608395 0.608395 0.608395
|
|
||||||
605.098328 0.000000 1310.975464 0.000000 0.000000 0.000000 1.000000 0.240674 0.240674 0.240674
|
|
||||||
550.706421 -0.932129 1341.233398 0.000000 0.000000 0.000000 1.000000 0.403040 0.403040 0.403040
|
|
||||||
689.648499 0.000000 1389.789551 0.000000 0.000000 0.000000 1.000000 0.724780 0.724780 0.724780
|
|
||||||
736.771057 0.000000 1492.648315 0.000000 0.000000 0.000000 1.000000 0.548730 0.548730 0.548730
|
|
||||||
671.684570 -0.303955 1578.677734 0.000000 0.000000 0.000000 1.000000 0.325818 0.325818 0.325818
|
|
||||||
710.624390 0.000000 1537.900024 0.000000 0.000000 0.000000 1.000000 0.254944 0.254944 0.254944
|
|
||||||
628.672729 0.000000 1483.207153 0.000000 0.000000 0.000000 1.000000 0.265625 0.265625 0.265625
|
|
||||||
709.928406 -0.557861 1559.497559 0.000000 0.000000 0.000000 1.000000 0.248340 0.248340 0.248340
|
|
||||||
628.856934 -0.563843 1277.465332 0.000000 0.000000 0.000000 1.000000 0.268420 0.268420 0.268420
|
|
||||||
1138.459839 0.000000 1464.078369 0.000000 0.000000 0.000000 1.000000 0.437378 0.437378 0.437378
|
|
||||||
1359.801636 0.000000 1513.491089 0.000000 0.000000 0.000000 1.000000 0.393957 0.393957 0.393957
|
|
||||||
1268.180176 0.000000 1564.607422 0.000000 0.000000 0.000000 1.000000 0.270215 0.270215 0.270215
|
|
||||||
1324.665405 0.784058 1611.305786 0.000000 0.000000 0.000000 1.000000 0.279565 0.279565 0.279565
|
|
||||||
1253.697388 0.000000 1599.305908 0.000000 0.000000 0.000000 1.000000 0.217859 0.217859 0.217859
|
|
||||||
1230.270996 0.000000 1615.651489 0.000000 0.000000 0.000000 1.000000 0.264062 0.264062 0.264062
|
|
||||||
1116.812988 0.327026 1617.789062 0.000000 0.000000 0.000000 1.000000 0.195154 0.195154 0.195154
|
|
||||||
994.786804 0.000000 1592.144409 0.000000 0.000000 0.000000 1.000000 0.160718 0.160718 0.160718
|
|
||||||
1108.567993 0.000000 1587.226685 0.000000 0.000000 0.000000 1.000000 0.160718 0.160718 0.160718
|
|
||||||
1137.512207 0.000000 1595.625366 0.000000 0.000000 0.000000 1.000000 0.160718 0.160718 0.160718
|
|
||||||
1079.770264 0.000000 1618.855957 0.000000 0.000000 0.000000 1.000000 0.160718 0.160718 0.160718
|
|
||||||
822.810364 0.000000 376.718872 0.000000 0.000000 0.000000 1.000000 0.684759 0.684759 0.684759
|
|
||||||
1016.363464 -0.919861 166.763062 0.000000 0.000000 0.000000 1.000000 0.213333 0.213333 0.213333
|
|
||||||
1048.284302 -0.919861 189.145294 0.000000 0.000000 0.000000 1.000000 0.213333 0.213333 0.213333
|
|
||||||
1090.586182 0.000000 165.620819 0.000000 0.000000 0.000000 1.000000 0.213333 0.213333 0.213333
|
|
||||||
3410.028809 1.027893 583.706177 0.000000 0.000000 0.000000 1.000000 0.472009 0.472009 0.472009
|
|
||||||
3394.926514 0.000000 624.789246 0.000000 0.000000 0.000000 1.000000 0.356018 0.356018 0.356018
|
|
||||||
2861.727295 -0.130005 1235.499878 0.000000 0.000000 0.000000 1.000000 0.277991 0.277991 0.277991
|
|
||||||
2899.250977 -0.130005 1208.345337 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3090.663574 -0.130005 1082.318726 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3258.248291 -0.130005 1004.598816 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3235.216797 -0.130005 890.076355 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3283.126953 -0.130005 838.051514 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3307.573730 -0.130005 806.098206 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3322.286133 -1.111389 778.160034 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3350.072021 -1.111389 746.394348 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
3368.265625 0.882874 713.224365 0.000000 0.000000 0.000000 1.000000 0.526409 0.526409 0.526409
|
|
||||||
4041.522949 0.000000 1068.856812 0.000000 0.000000 0.000000 1.000000 0.353748 0.353748 0.353748
|
|
||||||
3026.772461 -0.378906 1532.742310 0.000000 0.000000 0.000000 1.000000 0.221167 0.221167 0.221167
|
|
||||||
3019.341309 0.000000 1525.276489 0.000000 0.000000 0.000000 1.000000 0.166528 0.166528 0.166528
|
|
||||||
2992.235352 0.000000 1531.732666 0.000000 0.000000 0.000000 1.000000 0.166528 0.166528 0.166528
|
|
||||||
3001.291260 0.000000 1546.444092 0.000000 0.000000 0.000000 1.000000 0.166528 0.166528 0.166528
|
|
||||||
3461.199463 3.036987 1695.005615 0.000000 0.000000 0.000000 1.000000 0.578479 0.578479 0.578479
|
|
||||||
3405.794678 0.950562 1739.659546 0.000000 0.000000 0.000000 1.000000 0.431873 0.431873 0.431873
|
|
||||||
3377.130859 0.000000 1800.303589 0.000000 0.000000 0.000000 1.000000 0.623132 0.623132 0.623132
|
|
||||||
3275.534668 0.000000 1827.188599 0.000000 0.000000 0.000000 1.000000 0.338953 0.338953 0.338953
|
|
||||||
3551.958496 0.000000 1829.275391 0.000000 0.000000 0.000000 1.000000 0.226855 0.226855 0.226855
|
|
||||||
3566.405273 -0.597290 1855.562012 0.000000 0.000000 0.000000 1.000000 0.141367 0.141367 0.141367
|
|
||||||
3731.985352 1.348633 1570.792358 0.000000 0.000000 0.000000 1.000000 0.527441 0.527441 0.527441
|
|
||||||
3870.657715 -0.900757 1354.990601 0.000000 0.000000 0.000000 1.000000 0.508630 0.508630 0.508630
|
|
||||||
3801.326416 -0.074219 1331.541748 0.000000 0.000000 0.000000 1.000000 0.539233 0.539233 0.539233
|
|
||||||
3878.058838 0.000000 1281.760620 0.000000 0.000000 0.000000 1.000000 0.499768 0.499768 0.499768
|
|
||||||
3959.757324 0.000000 1328.334839 0.000000 0.000000 0.000000 1.000000 0.384802 0.384802 0.384802
|
|
||||||
3981.085693 0.615479 1617.416748 0.000000 0.000000 0.000000 1.000000 0.298071 0.298071 0.298071
|
|
||||||
3976.620605 0.615479 1630.774292 0.000000 0.000000 0.000000 1.000000 0.298071 0.298071 0.298071
|
|
||||||
3682.895020 0.000000 1735.815674 0.000000 0.000000 0.000000 1.000000 0.352063 0.352063 0.352063
|
|
||||||
3729.941162 0.597168 1712.117065 0.000000 0.000000 0.000000 1.000000 0.276819 0.276819 0.276819
|
|
||||||
3761.572998 0.000000 1714.014526 0.000000 0.000000 0.000000 1.000000 0.268115 0.268115 0.268115
|
|
||||||
3789.639648 0.000000 1753.369995 0.000000 0.000000 0.000000 1.000000 0.284729 0.284729 0.284729
|
|
||||||
3804.213135 1.421997 1767.298340 0.000000 0.000000 0.000000 1.000000 0.225977 0.225977 0.225977
|
|
||||||
3871.023926 0.000000 1813.381104 0.000000 0.000000 0.000000 1.000000 0.239978 0.239978 0.239978
|
|
||||||
3884.288086 1.209595 1828.062866 0.000000 0.000000 0.000000 1.000000 0.213806 0.213806 0.213806
|
|
||||||
3919.602051 0.000000 1833.415283 0.000000 0.000000 0.000000 1.000000 0.155676 0.155676 0.155676
|
|
||||||
3934.940918 0.904053 1834.757446 0.000000 0.000000 0.000000 1.000000 0.204199 0.204199 0.204199
|
|
||||||
3991.512695 0.388428 1868.909546 0.000000 0.000000 0.000000 1.000000 0.183093 0.183093 0.183093
|
|
||||||
4013.974609 0.000000 1814.345459 0.000000 0.000000 0.000000 1.000000 0.208643 0.208643 0.208643
|
|
||||||
4057.579590 0.000000 1826.987915 0.000000 0.000000 0.000000 1.000000 0.236023 0.236023 0.236023
|
|
||||||
4070.927734 0.000000 1815.107910 0.000000 0.000000 0.000000 1.000000 0.155371 0.155371 0.155371
|
|
||||||
4448.124023 0.000000 1327.004272 0.000000 0.000000 0.000000 1.000000 0.308215 0.308215 0.308215
|
|
||||||
4442.405762 0.000000 1298.766602 0.000000 0.000000 0.000000 1.000000 0.252710 0.252710 0.252710
|
|
||||||
4493.115234 0.664185 1327.417236 0.000000 0.000000 0.000000 1.000000 0.273825 0.273825 0.273825
|
|
||||||
4496.933594 0.701416 1346.186523 0.000000 0.000000 0.000000 1.000000 0.290991 0.290991 0.290991
|
|
||||||
4498.179688 0.000000 1363.678833 0.000000 0.000000 0.000000 1.000000 0.162781 0.162781 0.162781
|
|
||||||
4480.238281 0.816650 1408.688232 0.000000 0.000000 0.000000 1.000000 0.394958 0.394958 0.394958
|
|
||||||
4480.909668 1.739868 1436.355347 0.000000 0.000000 0.000000 1.000000 0.241467 0.241467 0.241467
|
|
||||||
4471.496094 0.427246 1469.752930 0.000000 0.000000 0.000000 1.000000 0.407288 0.407288 0.407288
|
|
||||||
4589.020996 0.000000 1488.288330 0.000000 0.000000 0.000000 1.000000 0.816284 0.816284 0.816284
|
|
||||||
4593.654785 0.000000 1531.123169 0.000000 0.000000 0.000000 1.000000 0.670483 0.670483 0.670483
|
|
||||||
4598.354980 0.000000 1579.380615 0.000000 0.000000 0.000000 1.000000 0.580518 0.580518 0.580518
|
|
||||||
4572.541504 1.757080 1649.178467 0.000000 0.000000 0.000000 1.000000 0.469641 0.469641 0.469641
|
|
||||||
4531.761719 0.000000 1564.780396 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4479.030762 0.808716 1557.726562 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4523.262695 0.000000 1594.303589 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4435.444824 0.000000 1645.418457 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4446.354492 0.000000 1685.468872 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4312.762695 0.000000 1612.247070 0.000000 0.000000 0.000000 1.000000 0.440405 0.440405 0.440405
|
|
||||||
4234.991699 0.000000 1673.503296 0.000000 0.000000 0.000000 1.000000 0.453894 0.453894 0.453894
|
|
||||||
4361.502930 0.000000 1706.779419 0.000000 0.000000 0.000000 1.000000 0.504626 0.504626 0.504626
|
|
||||||
4341.590332 2.586670 1774.645386 0.000000 0.000000 0.000000 1.000000 0.558643 0.558643 0.558643
|
|
||||||
4412.404297 0.000000 1789.030762 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4497.396973 0.000000 1746.633423 0.000000 0.000000 0.000000 1.000000 0.713416 0.713416 0.713416
|
|
||||||
4454.233398 1.350952 1742.945923 0.000000 0.000000 0.000000 1.000000 0.426990 0.426990 0.426990
|
|
||||||
4553.681641 0.000000 1689.853394 0.000000 0.000000 0.000000 1.000000 0.385522 0.385522 0.385522
|
|
||||||
4605.489258 0.000000 1726.630859 0.000000 0.000000 0.000000 1.000000 0.443201 0.443201 0.443201
|
|
||||||
4557.001953 0.000000 1731.689331 0.000000 0.000000 0.000000 1.000000 0.561340 0.561340 0.561340
|
|
||||||
4577.979004 0.000000 1799.327759 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4622.080078 1.583496 1831.987549 0.000000 0.000000 0.000000 1.000000 0.515308 0.515308 0.515308
|
|
||||||
4559.632812 3.157715 1856.095581 0.000000 0.000000 0.000000 1.000000 0.675073 0.675073 0.675073
|
|
||||||
4502.426270 0.000000 1793.478027 0.000000 0.000000 0.000000 1.000000 0.370972 0.370972 0.370972
|
|
||||||
4670.172852 2.486572 1886.965088 0.000000 0.000000 0.000000 1.000000 0.491577 0.491577 0.491577
|
|
||||||
5108.149414 0.000000 1772.977051 0.000000 0.000000 0.000000 1.000000 0.647778 0.647778 0.647778
|
|
||||||
5149.885742 0.000000 1769.960327 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5078.615234 0.000000 1863.828125 0.000000 0.000000 0.000000 1.000000 0.553625 0.553625 0.553625
|
|
||||||
5121.894531 0.000000 1824.527954 0.000000 0.000000 0.000000 1.000000 0.464294 0.464294 0.464294
|
|
||||||
5156.118164 0.000000 1898.078613 0.000000 0.000000 0.000000 1.000000 0.704614 0.704614 0.704614
|
|
||||||
5229.243164 0.000000 1934.987305 0.000000 0.000000 0.000000 1.000000 0.605664 0.605664 0.605664
|
|
||||||
5286.017578 2.377075 1968.771118 0.000000 0.000000 0.000000 1.000000 1.249927 1.249927 1.249927
|
|
||||||
5347.750977 1.734253 1999.505737 0.000000 0.000000 0.000000 1.000000 1.320081 1.320081 1.320081
|
|
||||||
5333.673340 0.000000 1949.129761 0.000000 0.000000 0.000000 1.000000 0.661536 0.661536 0.661536
|
|
||||||
5452.939941 0.000000 2116.046143 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5541.334473 0.828613 2143.954346 0.000000 0.000000 0.000000 1.000000 0.470508 0.470508 0.470508
|
|
||||||
5620.071777 0.000000 2165.113281 0.000000 0.000000 0.000000 1.000000 0.347656 0.347656 0.347656
|
|
||||||
5894.521484 1.091064 2189.614990 0.000000 0.000000 0.000000 1.000000 0.367312 0.367312 0.367312
|
|
||||||
5868.600586 1.091064 2211.447998 0.000000 0.000000 0.000000 1.000000 0.367312 0.367312 0.367312
|
|
||||||
5844.285645 1.091064 2212.152588 0.000000 0.000000 0.000000 1.000000 0.367312 0.367312 0.367312
|
|
||||||
5845.644531 1.770508 2179.831787 0.000000 0.000000 0.000000 1.000000 0.367312 0.367312 0.367312
|
|
||||||
5819.081055 1.770508 2191.385254 0.000000 0.000000 0.000000 1.000000 0.367312 0.367312 0.367312
|
|
||||||
5829.388672 -0.663574 2125.803467 0.000000 0.000000 0.000000 1.000000 0.305434 0.305434 0.305434
|
|
||||||
5763.437988 -0.663574 2146.192383 0.000000 0.000000 0.000000 1.000000 0.276416 0.276416 0.276416
|
|
||||||
5708.643555 -0.663574 2192.295166 0.000000 0.000000 0.000000 1.000000 0.276416 0.276416 0.276416
|
|
||||||
5652.940918 0.000000 2170.146729 0.000000 0.000000 0.000000 1.000000 0.276416 0.276416 0.276416
|
|
||||||
4510.267578 1.328857 2264.759277 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4475.141602 0.000000 2321.049072 0.000000 0.000000 0.000000 1.000000 0.578418 0.578418 0.578418
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_desert_plains"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_desert_plains"
|
|
||||||
count=15
|
|
||||||
transform="380.762756 0.000000 636.083801 0.000000 0.000000 0.000000 1.000000 0.741217 0.741217 0.741217
|
|
||||||
3405.906738 0.000000 1175.281250 0.000000 0.000000 0.000000 1.000000 0.671313 0.671313 0.671313
|
|
||||||
3431.007080 0.000000 1120.045776 0.000000 0.000000 0.000000 1.000000 0.665503 0.665503 0.665503
|
|
||||||
3414.803955 0.000000 1146.884766 0.000000 0.000000 0.000000 1.000000 0.534302 0.534302 0.534302
|
|
||||||
3454.817139 0.000000 1007.740417 0.000000 0.000000 0.000000 1.000000 0.722021 0.722021 0.722021
|
|
||||||
4743.164551 0.000000 1443.249390 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4788.098145 0.000000 1471.978882 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4613.948242 0.000000 1327.322998 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4624.004883 0.000000 1279.230713 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4259.658691 0.000000 1484.735962 0.000000 0.000000 0.000000 1.000000 0.667493 0.667493 0.667493
|
|
||||||
4249.641113 0.000000 1872.042114 0.000000 0.000000 0.000000 1.000000 0.711273 0.711273 0.711273
|
|
||||||
3904.614502 0.000000 2420.605225 0.000000 0.000000 0.000000 1.000000 0.714624 0.714624 0.714624
|
|
||||||
4766.006348 0.000000 2383.659424 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5802.192871 0.000000 2329.054932 0.000000 0.000000 0.000000 1.000000 0.636865 0.636865 0.636865
|
|
||||||
5377.431641 0.000000 1801.399780 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_desert_plains_ambient"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_desert_plains_ambient"
|
|
||||||
count=99
|
|
||||||
transform="235.835510 0.000000 948.768127 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
222.681961 0.000000 864.556091 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
253.601166 0.000000 1025.021240 0.000000 0.000000 0.000000 1.000000 0.955786 0.955786 0.955786
|
|
||||||
313.405426 0.000000 1134.953369 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
181.545670 0.000000 909.240173 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
449.452362 -0.242310 897.531433 0.000000 0.000000 0.000000 1.000000 1.815253 1.815253 1.815253
|
|
||||||
630.685303 0.000000 844.785583 0.000000 0.000000 0.000000 1.000000 2.668341 2.668341 2.668341
|
|
||||||
608.178223 0.000000 1055.652954 0.000000 0.000000 0.000000 1.000000 2.037744 2.037744 2.037744
|
|
||||||
951.118103 0.000000 811.411682 0.000000 0.000000 0.000000 1.000000 2.198291 2.198291 2.198291
|
|
||||||
863.019653 0.000000 979.207764 0.000000 0.000000 0.000000 1.000000 2.171826 2.171826 2.171826
|
|
||||||
1051.690186 0.000000 1300.904175 0.000000 0.000000 0.000000 1.000000 2.078748 2.078748 2.078748
|
|
||||||
937.016235 0.000000 1278.712280 0.000000 0.000000 0.000000 1.000000 1.765440 1.765440 1.765440
|
|
||||||
1356.132202 0.000000 1023.640808 0.000000 0.000000 0.000000 1.000000 2.440082 2.440082 2.440082
|
|
||||||
1407.069580 0.000000 1285.926392 0.000000 0.000000 0.000000 1.000000 1.757678 1.757678 1.757678
|
|
||||||
1283.235107 0.000000 1398.041748 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
715.574341 0.000000 1245.102417 0.000000 0.000000 0.000000 1.000000 0.671838 0.671838 0.671838
|
|
||||||
560.582703 0.000000 1206.916992 0.000000 0.000000 0.000000 1.000000 0.475837 0.475837 0.475837
|
|
||||||
484.149994 0.000000 1183.513306 0.000000 0.000000 0.000000 1.000000 0.511557 0.511557 0.511557
|
|
||||||
1325.079102 0.000000 691.069397 0.000000 0.000000 0.000000 1.000000 1.828168 1.828168 1.828168
|
|
||||||
1587.491577 0.000000 814.929871 0.000000 0.000000 0.000000 1.000000 1.841754 1.841754 1.841754
|
|
||||||
1675.619263 0.000000 588.902710 0.000000 0.000000 0.000000 1.000000 1.221500 1.221500 1.221500
|
|
||||||
1912.730225 0.000000 693.510803 0.000000 0.000000 0.000000 1.000000 1.889435 1.889435 1.889435
|
|
||||||
1763.812256 0.000000 939.333862 0.000000 0.000000 0.000000 1.000000 1.038013 1.038013 1.038013
|
|
||||||
1696.227905 0.000000 1178.525757 0.000000 0.000000 0.000000 1.000000 1.542456 1.542456 1.542456
|
|
||||||
1932.554810 0.000000 1135.950317 0.000000 0.000000 0.000000 1.000000 0.716504 0.716504 0.716504
|
|
||||||
2045.260010 0.000000 965.701416 0.000000 0.000000 0.000000 1.000000 2.235785 2.235785 2.235785
|
|
||||||
2279.842773 0.000000 746.314148 0.000000 0.000000 0.000000 1.000000 2.690900 2.690900 2.690900
|
|
||||||
2504.344238 0.000000 790.695312 0.000000 0.000000 0.000000 1.000000 3.127435 3.127435 3.127435
|
|
||||||
2407.573975 0.000000 1033.682129 0.000000 0.000000 0.000000 1.000000 2.224841 2.224841 2.224841
|
|
||||||
3096.971436 0.000000 94.629547 0.000000 0.000000 0.000000 1.000000 0.636585 0.636585 0.636585
|
|
||||||
3474.769531 0.000000 302.361420 0.000000 0.000000 0.000000 1.000000 0.841418 0.841418 0.841418
|
|
||||||
3659.311279 0.000000 365.749329 0.000000 0.000000 0.000000 1.000000 0.361235 0.361235 0.361235
|
|
||||||
3527.307373 0.000000 275.451050 0.000000 0.000000 0.000000 1.000000 0.972903 0.972903 0.972903
|
|
||||||
2645.522461 0.000000 1120.439575 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2767.062500 0.000000 1189.085205 0.000000 0.000000 0.000000 1.000000 0.611597 0.611597 0.611597
|
|
||||||
2765.830566 0.000000 836.596497 0.000000 0.000000 0.000000 1.000000 0.667139 0.667139 0.667139
|
|
||||||
2878.604492 0.000000 874.136902 0.000000 0.000000 0.000000 1.000000 0.672772 0.672772 0.672772
|
|
||||||
2834.711914 0.000000 729.569885 0.000000 0.000000 0.000000 1.000000 0.545020 0.545020 0.545020
|
|
||||||
2687.249023 0.000000 581.326477 0.000000 0.000000 0.000000 1.000000 1.145217 1.145217 1.145217
|
|
||||||
2580.817383 0.000000 583.869263 0.000000 0.000000 0.000000 1.000000 0.368042 0.368042 0.368042
|
|
||||||
2953.906250 0.000000 598.641541 0.000000 0.000000 0.000000 1.000000 0.644995 0.644995 0.644995
|
|
||||||
3022.203125 0.000000 692.499695 0.000000 0.000000 0.000000 1.000000 0.469543 0.469543 0.469543
|
|
||||||
2863.662842 0.000000 1042.460083 0.000000 0.000000 0.000000 1.000000 0.423084 0.423084 0.423084
|
|
||||||
2947.198975 0.000000 991.706543 0.000000 0.000000 0.000000 1.000000 0.329249 0.329249 0.329249
|
|
||||||
2894.590820 0.000000 959.180542 0.000000 0.000000 0.000000 1.000000 0.220822 0.220822 0.220822
|
|
||||||
2961.648438 0.000000 779.839478 0.000000 0.000000 0.000000 1.000000 0.220822 0.220822 0.220822
|
|
||||||
2957.141602 0.000000 745.436829 0.000000 0.000000 0.000000 1.000000 0.220822 0.220822 0.220822
|
|
||||||
3108.066162 0.000000 712.505310 0.000000 0.000000 0.000000 1.000000 0.220822 0.220822 0.220822
|
|
||||||
2889.845703 0.000000 1296.539307 0.000000 0.000000 0.000000 1.000000 0.372290 0.372290 0.372290
|
|
||||||
3491.615234 0.000000 2518.870850 0.000000 0.000000 0.000000 1.000000 0.973608 0.973608 0.973608
|
|
||||||
3443.607666 0.853027 2588.119141 0.000000 0.000000 0.000000 1.000000 1.155151 1.155151 1.155151
|
|
||||||
3086.441650 0.000000 1599.666748 0.000000 0.000000 0.000000 1.000000 0.185437 0.185437 0.185437
|
|
||||||
3137.359619 0.000000 1628.161377 0.000000 0.000000 0.000000 1.000000 0.218945 0.218945 0.218945
|
|
||||||
3288.025391 0.000000 1629.755005 0.000000 0.000000 0.000000 1.000000 0.362835 0.362835 0.362835
|
|
||||||
3257.235840 0.000000 1641.337524 0.000000 0.000000 0.000000 1.000000 0.444038 0.444038 0.444038
|
|
||||||
3143.598145 0.000000 1437.274292 0.000000 0.000000 0.000000 1.000000 1.631763 1.631763 1.631763
|
|
||||||
3254.051514 0.000000 1434.569946 0.000000 0.000000 0.000000 1.000000 1.603003 1.603003 1.603003
|
|
||||||
3096.004150 0.000000 1281.192993 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3156.039551 0.000000 1247.107544 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3411.208984 0.000000 1339.195801 0.000000 0.000000 0.000000 1.000000 0.893115 0.893115 0.893115
|
|
||||||
3475.406006 0.000000 1200.255005 0.000000 0.000000 0.000000 1.000000 0.812964 0.812964 0.812964
|
|
||||||
3560.678711 0.000000 1150.877686 0.000000 0.000000 0.000000 1.000000 0.696912 0.696912 0.696912
|
|
||||||
3520.870850 0.000000 1173.731934 0.000000 0.000000 0.000000 1.000000 0.520020 0.520020 0.520020
|
|
||||||
3505.108398 0.000000 812.659851 0.000000 0.000000 0.000000 1.000000 1.281580 1.281580 1.281580
|
|
||||||
3630.783447 0.000000 880.323669 0.000000 0.000000 0.000000 1.000000 1.886658 1.886658 1.886658
|
|
||||||
3757.336914 0.000000 889.391418 0.000000 0.000000 0.000000 1.000000 2.326880 2.326880 2.326880
|
|
||||||
3916.752441 0.000000 930.814392 0.000000 0.000000 0.000000 1.000000 1.476953 1.476953 1.476953
|
|
||||||
4695.517090 0.000000 1392.501099 0.000000 0.000000 0.000000 1.000000 0.649577 0.649577 0.649577
|
|
||||||
4337.340820 0.000000 1421.248657 0.000000 0.000000 0.000000 1.000000 0.830762 0.830762 0.830762
|
|
||||||
4383.982910 0.000000 1462.502808 0.000000 0.000000 0.000000 1.000000 0.872400 0.872400 0.872400
|
|
||||||
4078.819336 0.000000 1469.244141 0.000000 0.000000 0.000000 1.000000 0.587683 0.587683 0.587683
|
|
||||||
4041.741211 0.000000 1519.674316 0.000000 0.000000 0.000000 1.000000 0.620581 0.620581 0.620581
|
|
||||||
3903.429199 0.000000 1680.448120 0.000000 0.000000 0.000000 1.000000 0.812427 0.812427 0.812427
|
|
||||||
3848.349854 0.000000 1678.542358 0.000000 0.000000 0.000000 1.000000 0.457410 0.457410 0.457410
|
|
||||||
4111.529785 0.000000 1991.534058 0.000000 0.000000 0.000000 1.000000 0.821436 0.821436 0.821436
|
|
||||||
4024.809082 0.000000 1988.285400 0.000000 0.000000 0.000000 1.000000 1.160376 1.160376 1.160376
|
|
||||||
3989.184326 0.000000 2059.764648 0.000000 0.000000 0.000000 1.000000 0.693506 0.693506 0.693506
|
|
||||||
3960.515137 0.000000 1975.213989 0.000000 0.000000 0.000000 1.000000 0.597510 0.597510 0.597510
|
|
||||||
3860.700439 0.000000 2063.445312 0.000000 0.000000 0.000000 1.000000 0.542085 0.542085 0.542085
|
|
||||||
3840.008301 0.000000 2145.594238 0.000000 0.000000 0.000000 1.000000 1.081183 1.081183 1.081183
|
|
||||||
3844.851074 0.000000 2249.720215 0.000000 0.000000 0.000000 1.000000 0.853526 0.853526 0.853526
|
|
||||||
3862.918701 0.000000 2335.655029 0.000000 0.000000 0.000000 1.000000 0.664233 0.664233 0.664233
|
|
||||||
4326.216309 0.000000 2176.143799 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4199.408691 0.000000 2219.362305 0.000000 0.000000 0.000000 1.000000 1.589917 1.589917 1.589917
|
|
||||||
4202.456543 0.000000 2113.510254 0.000000 0.000000 0.000000 1.000000 0.764697 0.764697 0.764697
|
|
||||||
4111.606445 0.000000 2246.019531 0.000000 0.000000 0.000000 1.000000 1.163330 1.163330 1.163330
|
|
||||||
4869.219727 0.000000 2449.630859 0.000000 0.000000 0.000000 1.000000 0.533496 0.533496 0.533496
|
|
||||||
4838.917480 0.000000 2480.865234 0.000000 0.000000 0.000000 1.000000 0.533496 0.533496 0.533496
|
|
||||||
4792.088867 0.000000 2487.265137 0.000000 0.000000 0.000000 1.000000 0.533496 0.533496 0.533496
|
|
||||||
5428.048828 0.000000 2594.465820 0.000000 0.000000 0.000000 1.000000 0.585085 0.585085 0.585085
|
|
||||||
5469.257324 0.000000 2575.922852 0.000000 0.000000 0.000000 1.000000 0.412891 0.412891 0.412891
|
|
||||||
5714.030273 0.000000 2336.424805 0.000000 0.000000 0.000000 1.000000 0.834985 0.834985 0.834985
|
|
||||||
5635.437988 0.000000 2340.791748 0.000000 0.000000 0.000000 1.000000 1.218555 1.218555 1.218555
|
|
||||||
5531.523926 0.000000 2326.743164 0.000000 0.000000 0.000000 1.000000 0.561401 0.561401 0.561401
|
|
||||||
5295.555664 0.000000 2173.383545 0.000000 0.000000 0.000000 1.000000 1.197266 1.197266 1.197266
|
|
||||||
5162.131348 0.000000 2116.564941 0.000000 0.000000 0.000000 1.000000 1.687988 1.687988 1.687988
|
|
||||||
5022.660156 0.000000 2066.134521 0.000000 0.000000 0.000000 1.000000 1.480249 1.480249 1.480249
|
|
||||||
4918.284180 0.000000 2016.772949 0.000000 0.000000 0.000000 1.000000 0.734290 0.734290 0.734290
|
|
||||||
5237.664062 0.000000 1830.575684 0.000000 0.000000 0.000000 1.000000 0.511047 0.511047 0.511047
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_forest_mountains"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_mountains_layer"
|
|
||||||
entity="env_mist_sun"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="env_mist_forest"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_mist_sun"
|
|
||||||
count=105
|
|
||||||
transform="2141.059326 0.000000 3543.593506 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2175.089844 0.000000 3577.354980 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2209.466797 0.000000 3521.710693 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2249.520264 0.000000 3669.718750 0.000000 0.000000 0.000000 1.000000 1.206787 1.206787 1.206787
|
|
||||||
2298.471680 0.000000 3693.831543 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2285.832764 0.000000 3582.442383 0.000000 0.000000 0.000000 1.000000 1.330542 1.330542 1.330542
|
|
||||||
2338.371338 0.000000 3585.624756 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2334.714844 0.000000 3542.948242 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2247.077881 0.000000 3507.642090 0.000000 0.000000 0.000000 1.000000 0.526074 0.526074 0.526074
|
|
||||||
2445.426270 0.000000 3342.554932 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2501.034668 0.000000 3325.942383 0.000000 0.000000 0.000000 1.000000 1.584106 1.584106 1.584106
|
|
||||||
2541.392578 0.000000 3221.605469 0.000000 0.000000 0.000000 1.000000 0.730298 0.730298 0.730298
|
|
||||||
2553.317383 0.000000 3178.814697 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2614.138184 0.000000 3546.936279 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2608.238281 0.000000 3499.139893 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2617.245117 0.000000 3453.284180 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2644.100098 0.000000 3476.046631 0.000000 0.000000 0.000000 1.000000 0.657153 0.657153 0.657153
|
|
||||||
2770.654053 0.000000 3468.555176 0.000000 0.000000 0.000000 1.000000 1.218066 1.218066 1.218066
|
|
||||||
2725.070557 0.000000 3681.761719 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2781.118652 0.000000 3650.200684 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2828.680908 0.000000 3614.323975 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2857.515625 0.000000 3574.031738 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2910.022705 0.000000 3493.593018 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2897.871826 0.000000 3437.128906 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2931.056396 0.000000 3373.343506 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2903.949219 0.000000 3309.934082 0.000000 0.000000 0.000000 1.000000 1.136914 1.136914 1.136914
|
|
||||||
2922.193359 0.000000 3250.784668 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2976.541504 0.000000 3324.780518 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3039.523926 0.000000 3287.199463 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3080.075439 0.000000 3239.521484 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3186.201660 0.000000 3283.663330 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3249.020020 0.000000 3294.789551 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3306.354248 0.000000 3312.568359 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3287.159424 0.000000 3363.114746 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3340.240967 0.000000 3401.845215 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3418.161133 0.000000 3412.669678 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3480.427734 0.000000 3430.982178 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3570.124023 0.000000 3426.854980 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3647.303955 0.000000 3440.774658 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3860.398193 0.000000 3384.766602 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3943.476807 0.000000 3437.892578 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4008.855469 0.000000 3419.686035 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4016.806885 0.000000 3504.501709 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4222.962891 0.000000 3428.950928 0.000000 0.000000 0.000000 1.000000 1.797559 1.797559 1.797559
|
|
||||||
4392.164062 0.000000 3358.085449 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4468.886719 0.000000 3285.967529 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4410.359863 0.000000 3158.872070 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4233.876953 0.000000 3166.842529 0.000000 0.000000 0.000000 1.000000 1.600635 1.600635 1.600635
|
|
||||||
4831.582520 0.000000 3404.824463 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4954.770996 0.000000 3449.033203 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5071.733398 0.000000 3451.946289 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5817.958496 0.000000 3425.153564 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6102.660156 0.000000 3651.695312 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6140.701172 0.000000 1074.055420 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6093.336426 0.000000 1171.513062 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6073.020020 0.000000 1264.348511 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6064.742188 0.000000 1344.650269 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6024.866211 0.000000 1430.152588 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6074.124023 0.000000 1485.878296 0.000000 0.000000 0.000000 1.000000 3.063232 3.063232 3.063232
|
|
||||||
5964.508789 0.000000 1431.750244 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5841.810059 0.000000 1316.145142 0.000000 0.000000 0.000000 1.000000 0.593762 0.593762 0.593762
|
|
||||||
5851.124512 0.000000 1258.243774 0.000000 0.000000 0.000000 1.000000 0.732153 0.732153 0.732153
|
|
||||||
5875.388672 0.000000 1204.208252 0.000000 0.000000 0.000000 1.000000 0.514282 0.514282 0.514282
|
|
||||||
5246.725586 0.000000 1007.027527 0.000000 0.000000 0.000000 1.000000 1.316821 1.316821 1.316821
|
|
||||||
5359.094238 0.000000 988.601807 0.000000 0.000000 0.000000 1.000000 0.407538 0.407538 0.407538
|
|
||||||
5344.531250 0.000000 944.394043 0.000000 0.000000 0.000000 1.000000 0.457458 0.457458 0.457458
|
|
||||||
2898.641113 0.000000 121.650093 0.000000 0.000000 0.000000 1.000000 4.067575 4.067575 4.067575
|
|
||||||
2700.636719 0.000000 118.591522 0.000000 0.000000 0.000000 1.000000 4.067575 4.067575 4.067575
|
|
||||||
2510.415527 0.000000 128.979279 0.000000 0.000000 0.000000 1.000000 4.067575 4.067575 4.067575
|
|
||||||
2326.315430 0.000000 137.290192 0.000000 0.000000 0.000000 1.000000 2.603565 2.603565 2.603565
|
|
||||||
2154.342773 0.000000 142.974228 0.000000 0.000000 0.000000 1.000000 2.603565 2.603565 2.603565
|
|
||||||
2017.503784 0.000000 154.235809 0.000000 0.000000 0.000000 1.000000 2.603565 2.603565 2.603565
|
|
||||||
1877.100464 0.000000 185.232758 0.000000 0.000000 0.000000 1.000000 2.603565 2.603565 2.603565
|
|
||||||
1768.888550 0.000000 101.690590 0.000000 0.000000 0.000000 1.000000 2.603565 2.603565 2.603565
|
|
||||||
1492.544678 0.000000 65.099266 0.000000 0.000000 0.000000 1.000000 0.788075 0.788075 0.788075
|
|
||||||
856.144531 0.000000 603.621826 0.000000 0.000000 0.000000 1.000000 0.274979 0.274979 0.274979
|
|
||||||
841.608337 0.000000 570.586182 0.000000 0.000000 0.000000 1.000000 0.443714 0.443714 0.443714
|
|
||||||
5843.829102 0.000000 2506.498779 0.000000 0.000000 0.000000 1.000000 2.872632 2.872632 2.872632
|
|
||||||
5951.733887 0.000000 2569.973145 0.000000 0.000000 0.000000 1.000000 2.918067 2.918067 2.918067
|
|
||||||
6093.823242 0.000000 2560.098145 0.000000 0.000000 0.000000 1.000000 3.948779 3.948779 3.948779
|
|
||||||
6260.731934 0.000000 2699.227295 0.000000 0.000000 0.000000 1.000000 6.633838 6.633838 6.633838
|
|
||||||
6495.341797 0.000000 2295.684326 0.000000 0.000000 0.000000 1.000000 4.178710 4.178710 4.178710
|
|
||||||
6327.373047 0.000000 3149.875488 0.000000 0.000000 0.000000 1.000000 1.534155 1.534155 1.534155
|
|
||||||
6325.858887 0.000000 3242.831787 0.000000 0.000000 0.000000 1.000000 1.615185 1.615185 1.615185
|
|
||||||
4681.729980 0.000000 2606.204102 0.000000 0.000000 0.000000 1.000000 1.166650 1.166650 1.166650
|
|
||||||
4899.223145 0.000000 2918.658203 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4794.894531 0.000000 2823.252441 0.000000 0.000000 0.000000 1.000000 1.459229 1.459229 1.459229
|
|
||||||
4716.460938 0.000000 2849.145752 0.000000 0.000000 0.000000 1.000000 1.464526 1.464526 1.464526
|
|
||||||
4659.264648 0.000000 2872.398193 0.000000 0.000000 0.000000 1.000000 1.396167 1.396167 1.396167
|
|
||||||
4602.474609 0.000000 2905.695068 0.000000 0.000000 0.000000 1.000000 1.370239 1.370239 1.370239
|
|
||||||
4451.886230 0.000000 3001.057617 0.000000 0.000000 0.000000 1.000000 1.897241 1.897241 1.897241
|
|
||||||
4315.296875 0.000000 2947.663330 0.000000 0.000000 0.000000 1.000000 1.242920 1.242920 1.242920
|
|
||||||
4214.666992 0.000000 2991.323242 0.000000 0.000000 0.000000 1.000000 1.346289 1.346289 1.346289
|
|
||||||
4233.651855 0.000000 3034.521240 0.000000 0.000000 0.000000 1.000000 1.060840 1.060840 1.060840
|
|
||||||
4207.695801 0.000000 2786.155029 0.000000 0.000000 0.000000 1.000000 1.728418 1.728418 1.728418
|
|
||||||
4129.923828 0.000000 2788.139893 0.000000 0.000000 0.000000 1.000000 1.416357 1.416357 1.416357
|
|
||||||
4060.210938 0.000000 2770.271240 0.000000 0.000000 0.000000 1.000000 1.374268 1.374268 1.374268
|
|
||||||
3896.086182 0.000000 2689.438477 0.000000 0.000000 0.000000 1.000000 1.335938 1.335938 1.335938
|
|
||||||
3789.792236 0.000000 2687.219727 0.000000 0.000000 0.000000 1.000000 1.157056 1.157056 1.157056
|
|
||||||
3694.904297 0.000000 2699.454834 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3619.990723 0.000000 2690.754639 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3313.828369 0.000000 2353.437744 0.000000 0.000000 0.000000 1.000000 1.921509 1.921509 1.921509
|
|
||||||
3206.026367 0.000000 2368.157471 0.000000 0.000000 0.000000 1.000000 2.267358 2.267358 2.267358
|
|
||||||
4590.911621 0.000000 3173.989014 0.000000 0.000000 0.000000 1.000000 1.346802 1.346802 1.346802
|
|
||||||
4663.714844 0.000000 3162.239502 0.000000 0.000000 0.000000 1.000000 1.084546 1.084546 1.084546
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_snow_mountains"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_mountains_layer"
|
|
||||||
entity="env_snow_mountains"
|
|
||||||
count=287
|
|
||||||
transform="423.111237 1.298828 3877.760498 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
387.805328 0.000000 3855.417725 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
344.554749 5.117920 3872.514160 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1463.434326 0.000000 3343.956299 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1460.485107 0.000000 3393.167969 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1494.390625 0.579102 3427.036377 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1532.343384 0.000000 3466.101074 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1502.461304 0.000000 3507.908936 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1421.408691 -2.034424 3447.551514 0.000000 0.000000 0.000000 1.000000 0.549879 0.549879 0.549879
|
|
||||||
1657.896606 0.000000 3513.844482 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1670.635864 0.000000 3479.249023 0.000000 0.000000 0.000000 1.000000 0.716406 0.716406 0.716406
|
|
||||||
1701.415771 1.303711 3504.849609 0.000000 0.000000 0.000000 1.000000 0.640674 0.640674 0.640674
|
|
||||||
1666.953857 0.000000 3575.765869 0.000000 0.000000 0.000000 1.000000 0.420435 0.420435 0.420435
|
|
||||||
1574.143433 0.000000 3564.350098 0.000000 0.000000 0.000000 1.000000 0.445281 0.445281 0.445281
|
|
||||||
1607.653931 0.000000 3507.716064 0.000000 0.000000 0.000000 1.000000 0.561987 0.561987 0.561987
|
|
||||||
1536.215698 0.000000 3547.919434 0.000000 0.000000 0.000000 1.000000 0.553491 0.553491 0.553491
|
|
||||||
1735.906372 0.000000 3673.617432 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1742.799561 0.000000 3728.994873 0.000000 0.000000 0.000000 1.000000 1.303711 1.303711 1.303711
|
|
||||||
1808.067261 0.000000 3762.829102 0.000000 0.000000 0.000000 1.000000 0.713184 0.713184 0.713184
|
|
||||||
1820.068604 0.000000 3819.696045 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1852.724609 0.000000 3813.276123 0.000000 0.000000 0.000000 1.000000 0.755225 0.755225 0.755225
|
|
||||||
1892.585449 0.000000 3868.753906 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1915.223755 0.000000 3912.613770 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1933.751343 0.758789 3943.053955 0.000000 0.000000 0.000000 1.000000 0.688883 0.688883 0.688883
|
|
||||||
2110.329346 0.000000 4000.892334 0.000000 0.000000 0.000000 1.000000 0.589235 0.589235 0.589235
|
|
||||||
2071.147949 1.435303 4004.445801 0.000000 0.000000 0.000000 1.000000 0.461432 0.461432 0.461432
|
|
||||||
2239.045654 0.000000 3921.663818 0.000000 0.000000 0.000000 1.000000 0.415137 0.415137 0.415137
|
|
||||||
2269.031494 0.000000 3903.985107 0.000000 0.000000 0.000000 1.000000 0.387738 0.387738 0.387738
|
|
||||||
1411.984741 0.000000 2708.378662 0.000000 0.000000 0.000000 1.000000 0.652586 0.652586 0.652586
|
|
||||||
1388.280762 1.646484 2688.868408 0.000000 0.000000 0.000000 1.000000 0.423999 0.423999 0.423999
|
|
||||||
1343.180664 1.218994 2611.616455 0.000000 0.000000 0.000000 1.000000 0.408545 0.408545 0.408545
|
|
||||||
1344.107300 0.000000 2524.278564 0.000000 0.000000 0.000000 1.000000 0.463647 0.463647 0.463647
|
|
||||||
1317.361206 2.181396 2475.553711 0.000000 0.000000 0.000000 1.000000 0.650464 0.650464 0.650464
|
|
||||||
1400.756348 0.832275 2509.939941 0.000000 0.000000 0.000000 1.000000 0.478882 0.478882 0.478882
|
|
||||||
1388.123779 0.000000 2459.476807 0.000000 0.000000 0.000000 1.000000 0.425046 0.425046 0.425046
|
|
||||||
1339.293823 0.686768 2419.236816 0.000000 0.000000 0.000000 1.000000 0.658350 0.658350 0.658350
|
|
||||||
1293.190186 0.000000 2371.727051 0.000000 0.000000 0.000000 1.000000 0.448878 0.448878 0.448878
|
|
||||||
1788.924927 -0.680908 2432.292725 0.000000 0.000000 0.000000 1.000000 0.366919 0.366919 0.366919
|
|
||||||
1611.089966 -0.935791 2393.111084 0.000000 0.000000 0.000000 1.000000 0.394219 0.394219 0.394219
|
|
||||||
1677.422363 -0.375244 2400.082764 0.000000 0.000000 0.000000 1.000000 0.394219 0.394219 0.394219
|
|
||||||
1777.107422 -0.744873 2342.544189 0.000000 0.000000 0.000000 1.000000 0.394219 0.394219 0.394219
|
|
||||||
1795.591187 -0.744873 2338.944092 0.000000 0.000000 0.000000 1.000000 0.394219 0.394219 0.394219
|
|
||||||
1687.936279 0.000000 2339.083252 0.000000 0.000000 0.000000 1.000000 0.823218 0.823218 0.823218
|
|
||||||
1612.031494 0.358643 2335.155518 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1657.518188 0.000000 2339.992920 0.000000 0.000000 0.000000 1.000000 0.708361 0.708361 0.708361
|
|
||||||
1517.812256 3.621582 2349.520752 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1487.120972 0.000000 2326.065674 0.000000 0.000000 0.000000 1.000000 0.639355 0.639355 0.639355
|
|
||||||
1702.495850 -1.615356 2037.928833 0.000000 0.000000 0.000000 1.000000 0.570837 0.570837 0.570837
|
|
||||||
1744.588745 -1.685913 1986.523682 0.000000 0.000000 0.000000 1.000000 0.340351 0.340351 0.340351
|
|
||||||
1821.668579 0.000000 1904.760986 0.000000 0.000000 0.000000 1.000000 0.343614 0.343614 0.343614
|
|
||||||
1550.123169 2.139160 2162.733154 0.000000 -0.297840 0.000000 0.954616 0.375609 0.375609 0.375609
|
|
||||||
1443.854858 -0.790771 2202.062500 0.000000 -0.292183 0.000000 0.956362 0.256374 0.256374 0.256374
|
|
||||||
1474.778076 -0.790771 2196.390381 0.000000 -0.292183 0.000000 0.956362 0.453806 0.453806 0.453806
|
|
||||||
1410.615601 1.370850 2339.088867 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
1374.350830 0.000000 2319.366943 0.000000 0.000000 0.000000 1.000000 0.676709 0.676709 0.676709
|
|
||||||
1345.938965 -0.169434 2265.225098 0.000000 0.000000 0.000000 1.000000 0.387598 0.387598 0.387598
|
|
||||||
1333.659302 0.087402 2290.791016 0.000000 0.000000 0.000000 1.000000 0.387598 0.387598 0.387598
|
|
||||||
1329.390381 -0.643311 2322.978271 0.000000 0.000000 0.000000 1.000000 0.387598 0.387598 0.387598
|
|
||||||
1324.208984 2.065674 2209.790527 0.000000 0.000000 0.000000 1.000000 0.609570 0.609570 0.609570
|
|
||||||
1349.609985 0.000000 2172.695801 0.000000 0.000000 0.000000 1.000000 0.529541 0.529541 0.529541
|
|
||||||
1895.815308 0.948975 2132.705322 0.000000 -0.236611 0.000000 0.971604 0.284659 0.284659 0.284659
|
|
||||||
1887.436890 0.948975 2143.365967 0.000000 -0.101221 0.000000 0.994864 0.316528 0.316528 0.316528
|
|
||||||
1531.474121 0.000000 2766.816650 0.000000 0.000000 0.000000 1.000000 0.292334 0.292334 0.292334
|
|
||||||
1500.735352 0.915527 2670.412109 0.000000 0.000000 0.000000 1.000000 0.249822 0.249822 0.249822
|
|
||||||
1650.365723 -0.220703 2664.802002 0.000000 -0.228731 0.000000 0.973490 0.182014 0.182014 0.182014
|
|
||||||
1664.381714 0.603271 2668.624756 0.000000 -0.228731 0.000000 0.973490 0.210191 0.210191 0.210191
|
|
||||||
1703.059204 -0.231201 2684.874023 0.000000 -0.228731 0.000000 0.973490 0.182014 0.182014 0.182014
|
|
||||||
1716.183228 -0.231201 2686.088135 0.000000 -0.228731 0.000000 0.973490 0.182014 0.182014 0.182014
|
|
||||||
1815.600952 1.618652 2674.158203 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
2081.704834 0.101562 2522.792969 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2064.724854 0.101562 2534.483643 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2036.834351 0.101562 2533.730713 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2002.494263 -0.338623 2529.698730 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2042.877197 -0.338623 2558.186768 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2018.984863 0.454345 2554.882324 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
2003.614624 0.727539 2577.849854 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
1969.579712 -0.405030 2541.567627 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
1958.802368 -0.405030 2565.818359 0.000000 -0.525328 0.000000 0.850900 0.265508 0.265508 0.265508
|
|
||||||
1923.557983 -0.405030 2530.961182 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1908.811890 0.432861 2633.976318 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1880.467896 1.353271 2639.941406 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1832.175781 2.047607 2599.050293 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1787.405762 -0.104248 2564.179688 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1760.354126 0.350342 2507.945557 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1712.490234 1.057129 2528.400879 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1695.446289 1.057129 2537.423340 0.000000 -0.228731 0.000000 0.973490 0.265508 0.265508 0.265508
|
|
||||||
1644.612061 1.057129 2582.765869 0.000000 -0.228731 0.000000 0.973490 0.328506 0.328506 0.328506
|
|
||||||
1616.214966 1.057129 2626.553711 0.000000 -0.228731 0.000000 0.973490 0.328506 0.328506 0.328506
|
|
||||||
1564.062988 1.057129 2655.901611 0.000000 0.000000 0.000000 1.000000 0.328506 0.328506 0.328506
|
|
||||||
1061.918701 0.973878 2068.910889 0.000000 0.000000 0.000000 1.000000 0.476186 0.476186 0.476186
|
|
||||||
1007.865845 0.550049 2082.425049 0.000000 0.000000 0.000000 1.000000 0.459188 0.459188 0.459188
|
|
||||||
943.838501 -0.761963 2107.500488 0.000000 0.000000 0.000000 1.000000 0.623917 0.623917 0.623917
|
|
||||||
908.972595 -1.760742 2114.799316 0.000000 0.000000 0.000000 1.000000 0.485645 0.485645 0.485645
|
|
||||||
877.574646 0.000000 2121.433838 0.000000 0.000000 0.000000 1.000000 0.391145 0.391145 0.391145
|
|
||||||
753.688721 0.000000 1981.733643 0.000000 0.000000 0.000000 1.000000 0.376125 0.376125 0.376125
|
|
||||||
807.291870 0.000000 2047.906494 0.000000 0.000000 0.000000 1.000000 0.376125 0.376125 0.376125
|
|
||||||
654.766235 0.000000 1931.887451 0.000000 0.000000 0.000000 1.000000 0.576605 0.576605 0.576605
|
|
||||||
688.386841 0.000000 1943.433228 0.000000 0.000000 0.000000 1.000000 0.576605 0.576605 0.576605
|
|
||||||
719.178772 0.000000 1965.739502 0.000000 0.000000 0.000000 1.000000 0.576605 0.576605 0.576605
|
|
||||||
583.235352 0.000000 1939.090210 0.000000 0.000000 0.000000 1.000000 0.567292 0.567292 0.567292
|
|
||||||
526.742493 0.000000 1935.748657 0.000000 0.000000 0.000000 1.000000 0.443091 0.443091 0.443091
|
|
||||||
621.572693 0.000000 2134.897949 0.000000 0.000000 0.000000 1.000000 0.340548 0.340548 0.340548
|
|
||||||
578.333374 -1.607666 2114.332031 0.000000 0.000000 0.000000 1.000000 0.368213 0.368213 0.368213
|
|
||||||
596.925171 -0.268555 2135.488037 0.000000 0.000000 0.000000 1.000000 0.362500 0.362500 0.362500
|
|
||||||
2217.422363 -0.939575 1791.980835 0.000000 -0.381951 0.000000 0.924182 0.287561 0.287561 0.287561
|
|
||||||
2205.029297 -0.939575 1806.639038 0.000000 -0.381951 0.000000 0.924182 0.287561 0.287561 0.287561
|
|
||||||
2125.221680 -0.939575 1865.812378 0.000000 -0.381951 0.000000 0.924182 0.287561 0.287561 0.287561
|
|
||||||
2107.388916 -0.939575 1857.372314 0.000000 0.031001 0.000000 0.999519 0.287561 0.287561 0.287561
|
|
||||||
2096.169189 -0.939575 1872.979492 0.000000 0.031001 0.000000 0.999519 0.287561 0.287561 0.287561
|
|
||||||
2315.442627 -0.022705 2001.173950 0.000000 0.122101 0.000000 0.992518 0.287561 0.287561 0.287561
|
|
||||||
2345.084961 -0.956421 1976.206909 0.000000 0.230365 0.000000 0.973104 0.287561 0.287561 0.287561
|
|
||||||
2226.399902 -0.956421 1950.155518 0.000000 0.230365 0.000000 0.973104 0.287561 0.287561 0.287561
|
|
||||||
2204.634766 -0.380371 1933.840332 0.000000 0.000000 0.000000 1.000000 0.287561 0.287561 0.287561
|
|
||||||
2145.758301 -0.380371 2011.627930 0.000000 0.000000 0.000000 1.000000 0.287561 0.287561 0.287561
|
|
||||||
2136.469971 -1.619019 1993.558960 0.000000 0.000000 0.000000 1.000000 0.287561 0.287561 0.287561
|
|
||||||
2088.376709 -1.619019 2035.597290 0.000000 0.000000 0.000000 1.000000 0.287561 0.287561 0.287561
|
|
||||||
2389.973145 -0.981445 2069.479736 0.000000 -0.478434 0.000000 0.878123 0.293530 0.293530 0.293530
|
|
||||||
2357.711670 -0.981445 2071.608887 0.000000 -0.478434 0.000000 0.878123 0.293530 0.293530 0.293530
|
|
||||||
2334.117920 -0.981445 2071.758789 0.000000 -0.478434 0.000000 0.878123 0.293530 0.293530 0.293530
|
|
||||||
2217.579834 0.416260 2245.550049 0.000000 0.000000 0.000000 1.000000 0.491748 0.491748 0.491748
|
|
||||||
2415.823242 0.000000 2290.581055 0.000000 0.000000 0.000000 1.000000 0.373841 0.373841 0.373841
|
|
||||||
2327.724609 0.000000 2275.906006 0.000000 0.000000 0.000000 1.000000 0.413428 0.413428 0.413428
|
|
||||||
2272.887207 0.000000 2271.568359 0.000000 0.000000 0.000000 1.000000 0.413428 0.413428 0.413428
|
|
||||||
2210.558594 -0.804932 2341.920410 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2211.981201 -0.804932 2360.864014 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2204.208984 -1.614258 2384.384766 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2221.493164 -0.479492 2508.127686 0.000000 -0.468893 0.000000 0.883255 0.314180 0.314180 0.314180
|
|
||||||
2176.301514 -0.382813 2551.284668 0.000000 -0.583240 0.000000 0.812300 0.418444 0.418444 0.418444
|
|
||||||
2221.979736 -0.763184 2536.635498 0.000000 -0.253520 0.000000 0.967330 0.418444 0.418444 0.418444
|
|
||||||
2270.431396 -1.370605 2498.268311 0.000000 -0.253520 0.000000 0.967330 0.418444 0.418444 0.418444
|
|
||||||
2283.101807 -0.108887 2479.042236 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2305.886230 -1.401123 2456.597412 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2263.380859 -1.547607 2434.138916 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2354.490234 0.000000 2400.421875 0.000000 -0.253520 0.000000 0.967330 0.312969 0.312969 0.312969
|
|
||||||
2390.451172 0.000000 2360.914795 0.000000 0.000000 0.000000 1.000000 0.312969 0.312969 0.312969
|
|
||||||
2397.079346 0.000000 2337.305664 0.000000 0.000000 0.000000 1.000000 0.312969 0.312969 0.312969
|
|
||||||
2754.281250 -0.244873 1711.908081 0.000000 -0.170850 0.000000 0.985297 0.198864 0.198864 0.198864
|
|
||||||
3043.704590 -0.812500 1782.571045 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
3063.996826 -1.679932 1789.212158 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
2941.779785 0.625366 1808.078491 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
2925.880615 0.099976 1757.646973 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
2885.091797 -0.625366 1717.989868 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
2869.705811 0.000000 1701.371582 0.000000 -0.256884 0.000000 0.966442 0.242041 0.242041 0.242041
|
|
||||||
2780.677246 0.000000 1687.613525 0.000000 -0.256884 0.000000 0.966442 0.288723 0.288723 0.288723
|
|
||||||
3378.909668 3.609131 1904.701660 0.000000 0.000000 0.000000 1.000000 0.646680 0.646680 0.646680
|
|
||||||
3420.685791 0.000000 1955.759766 0.000000 0.000000 0.000000 1.000000 0.261108 0.261108 0.261108
|
|
||||||
3335.427246 0.000000 1984.893066 0.000000 0.000000 0.000000 1.000000 0.198980 0.198980 0.198980
|
|
||||||
3346.600342 0.000000 1936.304932 0.000000 0.000000 0.000000 1.000000 0.198980 0.198980 0.198980
|
|
||||||
3625.333740 0.000000 1787.654419 0.000000 0.000000 0.000000 1.000000 0.217908 0.217908 0.217908
|
|
||||||
3515.066406 0.000000 2052.435547 0.000000 0.000000 0.000000 1.000000 0.305160 0.305160 0.305160
|
|
||||||
3147.513428 -0.298828 2187.656982 0.000000 0.000000 0.000000 1.000000 0.363397 0.363397 0.363397
|
|
||||||
3178.361816 -2.193115 2178.195068 0.000000 0.000000 0.000000 1.000000 0.363397 0.363397 0.363397
|
|
||||||
3212.073242 0.128174 2170.021484 0.000000 0.000000 0.000000 1.000000 0.363397 0.363397 0.363397
|
|
||||||
3249.973145 0.128174 2170.367188 0.000000 0.000000 0.000000 1.000000 0.363397 0.363397 0.363397
|
|
||||||
3275.281982 -1.049072 2157.992920 0.000000 0.000000 0.000000 1.000000 0.363397 0.363397 0.363397
|
|
||||||
3338.446777 0.000000 2132.773926 0.000000 0.000000 0.000000 1.000000 0.456811 0.456811 0.456811
|
|
||||||
3379.446289 0.000000 2128.840576 0.000000 0.000000 0.000000 1.000000 0.456811 0.456811 0.456811
|
|
||||||
3415.243896 0.000000 2113.856445 0.000000 0.000000 0.000000 1.000000 0.456811 0.456811 0.456811
|
|
||||||
3457.010986 0.000000 2094.002197 0.000000 0.000000 0.000000 1.000000 0.456811 0.456811 0.456811
|
|
||||||
3484.590332 0.000000 2071.956055 0.000000 0.000000 0.000000 1.000000 0.456811 0.456811 0.456811
|
|
||||||
3914.639893 0.690674 2902.020752 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3961.624268 0.000000 2928.792969 0.000000 0.000000 0.000000 1.000000 0.815552 0.815552 0.815552
|
|
||||||
3984.239258 0.000000 2864.116211 0.000000 0.000000 0.000000 1.000000 0.588525 0.588525 0.588525
|
|
||||||
4032.625244 0.000000 2971.418945 0.000000 0.000000 0.000000 1.000000 0.405396 0.405396 0.405396
|
|
||||||
3991.785156 1.763672 2952.886475 0.000000 0.000000 0.000000 1.000000 0.510840 0.510840 0.510840
|
|
||||||
3801.188477 0.000000 3291.912109 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3772.908203 0.000000 3345.809570 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3769.545410 0.000000 3406.502441 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3735.724365 0.000000 3479.809814 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6229.968262 0.000000 1588.411621 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6282.186035 0.000000 1673.441650 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6291.220703 0.000000 1755.903564 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6342.386719 0.000000 1812.185547 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6329.124512 0.000000 1886.405029 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6331.548828 0.000000 1991.563477 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6275.926758 0.000000 2054.601807 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6345.601074 0.000000 2086.508057 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6346.681152 0.000000 2151.875977 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6303.504395 0.000000 2973.974121 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6315.227539 0.000000 3060.052490 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6244.536133 0.000000 3428.546875 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6289.315918 0.000000 3482.759277 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3020.737061 0.000000 497.794769 0.000000 0.000000 0.000000 1.000000 0.479129 0.479129 0.479129
|
|
||||||
3093.615234 -0.888306 532.585449 0.000000 0.000000 0.000000 1.000000 0.194275 0.194275 0.194275
|
|
||||||
3139.242676 -1.944580 525.224915 0.000000 0.000000 0.000000 1.000000 0.379077 0.379077 0.379077
|
|
||||||
3179.531006 0.000000 549.843750 0.000000 0.000000 0.000000 1.000000 0.134344 0.134344 0.134344
|
|
||||||
3224.182373 0.000000 512.004517 0.000000 0.000000 0.000000 1.000000 0.254348 0.254348 0.254348
|
|
||||||
3198.471680 0.000000 509.135559 0.000000 0.000000 0.000000 1.000000 0.204697 0.204697 0.204697
|
|
||||||
3195.759033 0.476410 456.322296 0.000000 0.000000 0.000000 1.000000 0.364505 0.364505 0.364505
|
|
||||||
3120.230225 0.000000 405.857574 0.000000 0.000000 0.000000 1.000000 0.220538 0.220538 0.220538
|
|
||||||
3211.380859 0.236908 390.546570 0.000000 0.000000 0.000000 1.000000 0.361856 0.361856 0.361856
|
|
||||||
3214.430420 0.000000 242.054749 0.000000 0.000000 0.000000 1.000000 0.565498 0.565498 0.565498
|
|
||||||
3271.278076 0.000000 335.701965 0.000000 0.000000 0.000000 1.000000 0.238678 0.238678 0.238678
|
|
||||||
3228.649902 -0.346191 307.429871 0.000000 0.000000 0.000000 1.000000 0.264175 0.264175 0.264175
|
|
||||||
610.990845 -0.927567 216.487747 0.000000 0.000000 0.000000 1.000000 0.394339 0.394339 0.394339
|
|
||||||
5206.937500 0.000000 3218.733887 0.000000 0.000000 0.000000 1.000000 0.670166 0.670166 0.670166
|
|
||||||
5222.878418 0.000000 3273.759033 0.000000 0.000000 0.000000 1.000000 0.670166 0.670166 0.670166
|
|
||||||
5187.186035 0.000000 3109.376221 0.000000 0.000000 0.000000 1.000000 0.673169 0.673169 0.673169
|
|
||||||
5213.260742 0.000000 3028.749756 0.000000 0.000000 0.000000 1.000000 0.607861 0.607861 0.607861
|
|
||||||
5196.399902 0.000000 2950.732910 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5247.526855 0.000000 2901.031738 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5312.569824 0.000000 2867.509521 0.000000 0.000000 0.000000 1.000000 0.498779 0.498779 0.498779
|
|
||||||
5354.087402 0.000000 2842.126953 0.000000 0.000000 0.000000 1.000000 0.364624 0.364624 0.364624
|
|
||||||
5744.229004 0.000000 3074.629639 0.000000 0.000000 0.000000 1.000000 0.328975 0.328975 0.328975
|
|
||||||
5773.377441 0.000000 3062.317871 0.000000 0.000000 0.000000 1.000000 0.322314 0.322314 0.322314
|
|
||||||
5745.958984 2.251221 3006.525635 0.000000 0.000000 0.000000 1.000000 0.535059 0.535059 0.535059
|
|
||||||
5672.555664 -1.574707 2941.576172 0.000000 0.000000 0.000000 1.000000 0.455573 0.455573 0.455573
|
|
||||||
5702.687012 0.000000 2925.175293 0.000000 0.000000 0.000000 1.000000 0.254776 0.254776 0.254776
|
|
||||||
6016.883789 0.000000 2176.690918 0.000000 0.000000 0.000000 1.000000 0.409692 0.409692 0.409692
|
|
||||||
5918.271973 0.000000 2215.833252 0.000000 0.000000 0.000000 1.000000 0.492432 0.492432 0.492432
|
|
||||||
6177.917969 0.000000 2148.322998 0.000000 0.000000 0.000000 1.000000 0.214453 0.214453 0.214453
|
|
||||||
6134.369141 0.000000 2161.072510 0.000000 0.000000 0.000000 1.000000 0.214453 0.214453 0.214453
|
|
||||||
5962.111328 0.000000 2222.994873 0.000000 0.000000 0.000000 1.000000 0.214453 0.214453 0.214453
|
|
||||||
5995.324219 0.000000 2215.840576 0.000000 0.000000 0.000000 1.000000 0.214453 0.214453 0.214453
|
|
||||||
5810.300293 0.000000 2785.060791 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5873.635742 0.000000 2798.610352 0.000000 0.000000 0.000000 1.000000 0.816870 0.816870 0.816870
|
|
||||||
5944.747559 0.000000 2780.702393 0.000000 0.000000 0.000000 1.000000 0.671216 0.671216 0.671216
|
|
||||||
5132.116699 0.000000 2875.269775 0.000000 0.000000 0.000000 1.000000 0.673486 0.673486 0.673486
|
|
||||||
5178.066406 0.000000 2838.005615 0.000000 0.000000 0.000000 1.000000 0.611768 0.611768 0.611768
|
|
||||||
5270.221191 -0.501221 2804.377197 0.000000 0.000000 0.000000 1.000000 0.522168 0.522168 0.522168
|
|
||||||
5325.951172 -0.460205 2785.125488 0.000000 0.000000 0.000000 1.000000 0.442895 0.442895 0.442895
|
|
||||||
5383.665039 -1.241699 2775.740723 0.000000 0.000000 0.000000 1.000000 0.629028 0.629028 0.629028
|
|
||||||
5484.589355 0.000000 2713.965576 0.000000 0.000000 0.000000 1.000000 0.756421 0.756421 0.756421
|
|
||||||
5539.746094 0.000000 2698.543457 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5607.971680 0.000000 2678.171387 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5438.511719 0.288818 2366.384277 0.000000 -0.243558 0.000000 0.969886 0.343945 0.343945 0.343945
|
|
||||||
5443.252930 0.288818 2468.060059 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5518.707031 -1.208740 2474.845947 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5702.482422 -1.641113 2494.747559 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5670.783203 -1.641113 2525.736328 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5712.789062 -1.641113 2609.385498 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5807.332520 0.000000 2659.813965 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5759.952148 0.000000 2674.253906 0.000000 0.000000 0.000000 1.000000 0.343945 0.343945 0.343945
|
|
||||||
5236.880371 0.000000 2643.707031 0.000000 -0.237456 0.000000 0.971398 0.470239 0.470239 0.470239
|
|
||||||
5253.837891 -1.073730 2432.535645 0.000000 -0.271512 0.000000 0.962435 0.408945 0.408945 0.408945
|
|
||||||
5183.616699 -2.135010 2437.971436 0.000000 -0.271512 0.000000 0.962435 0.408945 0.408945 0.408945
|
|
||||||
5181.954590 -2.697266 2515.076660 0.000000 -0.271512 0.000000 0.962435 0.527688 0.527688 0.527688
|
|
||||||
5229.797363 -1.504150 2503.917480 0.000000 -0.271512 0.000000 0.962435 0.527688 0.527688 0.527688
|
|
||||||
5259.627441 -2.535889 2561.369873 0.000000 -0.271512 0.000000 0.962435 0.390245 0.390245 0.390245
|
|
||||||
5125.828125 -2.535889 2611.712891 0.000000 -0.271512 0.000000 0.962435 0.390245 0.390245 0.390245
|
|
||||||
5198.866211 0.000000 2604.264893 0.000000 -0.271512 0.000000 0.962435 0.478418 0.478418 0.478418
|
|
||||||
5374.685547 0.000000 2407.226562 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5319.540527 -0.839600 2396.573486 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5272.478516 0.000000 2365.498047 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5114.735352 -0.261475 2328.911621 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5220.516113 -1.476563 2341.693848 0.000000 0.000000 0.000000 1.000000 0.530347 0.530347 0.530347
|
|
||||||
5041.876465 -0.672363 2319.545898 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4981.718750 0.000000 2286.956787 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4934.430664 0.000000 2251.110596 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4896.851074 0.000000 2190.204834 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4845.916016 -3.019287 2167.230713 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4630.304688 2.282227 2215.033691 0.000000 0.000000 0.000000 1.000000 0.370160 0.370160 0.370160
|
|
||||||
4568.288574 -0.460205 2198.004150 0.000000 0.000000 0.000000 1.000000 0.526139 0.526139 0.526139
|
|
||||||
4723.681641 -0.460205 2147.122559 0.000000 0.000000 0.000000 1.000000 0.396436 0.396436 0.396436
|
|
||||||
4742.791992 -1.383789 2110.672852 0.000000 0.000000 0.000000 1.000000 0.396436 0.396436 0.396436
|
|
||||||
4802.338867 -1.383789 2138.665527 0.000000 0.000000 0.000000 1.000000 0.396436 0.396436 0.396436
|
|
||||||
4642.221191 0.026855 2056.686523 0.000000 0.000000 0.000000 1.000000 1.526147 1.526147 1.526147
|
|
||||||
4544.282227 0.000000 2040.898071 0.000000 0.000000 0.000000 1.000000 0.582678 0.582678 0.582678
|
|
||||||
4500.916992 0.000000 2021.978149 0.000000 0.000000 0.000000 1.000000 0.563517 0.563517 0.563517
|
|
||||||
4438.114258 0.000000 1997.404419 0.000000 0.000000 0.000000 1.000000 0.417090 0.417090 0.417090
|
|
||||||
4591.347656 0.000000 1971.537476 0.000000 0.000000 0.000000 1.000000 0.428638 0.428638 0.428638
|
|
||||||
4673.117188 0.000000 1978.177490 0.000000 0.000000 0.000000 1.000000 0.308167 0.308167 0.308167
|
|
||||||
4756.826172 1.441895 2000.172119 0.000000 0.000000 0.000000 1.000000 0.728948 0.728948 0.728948
|
|
||||||
4727.532715 0.000000 1962.047729 0.000000 0.000000 0.000000 1.000000 0.449463 0.449463 0.449463
|
|
||||||
4664.487793 -1.039795 1934.170898 0.000000 0.000000 0.000000 1.000000 0.357227 0.357227 0.357227
|
|
||||||
4670.376465 -1.639893 1812.484253 0.000000 0.000000 0.000000 1.000000 0.592676 0.592676 0.592676
|
|
||||||
4751.665039 0.000000 1865.051514 0.000000 0.000000 0.000000 1.000000 0.644043 0.644043 0.644043
|
|
||||||
4827.396484 0.000000 1921.122192 0.000000 0.000000 0.000000 1.000000 0.522656 0.522656 0.522656
|
|
||||||
4892.682617 0.000000 1889.107056 0.000000 0.000000 0.000000 1.000000 0.678333 0.678333 0.678333
|
|
||||||
4957.948730 0.000000 1869.847656 0.000000 0.000000 0.000000 1.000000 0.255151 0.255151 0.255151
|
|
||||||
4975.613281 0.000000 1839.437256 0.000000 0.000000 0.000000 1.000000 0.260144 0.260144 0.260144
|
|
||||||
4912.010742 -0.785400 1809.874878 0.000000 -0.423676 0.000000 0.905814 0.185803 0.185803 0.185803
|
|
||||||
4870.689453 -1.584717 1747.640503 0.000000 0.000000 0.000000 1.000000 0.380566 0.380566 0.380566
|
|
||||||
4978.273926 -1.427734 1723.539062 0.000000 0.000000 0.000000 1.000000 0.214539 0.214539 0.214539
|
|
||||||
5040.026367 0.000000 1752.176147 0.000000 0.000000 0.000000 1.000000 0.214539 0.214539 0.214539
|
|
||||||
5114.886719 0.000000 1607.481812 0.000000 0.000000 0.000000 1.000000 0.250256 0.250256 0.250256
|
|
||||||
5270.892090 0.000000 1568.646118 0.000000 0.000000 0.000000 1.000000 0.256897 0.256897 0.256897
|
|
||||||
5326.805664 -1.499878 1550.726929 0.000000 0.000000 0.000000 1.000000 0.315015 0.315015 0.315015
|
|
||||||
5521.736816 -0.783691 1516.952637 0.000000 0.000000 0.000000 1.000000 0.312683 0.312683 0.312683
|
|
||||||
5466.363281 0.000000 1516.355835 0.000000 0.000000 0.000000 1.000000 0.312683 0.312683 0.312683
|
|
||||||
5661.530762 -1.805664 1545.491455 0.000000 -0.454383 0.000000 0.890806 0.296139 0.296139 0.296139
|
|
||||||
5611.925293 -0.429810 1532.186279 0.000000 0.000000 0.000000 1.000000 0.482886 0.482886 0.482886
|
|
||||||
5781.996582 -0.991455 1545.710815 0.000000 0.000000 0.000000 1.000000 0.457837 0.457837 0.457837
|
|
||||||
5827.043945 0.000000 1590.584473 0.000000 0.000000 0.000000 1.000000 0.323364 0.323364 0.323364
|
|
||||||
5941.234375 0.000000 1636.019165 0.000000 0.000000 0.000000 1.000000 0.449707 0.449707 0.449707
|
|
||||||
5765.394531 0.910522 1683.273682 0.000000 0.000000 0.000000 1.000000 0.284912 0.284912 0.284912
|
|
||||||
5803.081055 0.000000 1717.931641 0.000000 0.000000 0.000000 1.000000 0.284314 0.284314 0.284314
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_snow_plains"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_snow_plains"
|
|
||||||
count=2
|
|
||||||
transform="2585.850342 -3.095947 3754.724365 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2603.244873 0.000000 3941.772461 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="env_snow_plains_ambient"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="env_effect_layer"
|
|
||||||
entity="env_snow_plains_ambient"
|
|
||||||
count=41
|
|
||||||
transform="2673.284668 -0.325439 3779.354736 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2747.373535 0.000000 3739.692139 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2854.227051 -1.495361 3677.693848 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2653.296143 -2.859131 3866.798096 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2930.498779 0.000000 3592.507812 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2985.886475 0.000000 3416.119141 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3104.511230 -1.886475 3314.667480 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3219.811768 0.000000 3370.435791 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3277.400146 0.000000 3428.197998 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3418.455078 0.000000 3489.718262 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3545.254639 0.000000 3491.875732 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3609.775635 0.000000 3519.306641 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3852.097656 0.000000 3505.894775 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4333.751465 -1.473389 3520.120117 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4361.722656 0.000000 3426.820312 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4461.782227 0.000000 3361.066650 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4571.643555 0.000000 3369.905273 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4447.881836 0.000000 3488.067871 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4519.472168 0.000000 3427.984619 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4658.865723 0.000000 3333.529297 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4635.094727 0.000000 3440.638916 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4749.487305 0.000000 3379.957764 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
4885.259277 0.000000 3498.095947 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5010.400391 0.000000 3515.083740 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5201.500977 0.000000 3521.305176 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5302.044434 0.000000 3499.981445 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5429.820801 0.000000 3469.427490 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5562.281250 0.000000 3456.791504 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5716.646973 0.000000 3456.677002 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5808.836914 0.000000 3522.287598 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5884.629883 0.000000 3665.562500 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
5969.932617 0.000000 3767.614258 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6107.879883 0.000000 3759.245117 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6164.384277 0.000000 3672.091309 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6264.890137 0.000000 3732.999756 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6340.957520 0.000000 3635.495361 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
6317.767578 0.000000 3354.130371 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3064.282715 0.000000 3343.435303 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2976.094727 0.000000 3500.511963 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2815.877441 0.000000 3705.889404 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
3356.922363 0.000000 3458.158203 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="waterfall"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="coast_foam_layer"
|
|
||||||
entity="waterfall"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="waterfall_bottom"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="coast_foam_layer"
|
|
||||||
entity="waterfall_bottom"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
|
|
@ -1,24 +0,0 @@
|
||||||
layer={
|
|
||||||
name="activities_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="building_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="unit_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,714 +0,0 @@
|
||||||
object={
|
|
||||||
name="tree_leaf_01_single_generator_1_0"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=yes
|
|
||||||
layer="tree_high_layer"
|
|
||||||
pdxmesh="tree_leaf_01_single_a_mesh"
|
|
||||||
count=705
|
|
||||||
transform="613.277649 0.000000 1696.724121 0.000000 0.976418 0.000000 0.215889 0.680986 0.680986 0.680986
|
|
||||||
606.628540 0.000000 1712.260864 0.000000 0.072505 0.000000 0.997368 0.532430 0.532430 0.532430
|
|
||||||
601.336792 0.000000 1700.324463 0.000000 0.998750 0.000000 -0.049985 0.706292 0.706292 0.706292
|
|
||||||
605.499634 0.000000 1687.226929 0.000000 0.632787 0.000000 0.774325 0.622613 0.622613 0.622613
|
|
||||||
609.016052 0.000000 1695.853149 0.000000 0.675142 0.000000 -0.737688 0.721748 0.721748 0.721748
|
|
||||||
606.025330 0.000000 1703.166260 0.000000 0.172410 0.000000 0.985025 0.621847 0.621847 0.621847
|
|
||||||
598.148071 0.000000 1699.861938 0.000000 0.958887 0.000000 0.283788 0.675360 0.675360 0.675360
|
|
||||||
600.759460 0.000000 1697.264893 0.000000 0.951563 0.000000 -0.307454 0.717477 0.717477 0.717477
|
|
||||||
601.455566 0.000000 1703.074951 0.000000 0.917223 0.000000 0.398374 0.674222 0.674222 0.674222
|
|
||||||
602.880371 0.000000 1687.840576 0.000000 0.273522 0.000000 0.961866 0.598258 0.598258 0.598258
|
|
||||||
611.469788 0.000000 1694.837280 0.000000 0.529858 0.000000 -0.848086 0.813228 0.813228 0.813228
|
|
||||||
607.414673 0.000000 1710.087280 0.000000 0.883545 0.000000 0.468345 0.651447 0.651447 0.651447
|
|
||||||
613.436707 0.000000 1699.089478 0.000000 0.854426 0.000000 -0.519573 0.760152 0.760152 0.760152
|
|
||||||
614.001709 0.000000 1701.756592 0.000000 0.696354 0.000000 -0.717699 0.778340 0.778340 0.778340
|
|
||||||
610.848633 0.000000 1696.764771 0.000000 0.271136 0.000000 0.962541 0.575411 0.575411 0.575411
|
|
||||||
604.570312 0.000000 1711.907959 0.000000 0.590623 0.000000 -0.806947 0.780405 0.780405 0.780405
|
|
||||||
599.892944 0.000000 1699.127197 0.000000 0.731001 0.000000 -0.682376 0.764310 0.764310 0.764310
|
|
||||||
602.093567 0.000000 1689.638794 0.000000 0.029774 0.000000 -0.999557 0.853504 0.853504 0.853504
|
|
||||||
599.354980 0.000000 1685.290039 0.000000 0.498005 0.000000 -0.867174 0.817382 0.817382 0.817382
|
|
||||||
614.989136 0.000000 1698.577515 0.000000 0.278584 0.000000 0.960412 0.555890 0.555890 0.555890
|
|
||||||
604.358582 0.000000 1688.240723 0.000000 0.189464 0.000000 -0.981888 0.902606 0.902606 0.902606
|
|
||||||
630.625671 0.000000 1738.841919 0.000000 0.335583 0.000000 -0.942011 0.961938 0.961938 0.961938
|
|
||||||
627.149170 0.000000 1731.027344 0.000000 0.106026 0.000000 -0.994363 0.758868 0.758868 0.758868
|
|
||||||
614.803711 0.000000 1736.438354 0.000000 0.724941 0.000000 0.688811 0.567210 0.567210 0.567210
|
|
||||||
631.160278 0.000000 1751.359375 0.000000 0.503821 0.000000 0.863808 0.645330 0.645330 0.645330
|
|
||||||
626.078003 0.000000 1735.507690 0.000000 0.933025 0.000000 0.359812 0.673628 0.673628 0.673628
|
|
||||||
630.262878 0.000000 1736.600220 0.000000 0.822588 0.000000 -0.568637 0.762364 0.762364 0.762364
|
|
||||||
616.503723 0.000000 1737.550171 0.000000 0.821644 0.000000 -0.570001 0.822951 0.822951 0.822951
|
|
||||||
632.431274 0.000000 1749.766968 0.000000 0.025343 0.000000 -0.999679 0.862048 0.862048 0.862048
|
|
||||||
630.044556 0.000000 1749.625000 0.000000 0.633116 0.000000 0.774057 0.600992 0.600992 0.600992
|
|
||||||
631.889160 0.000000 1737.567383 0.000000 0.876975 0.000000 0.480536 0.648316 0.648316 0.648316
|
|
||||||
617.767334 0.000000 1736.576782 0.000000 0.778963 0.000000 0.627070 0.562599 0.562599 0.562599
|
|
||||||
631.607910 0.000000 1739.855347 0.000000 0.882542 0.000000 0.470234 0.595624 0.595624 0.595624
|
|
||||||
616.053406 0.000000 1736.410034 0.000000 0.821220 0.000000 0.570612 0.576898 0.576898 0.576898
|
|
||||||
696.615967 0.000000 1767.174316 0.000000 0.823206 0.000000 0.567743 0.693669 0.693669 0.693669
|
|
||||||
703.151733 0.000000 1759.174194 0.000000 0.563036 0.000000 0.826433 0.519805 0.519805 0.519805
|
|
||||||
676.670715 0.000000 1749.226440 0.000000 0.129257 0.000000 0.991611 0.271842 0.271842 0.271842
|
|
||||||
699.517212 0.000000 1764.343750 0.000000 0.087106 0.000000 -0.996199 1.005936 1.005936 1.005936
|
|
||||||
662.319336 0.000000 1745.999878 0.000000 0.341599 0.000000 0.939846 0.554762 0.554762 0.554762
|
|
||||||
703.293945 0.000000 1756.418579 0.000000 0.816775 0.000000 -0.576956 0.780607 0.780607 0.780607
|
|
||||||
677.117432 0.000000 1759.062500 0.000000 0.659405 0.000000 -0.751788 0.804075 0.804075 0.804075
|
|
||||||
660.143311 0.000000 1744.209717 0.000000 0.860267 0.000000 0.509844 0.607439 0.607439 0.607439
|
|
||||||
661.735291 0.000000 1744.586792 0.000000 0.999994 0.000000 -0.003389 0.700586 0.700586 0.700586
|
|
||||||
698.209778 0.000000 1764.115845 0.000000 0.999920 0.000000 -0.012668 0.702612 0.702612 0.702612
|
|
||||||
676.770264 0.000000 1748.014038 0.000000 0.101531 0.000000 0.994832 0.263549 0.263549 0.263549
|
|
||||||
687.799377 0.000000 1762.346802 0.000000 0.947603 0.000000 -0.319451 0.776711 0.776711 0.776711
|
|
||||||
698.698242 0.000000 1765.180786 0.000000 0.441322 0.000000 0.897349 0.470333 0.470333 0.470333
|
|
||||||
677.614807 0.000000 1748.853149 0.000000 0.985125 0.000000 -0.171841 0.751307 0.751307 0.751307
|
|
||||||
703.988892 0.000000 1758.653564 0.000000 0.225302 0.000000 0.974289 0.451117 0.451117 0.451117
|
|
||||||
1687.185181 0.000000 1957.825562 0.000000 0.562027 0.000000 0.827119 0.637023 0.637023 0.637023
|
|
||||||
3898.708008 0.000000 1853.356812 0.000000 0.077552 0.000000 -0.996988 0.953115 0.953115 0.953115
|
|
||||||
619.731506 0.000000 2919.375488 0.000000 0.060624 0.000000 0.998161 0.581241 0.581241 0.581241
|
|
||||||
618.347046 0.000000 2916.630859 0.000000 0.999999 0.000000 0.001517 0.699897 0.699897 0.699897
|
|
||||||
623.026733 0.000000 2907.119385 0.000000 0.968640 0.000000 0.248468 0.593807 0.593807 0.593807
|
|
||||||
621.518127 0.000000 2917.986572 0.000000 0.605290 0.000000 0.796005 0.571285 0.571285 0.571285
|
|
||||||
622.580627 0.000000 2906.222656 0.000000 0.612895 0.000000 0.790164 0.314692 0.314692 0.314692
|
|
||||||
623.573608 0.000000 2906.269531 0.000000 0.236558 0.000000 0.971617 0.136688 0.136688 0.136688
|
|
||||||
845.326111 0.000000 2935.744873 0.000000 0.778772 0.000000 0.627306 0.579128 0.579128 0.579128
|
|
||||||
836.809875 0.000000 2932.717773 0.000000 0.230190 0.000000 0.973146 0.671930 0.671930 0.671930
|
|
||||||
844.406677 0.000000 2932.186279 0.000000 0.402931 0.000000 -0.915231 0.778794 0.778794 0.778794
|
|
||||||
840.804321 0.000000 2937.943604 0.000000 0.797984 0.000000 -0.602679 0.924956 0.924956 0.924956
|
|
||||||
842.781738 0.000000 2936.368896 0.000000 0.882880 0.000000 -0.469599 0.864877 0.864877 0.864877
|
|
||||||
842.154785 0.000000 2931.091064 0.000000 0.771497 0.000000 -0.636234 0.747001 0.747001 0.747001
|
|
||||||
843.134766 0.000000 2938.846924 0.000000 0.998945 0.000000 -0.045927 0.705058 0.705058 0.705058
|
|
||||||
843.470093 0.000000 2934.226562 0.000000 0.366624 0.000000 -0.930369 1.218095 1.218095 1.218095
|
|
||||||
840.221619 0.000000 2936.033447 0.000000 0.633887 0.000000 0.773425 0.392493 0.392493 0.392493
|
|
||||||
844.413269 0.000000 2937.437500 0.000000 0.250426 0.000000 -0.968136 0.845073 0.845073 0.845073
|
|
||||||
840.831482 0.000000 2939.803955 0.000000 0.867137 0.000000 -0.498071 0.760135 0.760135 0.760135
|
|
||||||
842.441162 0.000000 2932.836426 0.000000 0.317055 0.000000 -0.948407 1.042462 1.042462 1.042462
|
|
||||||
838.977173 0.000000 2933.565674 0.000000 0.664380 0.000000 -0.747395 0.815065 0.815065 0.815065
|
|
||||||
838.717102 0.000000 2936.789551 0.000000 0.993433 0.000000 -0.114412 0.720439 0.720439 0.720439
|
|
||||||
840.943970 0.000000 2932.448242 0.000000 0.849780 0.000000 0.527138 0.538929 0.538929 0.538929
|
|
||||||
842.243652 0.000000 2937.722168 0.000000 0.992003 0.000000 -0.126211 0.742683 0.742683 0.742683
|
|
||||||
841.567505 0.000000 2935.548096 0.000000 0.606896 0.000000 -0.794782 1.109380 1.109380 1.109380
|
|
||||||
839.814209 0.000000 2934.675293 0.000000 0.849310 0.000000 -0.527894 0.845780 0.845780 0.845780
|
|
||||||
843.937744 0.000000 2935.517578 0.000000 0.984124 0.000000 0.177482 0.622670 0.622670 0.622670
|
|
||||||
841.490295 0.000000 2936.767334 0.000000 0.277477 0.000000 -0.960732 1.148493 1.148493 1.148493
|
|
||||||
840.223755 0.000000 2933.416504 0.000000 0.999338 0.000000 0.036368 0.689447 0.689447 0.689447
|
|
||||||
842.291931 0.000000 2934.503906 0.000000 0.806848 0.000000 -0.590759 0.973909 0.973909 0.973909
|
|
||||||
843.579407 0.000000 2933.081543 0.000000 0.364762 0.000000 0.931101 0.371463 0.371463 0.371463
|
|
||||||
843.319092 0.000000 2937.329102 0.000000 0.960550 0.000000 0.278109 0.604945 0.604945 0.604945
|
|
||||||
840.502930 0.000000 2936.989502 0.000000 0.790216 0.000000 -0.612828 0.929401 0.929401 0.929401
|
|
||||||
842.917480 0.000000 2935.285645 0.000000 0.995954 0.000000 -0.089863 0.738999 0.738999 0.738999
|
|
||||||
840.668335 0.000000 2935.154053 0.000000 0.642162 0.000000 -0.766569 1.089252 1.089252 1.089252
|
|
||||||
5307.910645 0.000000 316.658203 0.000000 0.792301 0.000000 -0.610131 0.867434 0.867434 0.867434
|
|
||||||
5308.251465 0.000000 304.261108 0.000000 0.917652 0.000000 0.397385 0.643580 0.643580 0.643580
|
|
||||||
5307.085938 0.000000 302.127533 0.000000 0.751010 0.000000 -0.660291 0.749154 0.749154 0.749154
|
|
||||||
5306.366211 0.000000 304.788788 0.000000 0.791205 0.000000 0.611551 0.573506 0.573506 0.573506
|
|
||||||
5308.078613 0.000000 305.946747 0.000000 0.501474 0.000000 -0.865173 0.844340 0.844340 0.844340
|
|
||||||
5306.536133 0.000000 317.731842 0.000000 0.644820 0.000000 0.764334 0.478020 0.478020 0.478020
|
|
||||||
5307.676270 0.000000 317.827515 0.000000 0.999995 0.000000 0.003094 0.699211 0.699211 0.699211
|
|
||||||
5306.830078 0.000000 316.600830 0.000000 0.765633 0.000000 0.643277 0.521711 0.521711 0.521711
|
|
||||||
5345.141113 0.000000 276.849457 0.000000 0.878870 0.000000 0.477061 0.686095 0.686095 0.686095
|
|
||||||
5312.065918 0.000000 290.103149 0.000000 0.284539 0.000000 -0.958664 0.814285 0.814285 0.814285
|
|
||||||
5351.279785 0.000000 281.521210 0.000000 0.999532 0.000000 0.030605 0.687215 0.687215 0.687215
|
|
||||||
5345.019531 0.000000 296.806091 0.000000 0.096549 0.000000 0.995328 0.398595 0.398595 0.398595
|
|
||||||
5367.006348 0.000000 313.687988 0.000000 0.448363 0.000000 0.893852 0.396583 0.396583 0.396583
|
|
||||||
5369.655273 0.000000 287.926575 0.000000 0.568363 0.000000 0.822778 0.551398 0.551398 0.551398
|
|
||||||
5338.920410 0.000000 288.187775 0.000000 0.360364 0.000000 -0.932812 0.767227 0.767227 0.767227
|
|
||||||
5331.125488 0.000000 304.275391 0.000000 0.001370 0.000000 0.999999 0.381846 0.381846 0.381846
|
|
||||||
5373.367676 0.000000 285.838928 0.000000 0.608374 0.000000 -0.793650 0.954743 0.954743 0.954743
|
|
||||||
5330.301270 0.000000 285.780212 0.000000 0.421008 0.000000 0.907057 0.310808 0.310808 0.310808
|
|
||||||
5363.860840 0.000000 306.483154 0.000000 0.131325 0.000000 -0.991339 1.052090 1.052090 1.052090
|
|
||||||
5367.640137 0.000000 299.695587 0.000000 0.642766 0.000000 0.766062 0.617644 0.617644 0.617644
|
|
||||||
5328.728516 0.000000 313.253693 0.000000 0.214536 0.000000 -0.976716 0.759181 0.759181 0.759181
|
|
||||||
5360.627441 0.000000 307.494202 0.000000 0.624465 0.000000 -0.781053 0.823749 0.823749 0.823749
|
|
||||||
5325.270020 0.000000 273.522247 0.000000 0.080907 0.000000 -0.996722 0.840592 0.840592 0.840592
|
|
||||||
5348.972168 0.000000 279.535797 0.000000 0.955386 0.000000 0.295361 0.593631 0.593631 0.593631
|
|
||||||
5334.474121 0.000000 313.012665 0.000000 0.303775 0.000000 0.952744 0.653680 0.653680 0.653680
|
|
||||||
5351.828125 0.000000 278.618988 0.000000 0.946726 0.000000 0.322040 0.633532 0.633532 0.633532
|
|
||||||
5322.748535 0.000000 274.732910 0.000000 0.685067 0.000000 -0.728480 0.799834 0.799834 0.799834
|
|
||||||
5331.476562 0.000000 312.403259 0.000000 0.324004 0.000000 0.946056 0.437615 0.437615 0.437615
|
|
||||||
5347.503906 0.000000 275.295166 0.000000 0.580288 0.000000 -0.814411 0.877962 0.877962 0.877962
|
|
||||||
5356.709961 0.000000 279.207489 0.000000 0.147213 0.000000 -0.989105 0.933768 0.933768 0.933768
|
|
||||||
5339.661621 0.000000 290.653473 0.000000 0.909652 0.000000 -0.415371 0.756892 0.756892 0.756892
|
|
||||||
5342.075195 0.000000 273.082947 0.000000 0.996412 0.000000 -0.084636 0.709626 0.709626 0.709626
|
|
||||||
5327.567871 0.000000 315.566193 0.000000 0.484827 0.000000 -0.874610 0.763258 0.763258 0.763258
|
|
||||||
5361.814453 0.000000 279.487274 0.000000 0.651634 0.000000 -0.758533 0.861011 0.861011 0.861011
|
|
||||||
5346.564453 0.000000 278.953339 0.000000 0.949488 0.000000 -0.313803 0.763592 0.763592 0.763592
|
|
||||||
5330.664551 0.000000 283.380951 0.000000 0.999945 0.000000 0.010501 0.699284 0.699284 0.699284
|
|
||||||
5337.847656 0.000000 314.040558 0.000000 0.423127 0.000000 0.906070 0.571197 0.571197 0.571197
|
|
||||||
5361.540039 0.000000 276.767151 0.000000 0.298740 0.000000 0.954335 0.589253 0.589253 0.589253
|
|
||||||
5314.381348 0.000000 290.611542 0.000000 0.704186 0.000000 0.710016 0.425429 0.425429 0.425429
|
|
||||||
5374.582031 0.000000 287.533569 0.000000 0.467018 0.000000 -0.884248 0.804276 0.804276 0.804276
|
|
||||||
5368.538574 0.000000 289.682648 0.000000 0.420388 0.000000 -0.907344 0.964253 0.964253 0.964253
|
|
||||||
5370.995117 0.000000 289.402832 0.000000 0.672039 0.000000 0.740516 0.614025 0.614025 0.614025
|
|
||||||
5358.542969 0.000000 279.711151 0.000000 0.547926 0.000000 -0.836527 0.902609 0.902609 0.902609
|
|
||||||
5346.757324 0.000000 297.624084 0.000000 0.480679 0.000000 0.876897 0.520594 0.520594 0.520594
|
|
||||||
5335.924805 0.000000 314.240936 0.000000 0.612667 0.000000 -0.790341 0.954830 0.954830 0.954830
|
|
||||||
5328.279785 0.000000 280.733032 0.000000 0.917409 0.000000 -0.397945 0.828744 0.828744 0.828744
|
|
||||||
5326.081055 0.000000 317.386078 0.000000 0.993484 0.000000 -0.113972 0.734932 0.734932 0.734932
|
|
||||||
5350.658691 0.000000 279.921967 0.000000 0.121106 0.000000 -0.992640 0.993820 0.993820 0.993820
|
|
||||||
5323.622559 0.000000 273.038300 0.000000 0.292049 0.000000 -0.956403 0.898218 0.898218 0.898218
|
|
||||||
5322.795410 0.000000 318.958008 0.000000 0.920725 0.000000 -0.390211 0.826097 0.826097 0.826097
|
|
||||||
5366.948242 0.000000 311.968353 0.000000 0.248101 0.000000 -0.968734 0.861486 0.861486 0.861486
|
|
||||||
5374.724121 0.000000 284.777985 0.000000 0.350430 0.000000 -0.936589 0.956449 0.956449 0.956449
|
|
||||||
5330.334961 0.000000 313.707031 0.000000 0.979418 0.000000 -0.201844 0.742977 0.742977 0.742977
|
|
||||||
5357.990234 0.000000 278.085083 0.000000 0.070859 0.000000 0.997486 0.453611 0.453611 0.453611
|
|
||||||
5328.950195 0.000000 319.204346 0.000000 0.326076 0.000000 0.945344 0.225944 0.225944 0.225944
|
|
||||||
5343.684570 0.000000 273.521820 0.000000 0.342517 0.000000 0.939512 0.561280 0.561280 0.561280
|
|
||||||
5350.217773 0.000000 278.326508 0.000000 0.779545 0.000000 -0.626346 0.837212 0.837212 0.837212
|
|
||||||
5349.716797 0.000000 281.221527 0.000000 0.282760 0.000000 0.959191 0.549644 0.549644 0.549644
|
|
||||||
5368.595703 0.000000 286.698242 0.000000 0.080670 0.000000 -0.996741 0.929149 0.929149 0.929149
|
|
||||||
5366.160156 0.000000 300.318268 0.000000 0.980696 0.000000 0.195540 0.672829 0.672829 0.672829
|
|
||||||
5322.009766 0.000000 272.581818 0.000000 0.927071 0.000000 0.374887 0.640232 0.640232 0.640232
|
|
||||||
5346.743164 0.000000 276.720734 0.000000 0.176933 0.000000 -0.984223 0.987242 0.987242 0.987242
|
|
||||||
5362.285645 0.000000 306.677673 0.000000 0.980802 0.000000 -0.195005 0.748018 0.748018 0.748018
|
|
||||||
5360.091309 0.000000 279.374634 0.000000 0.821476 0.000000 0.570244 0.586533 0.586533 0.586533
|
|
||||||
5344.811035 0.000000 281.123474 0.000000 0.541515 0.000000 -0.840691 0.830880 0.830880 0.830880
|
|
||||||
5341.179199 0.000000 290.490204 0.000000 0.637907 0.000000 0.770113 0.540240 0.540240 0.540240
|
|
||||||
5331.687500 0.000000 305.655609 0.000000 0.420224 0.000000 -0.907421 0.930514 0.930514 0.930514
|
|
||||||
5315.849609 0.000000 290.540527 0.000000 0.539162 0.000000 -0.842202 1.048240 1.048240 1.048240
|
|
||||||
5361.109375 0.000000 278.189056 0.000000 0.319423 0.000000 -0.947612 0.932931 0.932931 0.932931
|
|
||||||
5346.408203 0.000000 296.204834 0.000000 0.709177 0.000000 0.705030 0.568727 0.568727 0.568727
|
|
||||||
5345.101074 0.000000 278.972260 0.000000 0.904240 0.000000 -0.427024 0.834931 0.834931 0.834931
|
|
||||||
5330.439453 0.000000 302.966675 0.000000 0.997842 0.000000 0.065653 0.686222 0.686222 0.686222
|
|
||||||
5373.021973 0.000000 284.476135 0.000000 0.277417 0.000000 0.960750 0.341639 0.341639 0.341639
|
|
||||||
5331.166992 0.000000 284.693359 0.000000 0.437860 0.000000 -0.899043 1.082801 1.082801 1.082801
|
|
||||||
5368.196289 0.000000 288.069153 0.000000 0.280786 0.000000 0.959771 0.401054 0.401054 0.401054
|
|
||||||
5344.695312 0.000000 272.676147 0.000000 0.078997 0.000000 -0.996875 1.174456 1.174456 1.174456
|
|
||||||
5363.946777 0.000000 307.939941 0.000000 0.400838 0.000000 0.916149 0.416592 0.416592 0.416592
|
|
||||||
5331.730957 0.000000 313.853088 0.000000 0.240589 0.000000 0.970627 0.419222 0.419222 0.419222
|
|
||||||
5327.243652 0.000000 316.816498 0.000000 0.740536 0.000000 0.672016 0.474627 0.474627 0.474627
|
|
||||||
5335.446289 0.000000 315.439972 0.000000 0.493488 0.000000 -0.869753 0.994909 0.994909 0.994909
|
|
||||||
5329.626465 0.000000 318.162842 0.000000 0.058400 0.000000 0.998293 0.121187 0.121187 0.121187
|
|
||||||
5347.730957 0.000000 279.388184 0.000000 0.369666 0.000000 0.929165 0.462495 0.462495 0.462495
|
|
||||||
5369.861816 0.000000 289.855255 0.000000 0.917167 0.000000 0.398504 0.604731 0.604731 0.604731
|
|
||||||
5374.561035 0.000000 285.962219 0.000000 0.158119 0.000000 -0.987420 0.998580 0.998580 0.998580
|
|
||||||
5323.979004 0.000000 319.323425 0.000000 0.398598 0.000000 0.917126 0.334850 0.334850 0.334850
|
|
||||||
5367.802246 0.000000 312.830933 0.000000 0.959464 0.000000 0.281832 0.621611 0.621611 0.621611
|
|
||||||
5349.083496 0.000000 278.415497 0.000000 0.589344 0.000000 0.807882 0.366331 0.366331 0.366331
|
|
||||||
5314.769043 0.000000 291.669891 0.000000 0.129591 0.000000 0.991568 0.198920 0.198920 0.198920
|
|
||||||
5329.233887 0.000000 281.246429 0.000000 0.600546 0.000000 0.799590 0.408520 0.408520 0.408520
|
|
||||||
5334.864258 0.000000 314.115204 0.000000 0.907149 0.000000 0.420809 0.578553 0.578553 0.578553
|
|
||||||
5328.287598 0.000000 281.771973 0.000000 0.537973 0.000000 -0.842962 1.015435 1.015435 1.015435
|
|
||||||
5351.564453 0.000000 280.526337 0.000000 0.740547 0.000000 0.672005 0.392212 0.392212 0.392212
|
|
||||||
5322.279785 0.000000 319.896667 0.000000 0.264043 0.000000 0.964511 0.289938 0.289938 0.289938
|
|
||||||
5349.904785 0.000000 279.262573 0.000000 0.932718 0.000000 0.360606 0.569123 0.569123 0.569123
|
|
||||||
5350.572754 0.000000 280.881439 0.000000 0.833876 0.000000 0.551952 0.455786 0.455786 0.455786
|
|
||||||
5350.411621 0.000000 281.791473 0.000000 0.187152 0.000000 0.982331 0.122553 0.122553 0.122553
|
|
||||||
5329.779297 0.000000 319.579041 0.000000 0.822620 0.000000 0.568591 0.468533 0.468533 0.468533
|
|
||||||
5299.056641 0.000000 356.756256 0.000000 0.779604 0.000000 -0.626273 0.718923 0.718923 0.718923
|
|
||||||
5305.770508 0.000000 333.447357 0.000000 0.995305 0.000000 0.096789 0.678993 0.678993 0.678993
|
|
||||||
5293.002930 0.000000 372.377136 0.000000 0.134184 0.000000 -0.990956 0.878202 0.878202 0.878202
|
|
||||||
5307.817383 0.000000 363.731323 0.000000 0.943981 0.000000 -0.329999 0.831061 0.831061 0.831061
|
|
||||||
5304.053711 0.000000 359.518127 0.000000 0.987173 0.000000 0.159656 0.686270 0.686270 0.686270
|
|
||||||
5299.230469 0.000000 361.628326 0.000000 0.701544 0.000000 -0.712626 0.776243 0.776243 0.776243
|
|
||||||
5309.374023 0.000000 330.189667 0.000000 0.062117 0.000000 0.998069 0.523356 0.523356 0.523356
|
|
||||||
5309.141113 0.000000 336.387909 0.000000 0.818757 0.000000 -0.574140 0.889167 0.889167 0.889167
|
|
||||||
5303.647949 0.000000 363.679962 0.000000 0.884035 0.000000 -0.467420 0.727199 0.727199 0.727199
|
|
||||||
5294.991211 0.000000 375.458313 0.000000 0.613967 0.000000 0.789332 0.385217 0.385217 0.385217
|
|
||||||
5300.994141 0.000000 359.174500 0.000000 0.953324 0.000000 -0.301950 0.811498 0.811498 0.811498
|
|
||||||
5291.986816 0.000000 375.190033 0.000000 0.659268 0.000000 0.751908 0.610773 0.610773 0.610773
|
|
||||||
5305.775879 0.000000 361.807892 0.000000 0.479483 0.000000 -0.877551 0.902089 0.902089 0.902089
|
|
||||||
5301.950195 0.000000 361.681763 0.000000 0.745519 0.000000 0.666485 0.492202 0.492202 0.492202
|
|
||||||
5298.132812 0.000000 359.121948 0.000000 0.764063 0.000000 0.645141 0.578683 0.578683 0.578683
|
|
||||||
5297.185059 0.000000 376.861389 0.000000 0.014616 0.000000 -0.999893 0.789745 0.789745 0.789745
|
|
||||||
5300.603516 0.000000 363.775146 0.000000 0.725967 0.000000 0.687730 0.637711 0.637711 0.637711
|
|
||||||
5304.068359 0.000000 335.826691 0.000000 0.957843 0.000000 -0.287291 0.771294 0.771294 0.771294
|
|
||||||
5301.348145 0.000000 356.926392 0.000000 0.151057 0.000000 0.988525 0.451990 0.451990 0.451990
|
|
||||||
5295.053711 0.000000 373.153046 0.000000 0.283529 0.000000 -0.958964 0.899602 0.899602 0.899602
|
|
||||||
5311.189453 0.000000 335.282318 0.000000 0.953511 0.000000 0.301358 0.657738 0.657738 0.657738
|
|
||||||
5308.380371 0.000000 334.451538 0.000000 0.808972 0.000000 -0.587847 0.904260 0.904260 0.904260
|
|
||||||
5293.950195 0.000000 377.092072 0.000000 0.222806 0.000000 0.974863 0.438880 0.438880 0.438880
|
|
||||||
5296.615234 0.000000 374.421722 0.000000 0.858586 0.000000 -0.512670 0.778079 0.778079 0.778079
|
|
||||||
5305.844727 0.000000 363.657013 0.000000 0.423307 0.000000 -0.905986 0.955580 0.955580 0.955580
|
|
||||||
5293.562988 0.000000 374.250488 0.000000 0.395454 0.000000 -0.918486 1.070296 1.070296 1.070296
|
|
||||||
5302.764160 0.000000 358.221313 0.000000 0.064948 0.000000 0.997889 0.271063 0.271063 0.271063
|
|
||||||
5304.033203 0.000000 361.424652 0.000000 0.679866 0.000000 -0.733336 0.855373 0.855373 0.855373
|
|
||||||
5305.762207 0.000000 360.033752 0.000000 0.209256 0.000000 0.977861 0.443318 0.443318 0.443318
|
|
||||||
5310.778320 0.000000 331.317383 0.000000 0.959800 0.000000 0.280685 0.606029 0.606029 0.606029
|
|
||||||
5302.416016 0.000000 360.057587 0.000000 0.999987 0.000000 0.005041 0.698916 0.698916 0.698916
|
|
||||||
5299.516602 0.000000 359.927551 0.000000 0.922787 0.000000 0.385312 0.631566 0.631566 0.631566
|
|
||||||
5299.599609 0.000000 358.257782 0.000000 0.695310 0.000000 0.718710 0.561255 0.561255 0.561255
|
|
||||||
5305.336426 0.000000 334.950714 0.000000 0.631196 0.000000 -0.775623 0.917187 0.917187 0.917187
|
|
||||||
5295.584961 0.000000 376.843323 0.000000 0.992988 0.000000 0.118214 0.672666 0.672666 0.672666
|
|
||||||
5300.598633 0.000000 361.085083 0.000000 0.775849 0.000000 0.630919 0.505518 0.505518 0.505518
|
|
||||||
5309.762695 0.000000 334.965881 0.000000 0.709495 0.000000 -0.704710 0.954194 0.954194 0.954194
|
|
||||||
5307.056152 0.000000 362.513306 0.000000 0.255495 0.000000 -0.966810 1.211471 1.211471 1.211471
|
|
||||||
5293.488770 0.000000 375.746765 0.000000 0.916052 0.000000 -0.401060 0.831255 0.831255 0.831255
|
|
||||||
5304.713867 0.000000 362.744232 0.000000 0.995673 0.000000 -0.092927 0.720980 0.720980 0.720980
|
|
||||||
5306.836426 0.000000 364.758911 0.000000 0.429084 0.000000 -0.903265 0.914739 0.914739 0.914739
|
|
||||||
5306.909668 0.000000 361.022034 0.000000 0.767988 0.000000 -0.640464 0.938091 0.938091 0.938091
|
|
||||||
5304.437012 0.000000 332.962280 0.000000 0.116676 0.000000 0.993170 0.384949 0.384949 0.384949
|
|
||||||
5309.070801 0.000000 337.737946 0.000000 0.682535 0.000000 0.730853 0.446488 0.446488 0.446488
|
|
||||||
5308.019531 0.000000 335.708710 0.000000 0.986267 0.000000 -0.165160 0.753932 0.753932 0.753932
|
|
||||||
5304.212402 0.000000 334.440002 0.000000 0.062317 0.000000 -0.998056 1.069057 1.069057 1.069057
|
|
||||||
5301.575684 0.000000 358.126740 0.000000 0.460977 0.000000 -0.887412 1.096830 1.096830 1.096830
|
|
||||||
5294.770996 0.000000 374.324158 0.000000 0.962760 0.000000 0.270358 0.605272 0.605272 0.605272
|
|
||||||
5301.341797 0.000000 360.255402 0.000000 0.948184 0.000000 0.317722 0.607898 0.607898 0.607898
|
|
||||||
5302.110840 0.000000 359.046143 0.000000 0.608266 0.000000 0.793733 0.438809 0.438809 0.438809
|
|
||||||
5295.656250 0.000000 374.712311 0.000000 0.376217 0.000000 0.926531 0.289935 0.289935 0.289935
|
|
||||||
5306.142090 0.000000 362.728912 0.000000 0.919580 0.000000 -0.392903 0.857360 0.857360 0.857360
|
|
||||||
5292.596191 0.000000 374.478577 0.000000 0.378203 0.000000 -0.925723 1.076247 1.076247 1.076247
|
|
||||||
5308.971191 0.000000 335.466095 0.000000 0.973679 0.000000 -0.227925 0.774744 0.774744 0.774744
|
|
||||||
5310.272461 0.000000 330.456421 0.000000 0.699756 0.000000 -0.714382 0.962828 0.962828 0.962828
|
|
||||||
5300.440918 0.000000 359.915894 0.000000 0.802839 0.000000 0.596195 0.467815 0.467815 0.467815
|
|
||||||
5294.130371 0.000000 375.027832 0.000000 0.188233 0.000000 0.982124 0.221994 0.221994 0.221994
|
|
||||||
5306.753418 0.000000 363.434143 0.000000 0.996243 0.000000 -0.086598 0.733790 0.733790 0.733790
|
|
||||||
5300.071777 0.000000 359.031403 0.000000 0.941001 0.000000 0.338405 0.574513 0.574513 0.574513
|
|
||||||
5300.672852 0.000000 358.324310 0.000000 0.605347 0.000000 -0.795962 1.034634 1.034634 1.034634
|
|
||||||
5328.418457 0.000000 337.339447 0.000000 0.683379 0.000000 -0.730064 1.001783 1.001783 1.001783
|
|
||||||
5361.713867 0.000000 380.314331 0.000000 0.955507 0.000000 -0.294970 0.802561 0.802561 0.802561
|
|
||||||
5351.279785 0.000000 345.505585 0.000000 0.798417 0.000000 -0.602105 0.825338 0.825338 0.825338
|
|
||||||
5349.838379 0.000000 340.595428 0.000000 0.722538 0.000000 -0.691331 0.965462 0.965462 0.965462
|
|
||||||
5366.047852 0.000000 331.185730 0.000000 0.027070 0.000000 0.999634 0.589391 0.589391 0.589391
|
|
||||||
5347.365723 0.000000 357.062622 0.000000 0.868196 0.000000 -0.496221 0.794371 0.794371 0.794371
|
|
||||||
5365.340820 0.000000 381.988098 0.000000 0.696063 0.000000 0.717981 0.567035 0.567035 0.567035
|
|
||||||
5328.881836 0.000000 319.927643 0.000000 0.569501 0.000000 0.821991 0.330714 0.330714 0.330714
|
|
||||||
5311.472656 0.000000 332.409485 0.000000 0.895853 0.000000 0.444351 0.687930 0.687930 0.687930
|
|
||||||
5362.205078 0.000000 383.896942 0.000000 0.818968 0.000000 0.573840 0.548330 0.548330 0.548330
|
|
||||||
5359.060059 0.000000 382.123077 0.000000 0.973316 0.000000 -0.229467 0.712543 0.712543 0.712543
|
|
||||||
5348.972168 0.000000 343.520172 0.000000 0.329165 0.000000 -0.944272 0.827377 0.827377 0.827377
|
|
||||||
5334.666504 0.000000 348.456696 0.000000 0.877015 0.000000 0.480463 0.639566 0.639566 0.639566
|
|
||||||
5360.958008 0.000000 336.219391 0.000000 0.913906 0.000000 -0.405926 0.757707 0.757707 0.757707
|
|
||||||
5322.748535 0.000000 338.717285 0.000000 0.620668 0.000000 0.784073 0.559832 0.559832 0.559832
|
|
||||||
5369.768066 0.000000 361.807892 0.000000 0.480957 0.000000 0.876744 0.507570 0.507570 0.507570
|
|
||||||
5359.739746 0.000000 339.239532 0.000000 0.977606 0.000000 -0.210442 0.717045 0.717045 0.717045
|
|
||||||
5367.176270 0.000000 333.613678 0.000000 0.946024 0.000000 -0.324098 0.758834 0.758834 0.758834
|
|
||||||
5329.541504 0.000000 356.123505 0.000000 0.780831 0.000000 0.624743 0.556129 0.556129 0.556129
|
|
||||||
5332.535645 0.000000 362.278168 0.000000 0.433245 0.000000 0.901276 0.399810 0.399810 0.399810
|
|
||||||
5375.251953 0.000000 356.279999 0.000000 0.545303 0.000000 -0.838239 0.969263 0.969263 0.969263
|
|
||||||
5364.062988 0.000000 380.003479 0.000000 0.818260 0.000000 0.574849 0.598326 0.598326 0.598326
|
|
||||||
5332.541504 0.000000 349.323029 0.000000 0.540906 0.000000 -0.841083 0.951471 0.951471 0.951471
|
|
||||||
5311.423828 0.000000 329.170776 0.000000 0.984224 0.000000 -0.176929 0.711812 0.711812 0.711812
|
|
||||||
5373.837402 0.000000 357.943024 0.000000 0.270859 0.000000 -0.962619 0.799693 0.799693 0.799693
|
|
||||||
5363.157227 0.000000 381.954987 0.000000 0.779707 0.000000 0.626145 0.448146 0.448146 0.448146
|
|
||||||
5326.472656 0.000000 339.270538 0.000000 0.390529 0.000000 -0.920591 1.100616 1.100616 1.100616
|
|
||||||
5374.666992 0.000000 354.186401 0.000000 0.683869 0.000000 0.729605 0.561379 0.561379 0.561379
|
|
||||||
5348.100586 0.000000 341.570221 0.000000 0.339369 0.000000 -0.940653 1.125861 1.125861 1.125861
|
|
||||||
5332.354492 0.000000 339.784119 0.000000 0.828156 0.000000 0.560498 0.528435 0.528435 0.528435
|
|
||||||
5360.967773 0.000000 382.283112 0.000000 0.875097 0.000000 -0.483948 0.810351 0.810351 0.810351
|
|
||||||
5359.808594 0.000000 380.321808 0.000000 0.822518 0.000000 -0.568739 0.768721 0.768721 0.768721
|
|
||||||
5362.034668 0.000000 378.537964 0.000000 0.979532 0.000000 0.201290 0.662810 0.662810 0.662810
|
|
||||||
5368.025391 0.000000 361.424652 0.000000 0.818926 0.000000 -0.573899 0.810027 0.810027 0.810027
|
|
||||||
5333.749512 0.000000 338.343597 0.000000 0.703504 0.000000 0.710691 0.472064 0.472064 0.472064
|
|
||||||
5369.754395 0.000000 360.033752 0.000000 0.047460 0.000000 0.998873 0.425801 0.425801 0.425801
|
|
||||||
5321.035645 0.000000 338.761688 0.000000 0.453075 0.000000 0.891473 0.517280 0.517280 0.517280
|
|
||||||
5335.282715 0.000000 349.949097 0.000000 0.338104 0.000000 0.941109 0.552178 0.552178 0.552178
|
|
||||||
5365.567383 0.000000 333.388824 0.000000 0.088801 0.000000 0.996049 0.492824 0.492824 0.492824
|
|
||||||
5311.418945 0.000000 334.924164 0.000000 0.257539 0.000000 -0.966268 0.880902 0.880902 0.880902
|
|
||||||
5349.716797 0.000000 345.205902 0.000000 0.990286 0.000000 -0.139047 0.729254 0.729254 0.729254
|
|
||||||
5311.806641 0.000000 330.746033 0.000000 0.497216 0.000000 0.867627 0.353057 0.353057 0.353057
|
|
||||||
5352.929199 0.000000 341.430573 0.000000 0.639318 0.000000 0.768942 0.430200 0.430200 0.430200
|
|
||||||
5359.410645 0.000000 333.280640 0.000000 0.988588 0.000000 0.150647 0.646617 0.646617 0.646617
|
|
||||||
5369.254395 0.000000 358.569031 0.000000 0.749591 0.000000 0.661901 0.566004 0.566004 0.566004
|
|
||||||
5328.603516 0.000000 357.329559 0.000000 0.981330 0.000000 -0.192333 0.741263 0.741263 0.741263
|
|
||||||
5353.982422 0.000000 340.357056 0.000000 0.901831 0.000000 0.432089 0.562573 0.562573 0.562573
|
|
||||||
5365.745605 0.000000 380.530029 0.000000 0.874847 0.000000 0.484399 0.616048 0.616048 0.616048
|
|
||||||
5342.208984 0.000000 360.877869 0.000000 0.041927 0.000000 -0.999121 1.050007 1.050007 1.050007
|
|
||||||
5360.623535 0.000000 379.019318 0.000000 0.227328 0.000000 -0.973818 0.887546 0.887546 0.887546
|
|
||||||
5367.030273 0.000000 332.199066 0.000000 0.804274 0.000000 0.594259 0.586569 0.586569 0.586569
|
|
||||||
5361.030273 0.000000 338.745972 0.000000 0.670712 0.000000 -0.741718 0.898605 0.898605 0.898605
|
|
||||||
5329.295898 0.000000 336.242645 0.000000 0.263785 0.000000 0.964581 0.219217 0.219217 0.219217
|
|
||||||
5347.908691 0.000000 358.322754 0.000000 0.787703 0.000000 0.616055 0.551531 0.551531 0.551531
|
|
||||||
5333.926758 0.000000 349.712097 0.000000 0.919495 0.000000 0.393103 0.598332 0.598332 0.598332
|
|
||||||
5363.412109 0.000000 383.330933 0.000000 0.174722 0.000000 -0.984618 1.046222 1.046222 1.046222
|
|
||||||
5363.290039 0.000000 378.999023 0.000000 0.530247 0.000000 0.847843 0.514319 0.514319 0.514319
|
|
||||||
5362.933594 0.000000 380.673096 0.000000 0.832530 0.000000 -0.553980 0.918553 0.918553 0.918553
|
|
||||||
5332.705078 0.000000 363.524384 0.000000 0.885633 0.000000 -0.464386 0.829129 0.829129 0.829129
|
|
||||||
5327.837891 0.000000 338.970123 0.000000 0.999143 0.000000 0.041397 0.685816 0.685816 0.685816
|
|
||||||
5328.031738 0.000000 336.124695 0.000000 0.013856 0.000000 0.999904 0.125894 0.125894 0.125894
|
|
||||||
5348.200195 0.000000 340.357727 0.000000 0.373703 0.000000 -0.927549 1.113080 1.113080 1.113080
|
|
||||||
5362.000000 0.000000 381.566193 0.000000 0.431135 0.000000 -0.902287 1.118782 1.118782 1.118782
|
|
||||||
5374.070312 0.000000 356.765930 0.000000 0.308444 0.000000 0.951243 0.359445 0.359445 0.359445
|
|
||||||
5360.731934 0.000000 381.084381 0.000000 0.074402 0.000000 0.997228 0.187469 0.187469 0.187469
|
|
||||||
5343.852539 0.000000 361.115662 0.000000 0.977345 0.000000 0.211652 0.651176 0.651176 0.651176
|
|
||||||
5360.667480 0.000000 383.414398 0.000000 0.804033 0.000000 0.594585 0.560903 0.560903 0.560903
|
|
||||||
5374.961426 0.000000 357.617645 0.000000 0.552828 0.000000 -0.833295 0.966824 0.966824 0.966824
|
|
||||||
5327.589844 0.000000 357.857635 0.000000 0.358943 0.000000 -0.933359 0.973455 0.973455 0.973455
|
|
||||||
5361.773438 0.000000 339.627106 0.000000 0.934646 0.000000 0.355579 0.613598 0.613598 0.613598
|
|
||||||
5362.208008 0.000000 382.681091 0.000000 0.942226 0.000000 0.334979 0.615234 0.615234 0.615234
|
|
||||||
5333.558594 0.000000 348.640106 0.000000 0.995742 0.000000 -0.092179 0.723230 0.723230 0.723230
|
|
||||||
5332.746582 0.000000 338.764435 0.000000 0.693772 0.000000 -0.720195 0.931858 0.931858 0.931858
|
|
||||||
5323.489258 0.000000 319.939880 0.000000 0.678943 0.000000 0.734191 0.440649 0.440649 0.440649
|
|
||||||
5349.044922 0.000000 341.196838 0.000000 0.049089 0.000000 -0.998794 1.229196 1.229196 1.229196
|
|
||||||
5329.408691 0.000000 337.761780 0.000000 0.843446 0.000000 -0.537214 0.909124 0.909124 0.909124
|
|
||||||
5358.703613 0.000000 332.660522 0.000000 0.993767 0.000000 0.111476 0.660565 0.660565 0.660565
|
|
||||||
5302.413086 0.000000 384.658478 0.000000 0.833303 0.000000 0.552816 0.692835 0.692835 0.692835
|
|
||||||
5307.817383 0.000000 427.715698 0.000000 0.591618 0.000000 -0.806219 0.901568 0.901568 0.901568
|
|
||||||
5307.024414 0.000000 390.283783 0.000000 0.992043 0.000000 0.125902 0.669776 0.669776 0.669776
|
|
||||||
5300.879395 0.000000 414.129181 0.000000 0.920802 0.000000 0.390030 0.555760 0.555760 0.555760
|
|
||||||
5299.230469 0.000000 425.612701 0.000000 0.822651 0.000000 0.568546 0.623908 0.623908 0.623908
|
|
||||||
5298.579102 0.000000 387.355499 0.000000 0.014545 0.000000 -0.999894 0.778871 0.778871 0.778871
|
|
||||||
5309.669922 0.000000 424.051422 0.000000 0.538800 0.000000 -0.842433 1.053642 1.053642 1.053642
|
|
||||||
5297.059082 0.000000 412.289886 0.000000 0.562584 0.000000 -0.826740 0.732317 0.732317 0.732317
|
|
||||||
5303.264648 0.000000 388.460571 0.000000 0.128049 0.000000 0.991768 0.478178 0.478178 0.478178
|
|
||||||
5310.545898 0.000000 390.809204 0.000000 0.068292 0.000000 0.997665 0.629107 0.629107 0.629107
|
|
||||||
5300.275879 0.000000 417.719269 0.000000 0.831954 0.000000 0.554845 0.599267 0.599267 0.599267
|
|
||||||
5296.416504 0.000000 389.658173 0.000000 0.532067 0.000000 0.846702 0.666472 0.666472 0.666472
|
|
||||||
5309.238770 0.000000 388.063324 0.000000 0.876572 0.000000 0.481271 0.499060 0.499060 0.499060
|
|
||||||
5300.994141 0.000000 423.158875 0.000000 0.284029 0.000000 0.958816 0.556524 0.556524 0.556524
|
|
||||||
5310.979492 0.000000 427.615967 0.000000 0.813561 0.000000 -0.581479 0.859415 0.859415 0.859415
|
|
||||||
5301.082031 0.000000 386.949158 0.000000 0.809085 0.000000 -0.587692 0.783436 0.783436 0.783436
|
|
||||||
5300.603516 0.000000 427.759521 0.000000 0.464323 0.000000 -0.885666 1.055532 1.055532 1.055532
|
|
||||||
5302.503906 0.000000 429.934052 0.000000 0.961291 0.000000 0.275535 0.683414 0.683414 0.683414
|
|
||||||
5298.456543 0.000000 414.445770 0.000000 0.877847 0.000000 0.478942 0.545509 0.545509 0.545509
|
|
||||||
5305.782715 0.000000 388.203491 0.000000 0.914552 0.000000 -0.404467 0.795327 0.795327 0.795327
|
|
||||||
5301.692871 0.000000 392.928375 0.000000 0.766391 0.000000 -0.642375 0.782899 0.782899 0.782899
|
|
||||||
5303.085938 0.000000 414.033356 0.000000 0.108114 0.000000 -0.994138 0.937688 0.937688 0.937688
|
|
||||||
5309.236816 0.000000 429.378845 0.000000 0.701371 0.000000 -0.712796 0.865013 0.865013 0.865013
|
|
||||||
5301.178711 0.000000 389.215149 0.000000 0.902413 0.000000 -0.430872 0.851024 0.851024 0.851024
|
|
||||||
5308.158203 0.000000 425.582703 0.000000 0.993515 0.000000 0.113698 0.659776 0.659776 0.659776
|
|
||||||
5302.229004 0.000000 390.970215 0.000000 0.954399 0.000000 -0.298533 0.741323 0.741323 0.741323
|
|
||||||
5298.608398 0.000000 427.518707 0.000000 0.999931 0.000000 -0.011734 0.701599 0.701599 0.701599
|
|
||||||
5299.785645 0.000000 415.862579 0.000000 0.782596 0.000000 -0.622530 0.907856 0.907856 0.907856
|
|
||||||
5301.373535 0.000000 412.201630 0.000000 0.880757 0.000000 0.473568 0.579299 0.579299 0.579299
|
|
||||||
5308.706543 0.000000 390.929871 0.000000 0.965882 0.000000 -0.258982 0.753564 0.753564 0.753564
|
|
||||||
5309.967773 0.000000 426.107635 0.000000 0.981920 0.000000 0.189298 0.624782 0.624782 0.624782
|
|
||||||
5310.946289 0.000000 388.746552 0.000000 0.495708 0.000000 -0.868489 0.847097 0.847097 0.847097
|
|
||||||
5307.536133 0.000000 388.617737 0.000000 0.542495 0.000000 0.840059 0.255528 0.255528 0.255528
|
|
||||||
5302.416016 0.000000 424.041962 0.000000 0.547423 0.000000 0.836856 0.485138 0.485138 0.485138
|
|
||||||
5298.750000 0.000000 417.171326 0.000000 0.782854 0.000000 -0.622206 0.775111 0.775111 0.775111
|
|
||||||
5301.901855 0.000000 417.572205 0.000000 0.928020 0.000000 0.372530 0.634623 0.634623 0.634623
|
|
||||||
5299.374023 0.000000 413.154541 0.000000 0.910717 0.000000 -0.413030 0.775153 0.775153 0.775153
|
|
||||||
5301.361816 0.000000 415.865723 0.000000 0.998171 0.000000 -0.060454 0.721777 0.721777 0.721777
|
|
||||||
5309.445312 0.000000 389.582855 0.000000 0.033736 0.000000 -0.999431 1.315124 1.315124 1.315124
|
|
||||||
5309.387695 0.000000 427.518372 0.000000 0.298020 0.000000 -0.954560 1.200872 1.200872 1.200872
|
|
||||||
5303.435547 0.000000 389.953644 0.000000 0.733305 0.000000 0.679900 0.585024 0.585024 0.585024
|
|
||||||
5304.837402 0.000000 387.045563 0.000000 0.791171 0.000000 -0.611595 0.924258 0.924258 0.924258
|
|
||||||
5309.122070 0.000000 386.315491 0.000000 0.275050 0.000000 0.961430 0.124172 0.124172 0.124172
|
|
||||||
5307.056152 0.000000 426.497681 0.000000 0.437772 0.000000 -0.899086 0.940248 0.940248 0.940248
|
|
||||||
5298.845703 0.000000 391.302399 0.000000 0.028914 0.000000 -0.999582 1.015264 1.015264 1.015264
|
|
||||||
5307.591309 0.000000 385.292450 0.000000 0.466409 0.000000 -0.884569 1.043380 1.043380 1.043380
|
|
||||||
5306.909668 0.000000 425.006409 0.000000 0.792098 0.000000 -0.610394 0.813592 0.813592 0.813592
|
|
||||||
5303.124023 0.000000 426.405182 0.000000 0.825246 0.000000 0.564774 0.562603 0.562603 0.562603
|
|
||||||
5304.549805 0.000000 388.905212 0.000000 0.398487 0.000000 0.917174 0.434224 0.434224 0.434224
|
|
||||||
5299.902832 0.000000 389.889587 0.000000 0.744652 0.000000 0.667453 0.541639 0.541639 0.541639
|
|
||||||
5300.691895 0.000000 426.402893 0.000000 0.752123 0.000000 -0.659023 0.935137 0.935137 0.935137
|
|
||||||
5301.985840 0.000000 388.033325 0.000000 0.743836 0.000000 -0.668362 0.948172 0.948172 0.948172
|
|
||||||
5305.986816 0.000000 389.481201 0.000000 0.384578 0.000000 0.923093 0.430764 0.430764 0.430764
|
|
||||||
5298.359863 0.000000 415.787354 0.000000 0.814039 0.000000 -0.580810 0.891694 0.891694 0.891694
|
|
||||||
5306.437012 0.000000 387.035950 0.000000 0.272040 0.000000 -0.962286 1.277223 1.277223 1.277223
|
|
||||||
5308.005371 0.000000 429.214935 0.000000 0.726394 0.000000 -0.687278 0.857580 0.857580 0.857580
|
|
||||||
5301.927734 0.000000 413.365540 0.000000 0.113858 0.000000 0.993497 0.343604 0.343604 0.343604
|
|
||||||
5301.895020 0.000000 426.965027 0.000000 0.940408 0.000000 0.340048 0.586612 0.586612 0.586612
|
|
||||||
5308.162109 0.000000 389.768036 0.000000 0.014086 0.000000 0.999901 0.077010 0.077010 0.077010
|
|
||||||
5306.953125 0.000000 391.567322 0.000000 0.871124 0.000000 -0.491063 0.822896 0.822896 0.822896
|
|
||||||
5299.718262 0.000000 414.606018 0.000000 0.911428 0.000000 -0.411459 0.831169 0.831169 0.831169
|
|
||||||
5301.138672 0.000000 390.383514 0.000000 0.506766 0.000000 0.862083 0.356704 0.356704 0.356704
|
|
||||||
5301.346191 0.000000 391.768921 0.000000 0.995677 0.000000 -0.092885 0.730724 0.730724 0.730724
|
|
||||||
5309.239258 0.000000 425.142761 0.000000 0.793559 0.000000 -0.608493 0.930926 0.930926 0.930926
|
|
||||||
5308.480469 0.000000 426.693756 0.000000 0.935263 0.000000 -0.353954 0.842893 0.842893 0.842893
|
|
||||||
5300.849121 0.000000 388.085602 0.000000 0.389931 0.000000 0.920844 0.303252 0.303252 0.303252
|
|
||||||
5300.369141 0.000000 412.686005 0.000000 0.524847 0.000000 0.851197 0.450870 0.450870 0.450870
|
|
||||||
5308.179199 0.000000 387.678589 0.000000 0.707691 0.000000 0.706522 0.350368 0.350368 0.350368
|
|
||||||
5301.341797 0.000000 424.239777 0.000000 0.857758 0.000000 0.514054 0.528278 0.528278 0.528278
|
|
||||||
5306.803223 0.000000 385.980530 0.000000 0.912032 0.000000 -0.410119 0.833669 0.833669 0.833669
|
|
||||||
5300.668945 0.000000 415.133789 0.000000 0.469532 0.000000 0.882915 0.310465 0.310465 0.310465
|
|
||||||
5308.562988 0.000000 388.836945 0.000000 0.637966 0.000000 0.770065 0.348250 0.348250 0.348250
|
|
||||||
5307.202148 0.000000 387.664215 0.000000 0.595649 0.000000 0.803245 0.284347 0.284347 0.284347
|
|
||||||
5309.631348 0.000000 387.134247 0.000000 0.916545 0.000000 0.399932 0.516647 0.516647 0.516647
|
|
||||||
5306.650879 0.000000 384.974091 0.000000 0.894643 0.000000 -0.446783 0.846505 0.846505 0.846505
|
|
||||||
5308.747559 0.000000 424.263519 0.000000 0.986228 0.000000 0.165394 0.641344 0.641344 0.641344
|
|
||||||
5306.605957 0.000000 388.776001 0.000000 0.257420 0.000000 0.966300 0.116021 0.116021 0.116021
|
|
||||||
5307.251953 0.000000 389.459290 0.000000 0.969791 0.000000 -0.243938 0.809815 0.809815 0.809815
|
|
||||||
5308.501465 0.000000 386.884003 0.000000 0.790833 0.000000 0.612032 0.406493 0.406493 0.406493
|
|
||||||
5311.724609 0.000000 387.199371 0.000000 0.997390 0.000000 0.072207 0.695580 0.695580 0.695580
|
|
||||||
5338.321777 0.000000 425.711731 0.000000 0.313514 0.000000 0.949584 0.474656 0.474656 0.474656
|
|
||||||
5346.874512 0.000000 395.051147 0.000000 0.785642 0.000000 -0.618681 0.842221 0.842221 0.842221
|
|
||||||
5358.901855 0.000000 385.334381 0.000000 0.278990 0.000000 0.960294 0.690996 0.690996 0.690996
|
|
||||||
5311.386230 0.000000 422.707428 0.000000 0.934578 0.000000 -0.355758 0.707628 0.707628 0.707628
|
|
||||||
5331.125488 0.000000 432.244141 0.000000 0.859799 0.000000 0.510633 0.655045 0.655045 0.655045
|
|
||||||
5341.447754 0.000000 423.478821 0.000000 0.780983 0.000000 -0.624552 0.921623 0.921623 0.921623
|
|
||||||
5350.226074 0.000000 392.766541 0.000000 0.424627 0.000000 0.905368 0.610959 0.610959 0.610959
|
|
||||||
5311.376465 0.000000 390.590118 0.000000 0.813163 0.000000 -0.582036 0.729313 0.729313 0.729313
|
|
||||||
5346.550293 0.000000 391.792572 0.000000 0.797861 0.000000 0.602842 0.545082 0.545082 0.545082
|
|
||||||
5363.292480 0.000000 384.342957 0.000000 0.068777 0.000000 0.997632 0.613381 0.613381 0.613381
|
|
||||||
5311.560547 0.000000 425.179993 0.000000 0.106333 0.000000 0.994331 0.479933 0.479933 0.479933
|
|
||||||
5344.910156 0.000000 393.716614 0.000000 0.469459 0.000000 -0.882955 0.919367 0.919367 0.919367
|
|
||||||
5340.867676 0.000000 425.828857 0.000000 0.473111 0.000000 -0.881003 1.095610 1.095610 1.095610
|
|
||||||
5329.297852 0.000000 438.855408 0.000000 0.963059 0.000000 0.269290 0.646157 0.646157 0.646157
|
|
||||||
5349.345703 0.000000 395.043091 0.000000 0.995392 0.000000 0.095887 0.689259 0.689259 0.689259
|
|
||||||
5339.117188 0.000000 423.368378 0.000000 0.755099 0.000000 -0.655611 0.791214 0.791214 0.791214
|
|
||||||
5311.460449 0.000000 427.899994 0.000000 0.539612 0.000000 -0.841914 0.957106 0.957106 0.957106
|
|
||||||
5348.090332 0.000000 393.256775 0.000000 0.817931 0.000000 0.575317 0.500747 0.500747 0.500747
|
|
||||||
5331.387207 0.000000 437.054840 0.000000 0.835169 0.000000 0.549994 0.579909 0.579909 0.579909
|
|
||||||
5351.925781 0.000000 393.878265 0.000000 0.934677 0.000000 0.355499 0.671418 0.671418 0.671418
|
|
||||||
5330.317871 0.000000 434.273376 0.000000 0.576396 0.000000 0.817170 0.422525 0.422525 0.422525
|
|
||||||
5343.330078 0.000000 423.812653 0.000000 0.312108 0.000000 0.950046 0.487532 0.487532 0.487532
|
|
||||||
5348.916504 0.000000 391.552124 0.000000 0.919766 0.000000 0.392467 0.645729 0.645729 0.645729
|
|
||||||
5328.316895 0.000000 437.555511 0.000000 0.984441 0.000000 -0.175713 0.768526 0.768526 0.768526
|
|
||||||
5328.480469 0.000000 435.034027 0.000000 0.833113 0.000000 0.553103 0.451112 0.451112 0.451112
|
|
||||||
5346.421387 0.000000 393.551605 0.000000 0.798291 0.000000 0.602272 0.445854 0.445854 0.445854
|
|
||||||
5340.000977 0.000000 424.618195 0.000000 0.948146 0.000000 -0.317834 0.818702 0.818702 0.818702
|
|
||||||
5340.925293 0.000000 422.036835 0.000000 0.848675 0.000000 -0.528914 0.883105 0.883105 0.883105
|
|
||||||
5329.776367 0.000000 432.846100 0.000000 0.034945 0.000000 -0.999389 1.148231 1.148231 1.148231
|
|
||||||
5342.208984 0.000000 424.862244 0.000000 0.991889 0.000000 -0.127108 0.728733 0.728733 0.728733
|
|
||||||
5330.790039 0.000000 435.711395 0.000000 0.383102 0.000000 -0.923706 1.041633 1.041633 1.041633
|
|
||||||
5347.678711 0.000000 390.793732 0.000000 0.781906 0.000000 -0.623396 0.861148 0.861148 0.861148
|
|
||||||
5340.819824 0.000000 427.295776 0.000000 0.031384 0.000000 0.999507 0.444427 0.444427 0.444427
|
|
||||||
5338.075684 0.000000 424.332397 0.000000 0.058912 0.000000 0.998263 0.427865 0.427865 0.427865
|
|
||||||
5330.063965 0.000000 437.659973 0.000000 0.653527 0.000000 -0.756903 0.877048 0.877048 0.877048
|
|
||||||
5311.990234 0.000000 426.438873 0.000000 0.534849 0.000000 0.844947 0.441444 0.441444 0.441444
|
|
||||||
5349.353027 0.000000 393.772400 0.000000 0.308008 0.000000 -0.951384 1.108816 1.108816 1.108816
|
|
||||||
5345.431152 0.000000 392.581787 0.000000 0.789496 0.000000 -0.613756 0.833959 0.833959 0.833959
|
|
||||||
5328.073242 0.000000 436.324005 0.000000 0.434258 0.000000 -0.900789 1.135133 1.135133 1.135133
|
|
||||||
5347.773926 0.000000 392.029816 0.000000 0.190184 0.000000 0.981748 0.157593 0.157593 0.157593
|
|
||||||
5326.017578 0.000000 434.632843 0.000000 0.645745 0.000000 -0.763553 0.927745 0.927745 0.927745
|
|
||||||
5343.852539 0.000000 425.100037 0.000000 0.427185 0.000000 -0.904164 0.954614 0.954614 0.954614
|
|
||||||
5340.272949 0.000000 423.155243 0.000000 0.083183 0.000000 -0.996534 1.188717 1.188717 1.188717
|
|
||||||
5326.936523 0.000000 436.817535 0.000000 0.210957 0.000000 0.977495 0.370064 0.370064 0.370064
|
|
||||||
5328.641113 0.000000 432.337036 0.000000 0.844251 0.000000 -0.535948 0.865077 0.865077 0.865077
|
|
||||||
5329.633789 0.000000 435.208191 0.000000 0.728211 0.000000 0.685353 0.379342 0.379342 0.379342
|
|
||||||
5341.097656 0.000000 424.722717 0.000000 0.289076 0.000000 -0.957306 1.168846 1.168846 1.168846
|
|
||||||
5349.101562 0.000000 392.696777 0.000000 0.994340 0.000000 0.106241 0.665401 0.665401 0.665401
|
|
||||||
5329.249512 0.000000 434.072815 0.000000 0.945707 0.000000 -0.325019 0.840577 0.840577 0.840577
|
|
||||||
5327.484863 0.000000 434.635712 0.000000 0.512887 0.000000 0.858456 0.429408 0.429408 0.429408
|
|
||||||
5341.934570 0.000000 422.581024 0.000000 0.480796 0.000000 -0.876833 1.051292 1.051292 1.051292
|
|
||||||
5331.189941 0.000000 434.755310 0.000000 0.055649 0.000000 0.998450 0.260466 0.260466 0.260466
|
|
||||||
5347.041016 0.000000 392.746735 0.000000 0.810301 0.000000 -0.586014 0.946199 0.946199 0.946199
|
|
||||||
5329.213379 0.000000 437.263855 0.000000 0.999508 0.000000 0.031369 0.687828 0.687828 0.687828
|
|
||||||
5402.313965 0.000000 297.742981 0.000000 0.306464 0.000000 0.951882 0.664788 0.664788 0.664788
|
|
||||||
5380.597168 0.000000 293.969666 0.000000 0.545806 0.000000 -0.837912 0.720834 0.720834 0.720834
|
|
||||||
5383.510742 0.000000 290.120850 0.000000 0.999895 0.000000 0.014482 0.697089 0.697089 0.697089
|
|
||||||
5387.950195 0.000000 285.571289 0.000000 0.208357 0.000000 -0.978053 0.797510 0.797510 0.797510
|
|
||||||
5406.070801 0.000000 300.131531 0.000000 0.220567 0.000000 0.975372 0.473781 0.473781 0.473781
|
|
||||||
5394.096680 0.000000 298.296143 0.000000 0.762876 0.000000 0.646544 0.578365 0.578365 0.578365
|
|
||||||
5379.760742 0.000000 288.954559 0.000000 0.966255 0.000000 0.257588 0.688618 0.688618 0.688618
|
|
||||||
5380.612793 0.000000 297.611694 0.000000 0.627785 0.000000 -0.778387 0.782627 0.782627 0.782627
|
|
||||||
5383.781738 0.000000 295.863098 0.000000 0.587954 0.000000 0.808894 0.660479 0.660479 0.660479
|
|
||||||
5375.418945 0.000000 287.012909 0.000000 0.383574 0.000000 -0.923510 0.813143 0.813143 0.813143
|
|
||||||
5383.346191 0.000000 282.059204 0.000000 0.873876 0.000000 -0.486149 0.833081 0.833081 0.833081
|
|
||||||
5378.152344 0.000000 295.879730 0.000000 0.993425 0.000000 0.114485 0.685964 0.685964 0.685964
|
|
||||||
5380.790527 0.000000 284.042419 0.000000 0.983200 0.000000 -0.182529 0.732399 0.732399 0.732399
|
|
||||||
5383.358398 0.000000 293.030823 0.000000 0.988840 0.000000 -0.148985 0.751483 0.751483 0.751483
|
|
||||||
5388.513672 0.000000 291.540436 0.000000 0.192892 0.000000 -0.981220 0.796235 0.796235 0.796235
|
|
||||||
5385.861328 0.000000 283.774139 0.000000 0.922749 0.000000 0.385402 0.634315 0.634315 0.634315
|
|
||||||
5381.273438 0.000000 286.674652 0.000000 0.249401 0.000000 -0.968400 1.029558 1.029558 1.029558
|
|
||||||
5404.520508 0.000000 302.241058 0.000000 0.788868 0.000000 0.614562 0.637543 0.637543 0.637543
|
|
||||||
5403.520996 0.000000 299.938629 0.000000 0.588590 0.000000 0.808432 0.530532 0.530532 0.530532
|
|
||||||
5396.527832 0.000000 298.293793 0.000000 0.671800 0.000000 0.740732 0.634401 0.634401 0.634401
|
|
||||||
5404.859863 0.000000 297.860107 0.000000 0.809183 0.000000 -0.587557 0.805365 0.805365 0.805365
|
|
||||||
5384.936523 0.000000 301.336670 0.000000 0.971749 0.000000 0.236015 0.666689 0.666689 0.666689
|
|
||||||
5392.968262 0.000000 303.246826 0.000000 0.991534 0.000000 -0.129847 0.711833 0.711833 0.711833
|
|
||||||
5407.154297 0.000000 298.159119 0.000000 0.440876 0.000000 0.897568 0.439076 0.439076 0.439076
|
|
||||||
5384.841797 0.000000 297.680481 0.000000 0.907237 0.000000 0.420620 0.610476 0.610476 0.610476
|
|
||||||
5385.949707 0.000000 295.711884 0.000000 0.648064 0.000000 -0.761586 0.884584 0.884584 0.884584
|
|
||||||
5379.415039 0.000000 287.070862 0.000000 0.019433 0.000000 -0.999811 0.832846 0.832846 0.832846
|
|
||||||
5381.639160 0.000000 289.502319 0.000000 0.565875 0.000000 0.824491 0.533994 0.533994 0.533994
|
|
||||||
5384.788086 0.000000 294.225037 0.000000 0.774113 0.000000 -0.633047 0.846149 0.846149 0.846149
|
|
||||||
5395.411621 0.000000 299.750031 0.000000 0.719520 0.000000 -0.694471 0.832818 0.832818 0.832818
|
|
||||||
5385.584961 0.000000 285.577515 0.000000 0.180688 0.000000 0.983540 0.289738 0.289738 0.289738
|
|
||||||
5389.326172 0.000000 293.092957 0.000000 0.886461 0.000000 -0.462803 0.775677 0.775677 0.775677
|
|
||||||
5382.510742 0.000000 283.620575 0.000000 0.862226 0.000000 0.506524 0.560766 0.560766 0.560766
|
|
||||||
5379.911621 0.000000 295.673553 0.000000 0.591597 0.000000 -0.806234 0.814717 0.814717 0.814717
|
|
||||||
5378.797852 0.000000 294.068268 0.000000 0.689622 0.000000 0.724169 0.600933 0.600933 0.600933
|
|
||||||
5387.589844 0.000000 295.873901 0.000000 0.223691 0.000000 -0.974660 1.076135 1.076135 1.076135
|
|
||||||
5380.064941 0.000000 285.546295 0.000000 0.642159 0.000000 -0.766571 0.854175 0.854175 0.854175
|
|
||||||
5384.133301 0.000000 283.530304 0.000000 0.401707 0.000000 0.915768 0.507845 0.507845 0.507845
|
|
||||||
5403.013672 0.000000 301.504211 0.000000 0.946845 0.000000 -0.321691 0.739493 0.739493 0.739493
|
|
||||||
5385.326172 0.000000 282.275238 0.000000 0.785398 0.000000 -0.618991 0.810812 0.810812 0.810812
|
|
||||||
5387.174805 0.000000 290.729218 0.000000 0.954965 0.000000 -0.296718 0.749488 0.749488 0.749488
|
|
||||||
5381.932617 0.000000 285.239349 0.000000 0.367131 0.000000 -0.930169 0.910902 0.910902 0.910902
|
|
||||||
5387.053223 0.000000 292.257599 0.000000 0.924001 0.000000 0.382390 0.561485 0.561485 0.561485
|
|
||||||
5379.070801 0.000000 297.122070 0.000000 0.875895 0.000000 0.482502 0.619047 0.619047 0.619047
|
|
||||||
5382.636719 0.000000 291.333496 0.000000 0.537770 0.000000 -0.843092 0.901576 0.901576 0.901576
|
|
||||||
5392.813965 0.000000 286.273346 0.000000 0.034236 0.000000 -0.999414 0.904079 0.904079 0.904079
|
|
||||||
5391.711914 0.000000 287.590759 0.000000 0.814273 0.000000 0.580483 0.583110 0.583110 0.583110
|
|
||||||
5382.763672 0.000000 286.604706 0.000000 0.162730 0.000000 -0.986671 0.953323 0.953323 0.953323
|
|
||||||
5392.100586 0.000000 291.584778 0.000000 0.995053 0.000000 -0.099345 0.715999 0.715999 0.715999
|
|
||||||
5385.335449 0.000000 292.824799 0.000000 0.864262 0.000000 0.503042 0.538794 0.538794 0.538794
|
|
||||||
5393.150879 0.000000 301.783539 0.000000 0.534407 0.000000 -0.845227 0.875980 0.875980 0.875980
|
|
||||||
5380.949707 0.000000 288.077148 0.000000 0.644190 0.000000 -0.764865 0.849141 0.849141 0.849141
|
|
||||||
5404.718262 0.000000 300.741333 0.000000 0.915195 0.000000 -0.403011 0.833382 0.833382 0.833382
|
|
||||||
5395.937012 0.000000 301.064636 0.000000 0.957261 0.000000 0.289224 0.593344 0.593344 0.593344
|
|
||||||
5404.812012 0.000000 299.327026 0.000000 0.383092 0.000000 0.923710 0.267810 0.267810 0.267810
|
|
||||||
5394.431641 0.000000 302.966675 0.000000 0.995783 0.000000 0.091743 0.673669 0.673669 0.673669
|
|
||||||
5396.686035 0.000000 303.907288 0.000000 0.839985 0.000000 -0.542609 0.797224 0.797224 0.797224
|
|
||||||
5407.853516 0.000000 299.393036 0.000000 0.682501 0.000000 -0.730885 0.891935 0.891935 0.891935
|
|
||||||
5403.587891 0.000000 298.385498 0.000000 0.011349 0.000000 -0.999936 0.980702 0.980702 0.980702
|
|
||||||
5405.822266 0.000000 301.521179 0.000000 0.982677 0.000000 0.185328 0.640060 0.640060 0.640060
|
|
||||||
5390.480957 0.000000 287.108032 0.000000 0.999917 0.000000 0.012915 0.697562 0.697562 0.697562
|
|
||||||
5392.273438 0.000000 288.951935 0.000000 0.129303 0.000000 0.991605 0.213930 0.213930 0.213930
|
|
||||||
5388.025391 0.000000 288.144958 0.000000 0.858356 0.000000 0.513054 0.606792 0.606792 0.606792
|
|
||||||
5405.954590 0.000000 298.686584 0.000000 0.751888 0.000000 0.659291 0.435811 0.435811 0.435811
|
|
||||||
5384.705078 0.000000 284.663757 0.000000 0.914902 0.000000 0.403677 0.577276 0.577276 0.577276
|
|
||||||
5384.890625 0.000000 296.439880 0.000000 0.348854 0.000000 0.937177 0.449563 0.449563 0.449563
|
|
||||||
5393.568359 0.000000 289.284943 0.000000 0.580397 0.000000 -0.814333 1.020952 1.020952 1.020952
|
|
||||||
5391.504883 0.000000 290.025024 0.000000 0.344394 0.000000 -0.938825 0.964202 0.964202 0.964202
|
|
||||||
5390.158203 0.000000 289.774323 0.000000 0.904463 0.000000 0.426551 0.534425 0.534425 0.534425
|
|
||||||
5387.361816 0.000000 294.732330 0.000000 0.926089 0.000000 -0.377305 0.808178 0.808178 0.808178
|
|
||||||
5385.887207 0.000000 294.550842 0.000000 0.981380 0.000000 -0.192076 0.741208 0.741208 0.741208
|
|
||||||
5395.639160 0.000000 303.243408 0.000000 0.926120 0.000000 -0.377229 0.810859 0.810859 0.810859
|
|
||||||
5395.504395 0.000000 302.039185 0.000000 0.363731 0.000000 -0.931504 1.043502 1.043502 1.043502
|
|
||||||
5382.301270 0.000000 282.360168 0.000000 0.598914 0.000000 0.800813 0.456565 0.456565 0.456565
|
|
||||||
5397.140137 0.000000 301.612213 0.000000 0.883594 0.000000 -0.468254 0.831150 0.831150 0.831150
|
|
||||||
5384.376465 0.000000 293.254242 0.000000 0.908352 0.000000 -0.418206 0.831955 0.831955 0.831955
|
|
||||||
5394.209961 0.000000 300.575653 0.000000 0.253775 0.000000 -0.967263 1.177714 1.177714 1.177714
|
|
||||||
5384.586914 0.000000 285.713226 0.000000 0.839083 0.000000 0.544004 0.530119 0.530119 0.530119
|
|
||||||
5383.431152 0.000000 284.269775 0.000000 0.760307 0.000000 -0.649564 0.959468 0.959468 0.959468
|
|
||||||
5382.539551 0.000000 292.354309 0.000000 0.697323 0.000000 -0.716757 0.975123 0.975123 0.975123
|
|
||||||
5386.282227 0.000000 292.833405 0.000000 0.267767 0.000000 0.963484 0.241183 0.241183 0.241183
|
|
||||||
5404.027344 0.000000 301.424255 0.000000 0.998669 0.000000 0.051583 0.683406 0.683406 0.683406
|
|
||||||
5386.945312 0.000000 298.520508 0.000000 0.244904 0.000000 0.969547 0.253647 0.253647 0.253647
|
|
||||||
5382.423340 0.000000 293.268646 0.000000 0.187671 0.000000 -0.982232 1.175789 1.175789 1.175789
|
|
||||||
5387.413574 0.000000 293.140381 0.000000 0.804874 0.000000 0.593446 0.475720 0.475720 0.475720
|
|
||||||
5382.619629 0.000000 284.641296 0.000000 0.032926 0.000000 0.999458 0.135615 0.135615 0.135615
|
|
||||||
5396.918457 0.000000 320.275909 0.000000 0.840986 0.000000 0.541057 0.674024 0.674024 0.674024
|
|
||||||
5376.058105 0.000000 354.087524 0.000000 0.433603 0.000000 0.901104 0.354806 0.354806 0.354806
|
|
||||||
5382.132324 0.000000 324.609344 0.000000 0.957081 0.000000 0.289822 0.663516 0.663516 0.663516
|
|
||||||
5391.937012 0.000000 323.676605 0.000000 0.882851 0.000000 -0.469653 0.801672 0.801672 0.801672
|
|
||||||
5398.825684 0.000000 325.224854 0.000000 0.376142 0.000000 0.926562 0.300262 0.300262 0.300262
|
|
||||||
5387.447266 0.000000 325.528198 0.000000 0.990278 0.000000 0.139099 0.685367 0.685367 0.685367
|
|
||||||
5379.513184 0.000000 321.175507 0.000000 0.985333 0.000000 0.170640 0.681720 0.681720 0.681720
|
|
||||||
5400.802246 0.000000 321.584412 0.000000 0.996523 0.000000 0.083317 0.697813 0.697813 0.697813
|
|
||||||
5391.386230 0.000000 327.477814 0.000000 0.318451 0.000000 0.947939 0.438554 0.438554 0.438554
|
|
||||||
5381.231934 0.000000 327.817261 0.000000 0.910504 0.000000 0.413501 0.667966 0.667966 0.667966
|
|
||||||
5398.404785 0.000000 322.636932 0.000000 0.989781 0.000000 -0.142599 0.752262 0.752262 0.752262
|
|
||||||
5406.067383 0.000000 337.067322 0.000000 0.802075 0.000000 -0.597224 0.744741 0.744741 0.744741
|
|
||||||
5389.892090 0.000000 325.183411 0.000000 0.755835 0.000000 0.654762 0.451739 0.451739 0.451739
|
|
||||||
5379.877441 0.000000 323.705078 0.000000 0.911493 0.000000 -0.411315 0.820749 0.820749 0.820749
|
|
||||||
5396.549805 0.000000 325.789246 0.000000 0.318036 0.000000 -0.948079 0.915768 0.915768 0.915768
|
|
||||||
5407.279785 0.000000 339.184570 0.000000 0.952483 0.000000 0.304593 0.605884 0.605884 0.605884
|
|
||||||
5399.193359 0.000000 320.078400 0.000000 0.606063 0.000000 -0.795416 0.846259 0.846259 0.846259
|
|
||||||
5377.909668 0.000000 322.840820 0.000000 0.878910 0.000000 -0.476988 0.770384 0.770384 0.770384
|
|
||||||
5400.353516 0.000000 323.706787 0.000000 0.597242 0.000000 0.802061 0.537346 0.537346 0.537346
|
|
||||||
5375.380859 0.000000 356.568695 0.000000 0.983122 0.000000 0.182953 0.650162 0.650162 0.650162
|
|
||||||
5392.649902 0.000000 348.391510 0.000000 0.507185 0.000000 -0.861837 1.064922 1.064922 1.064922
|
|
||||||
5389.361816 0.000000 327.134399 0.000000 0.681819 0.000000 -0.731521 0.814718 0.814718 0.814718
|
|
||||||
5382.643066 0.000000 326.470276 0.000000 0.964915 0.000000 0.262561 0.646142 0.646142 0.646142
|
|
||||||
5402.823242 0.000000 339.381042 0.000000 0.873851 0.000000 -0.486195 0.835757 0.835757 0.835757
|
|
||||||
5392.241699 0.000000 325.515320 0.000000 0.736628 0.000000 0.676299 0.559819 0.559819 0.559819
|
|
||||||
5393.804688 0.000000 324.033386 0.000000 0.568607 0.000000 -0.822609 0.882319 0.882319 0.882319
|
|
||||||
5390.126465 0.000000 323.336853 0.000000 0.914942 0.000000 -0.403586 0.786394 0.786394 0.786394
|
|
||||||
5400.690430 0.000000 325.467224 0.000000 0.999911 0.000000 0.013350 0.698180 0.698180 0.698180
|
|
||||||
5397.400879 0.000000 324.268890 0.000000 0.694007 0.000000 0.719968 0.560941 0.560941 0.560941
|
|
||||||
5383.844727 0.000000 325.180420 0.000000 0.420927 0.000000 0.907094 0.559006 0.559006 0.559006
|
|
||||||
5388.509277 0.000000 324.339844 0.000000 0.074430 0.000000 -0.997226 1.220366 1.220366 1.220366
|
|
||||||
5383.524902 0.000000 327.929108 0.000000 0.999878 0.000000 -0.015620 0.703167 0.703167 0.703167
|
|
||||||
5376.594727 0.000000 355.533264 0.000000 0.902571 0.000000 0.430541 0.563101 0.563101 0.563101
|
|
||||||
5402.087891 0.000000 338.057800 0.000000 0.996128 0.000000 -0.087909 0.723536 0.723536 0.723536
|
|
||||||
5381.279297 0.000000 329.330994 0.000000 0.634766 0.000000 -0.772704 1.062670 1.062670 1.062670
|
|
||||||
5398.287598 0.000000 321.219055 0.000000 0.573511 0.000000 0.819198 0.547329 0.547329 0.547329
|
|
||||||
5397.013184 0.000000 322.902496 0.000000 0.547816 0.000000 0.836599 0.486972 0.486972 0.486972
|
|
||||||
5404.902344 0.000000 337.932526 0.000000 1.000000 0.000000 -0.000976 0.700264 0.700264 0.700264
|
|
||||||
5401.595703 0.000000 322.994690 0.000000 0.742552 0.000000 0.669789 0.571741 0.571741 0.571741
|
|
||||||
5404.672852 0.000000 336.569489 0.000000 0.776663 0.000000 -0.629917 0.884587 0.884587 0.884587
|
|
||||||
5390.974121 0.000000 326.166473 0.000000 0.993639 0.000000 -0.112614 0.723666 0.723666 0.723666
|
|
||||||
5404.090332 0.000000 340.358917 0.000000 0.183959 0.000000 -0.982934 1.087484 1.087484 1.087484
|
|
||||||
5406.111816 0.000000 338.544373 0.000000 0.891675 0.000000 -0.452677 0.842846 0.842846 0.842846
|
|
||||||
5379.347656 0.000000 322.491821 0.000000 0.965828 0.000000 0.259184 0.625317 0.625317 0.625317
|
|
||||||
5399.800293 0.000000 322.497833 0.000000 0.102242 0.000000 -0.994760 1.236317 1.236317 1.236317
|
|
||||||
5399.019531 0.000000 323.813354 0.000000 0.656781 0.000000 -0.754082 1.012012 1.012012 1.012012
|
|
||||||
5391.129883 0.000000 324.688843 0.000000 0.709404 0.000000 -0.704802 1.006177 1.006177 1.006177
|
|
||||||
5388.793457 0.000000 325.766418 0.000000 0.981563 0.000000 0.191141 0.633116 0.633116 0.633116
|
|
||||||
5403.899414 0.000000 338.694366 0.000000 0.272748 0.000000 -0.962086 1.046137 1.046137 1.046137
|
|
||||||
5393.936523 0.000000 348.383575 0.000000 0.908995 0.000000 -0.416808 0.851019 0.851019 0.851019
|
|
||||||
5390.756348 0.000000 322.288330 0.000000 0.651240 0.000000 -0.758872 0.879176 0.879176 0.879176
|
|
||||||
5380.104004 0.000000 328.390137 0.000000 0.253104 0.000000 -0.967439 1.240010 1.240010 1.240010
|
|
||||||
5377.149414 0.000000 354.465759 0.000000 0.906617 0.000000 0.421956 0.566020 0.566020 0.566020
|
|
||||||
5399.831543 0.000000 324.778809 0.000000 0.619993 0.000000 -0.784607 1.004251 1.004251 1.004251
|
|
||||||
5377.692871 0.000000 355.530823 0.000000 0.387942 0.000000 0.921684 0.339400 0.339400 0.339400
|
|
||||||
5393.288086 0.000000 349.245239 0.000000 0.293431 0.000000 -0.955980 1.147153 1.147153 1.147153
|
|
||||||
5375.680176 0.000000 357.669342 0.000000 0.659763 0.000000 0.751474 0.469676 0.469676 0.469676
|
|
||||||
5405.281738 0.000000 340.659241 0.000000 0.931660 0.000000 0.363332 0.596028 0.596028 0.596028
|
|
||||||
5389.487793 0.000000 324.151367 0.000000 0.918792 0.000000 -0.394742 0.841120 0.841120 0.841120
|
|
||||||
5398.042480 0.000000 323.529236 0.000000 0.348902 0.000000 0.937159 0.256447 0.256447 0.256447
|
|
||||||
5334.325684 0.000000 991.197510 0.000000 0.802909 0.000000 0.596102 0.692187 0.692187 0.692187
|
|
||||||
5327.557617 0.000000 986.353210 0.000000 0.537748 0.000000 -0.843106 0.705259 0.705259 0.705259
|
|
||||||
5342.050781 0.000000 1008.432739 0.000000 0.801566 0.000000 0.597906 0.667520 0.667520 0.667520
|
|
||||||
5316.604980 0.000000 997.797791 0.000000 0.022771 0.000000 0.999741 0.667536 0.667536 0.667536
|
|
||||||
5337.056641 0.000000 1015.557495 0.000000 0.840588 0.000000 0.541676 0.682994 0.682994 0.682994
|
|
||||||
5314.114258 0.000000 989.307800 0.000000 0.517277 0.000000 -0.855818 0.775390 0.775390 0.775390
|
|
||||||
5331.228027 0.000000 981.244446 0.000000 0.938162 0.000000 0.346197 0.692586 0.692586 0.692586
|
|
||||||
5345.785156 0.000000 1011.760498 0.000000 0.472545 0.000000 -0.881307 0.716965 0.716965 0.716965
|
|
||||||
5323.958008 0.000000 989.399414 0.000000 0.631409 0.000000 0.775450 0.636415 0.636415 0.636415
|
|
||||||
5340.062500 0.000000 1018.462463 0.000000 0.978271 0.000000 -0.207331 0.704380 0.704380 0.704380
|
|
||||||
5314.632812 0.000000 965.637024 0.000000 0.057599 0.000000 -0.998340 0.813709 0.813709 0.813709
|
|
||||||
5316.840332 0.000000 978.088013 0.000000 0.454504 0.000000 0.890745 0.655827 0.655827 0.655827
|
|
||||||
5319.789551 0.000000 999.691223 0.000000 0.999738 0.000000 0.022877 0.698960 0.698960 0.698960
|
|
||||||
5346.259766 0.000000 1015.462524 0.000000 0.626009 0.000000 -0.779816 0.773460 0.773460 0.773460
|
|
||||||
5317.239746 0.000000 967.661011 0.000000 0.635163 0.000000 -0.772378 0.732390 0.732390 0.732390
|
|
||||||
5319.354004 0.000000 985.887329 0.000000 0.027547 0.000000 0.999620 0.597516 0.597516 0.597516
|
|
||||||
5342.212402 0.000000 1020.735413 0.000000 0.590281 0.000000 0.807198 0.645825 0.645825 0.645825
|
|
||||||
5314.160156 0.000000 999.707886 0.000000 0.264613 0.000000 0.964355 0.545158 0.545158 0.545158
|
|
||||||
5330.189453 0.000000 984.656494 0.000000 0.937960 0.000000 -0.346743 0.731559 0.731559 0.731559
|
|
||||||
5333.597168 0.000000 982.967346 0.000000 0.584774 0.000000 0.811196 0.653700 0.653700 0.653700
|
|
||||||
5337.020020 0.000000 1012.456848 0.000000 0.377579 0.000000 -0.925977 0.753780 0.753780 0.753780
|
|
||||||
5327.323242 0.000000 989.895264 0.000000 0.936815 0.000000 -0.349824 0.721859 0.721859 0.721859
|
|
||||||
5321.869141 0.000000 987.602234 0.000000 0.163090 0.000000 -0.986611 0.813105 0.813105 0.813105
|
|
||||||
5317.281250 0.000000 990.502808 0.000000 0.045668 0.000000 0.998957 0.604051 0.604051 0.604051
|
|
||||||
5339.626953 0.000000 1014.785828 0.000000 0.909017 0.000000 -0.416758 0.725542 0.725542 0.725542
|
|
||||||
5325.159180 0.000000 991.284485 0.000000 0.455878 0.000000 0.890042 0.609860 0.609860 0.609860
|
|
||||||
5328.657715 0.000000 988.235229 0.000000 0.805945 0.000000 0.591991 0.635786 0.635786 0.635786
|
|
||||||
5325.856934 0.000000 988.404419 0.000000 0.948470 0.000000 0.316868 0.657177 0.657177 0.657177
|
|
||||||
5331.579590 0.000000 983.109375 0.000000 0.841964 0.000000 0.539533 0.650204 0.650204 0.650204
|
|
||||||
5315.919434 0.000000 999.501709 0.000000 0.393321 0.000000 0.919401 0.561372 0.561372 0.561372
|
|
||||||
5327.719727 0.000000 991.418884 0.000000 0.999565 0.000000 0.029502 0.695204 0.695204 0.695204
|
|
||||||
4726.125977 0.000000 1098.998169 0.000000 0.655178 0.000000 -0.755475 0.845170 0.845170 0.845170
|
|
||||||
4721.578613 0.000000 1095.663940 0.000000 0.103741 0.000000 0.994604 0.523120 0.523120 0.523120
|
|
||||||
4728.333984 0.000000 1099.374756 0.000000 0.717613 0.000000 0.696442 0.600367 0.600367 0.600367
|
|
||||||
4720.738281 0.000000 1096.896973 0.000000 0.146420 0.000000 0.989223 0.090368 0.090368 0.090368
|
|
||||||
4721.397949 0.000000 1097.797485 0.000000 0.536398 0.000000 0.843965 0.269858 0.269858 0.269858
|
|
||||||
4721.761719 0.000000 1096.880859 0.000000 0.967995 0.000000 0.250969 0.591384 0.591384 0.591384
|
|
||||||
4770.291504 0.000000 1069.421021 0.000000 0.184663 0.000000 0.982802 0.099711 0.099711 0.099711
|
|
||||||
4771.503418 0.000000 1068.904541 0.000000 0.804038 0.000000 0.594578 0.424036 0.424036 0.424036
|
|
||||||
4771.596191 0.000000 1069.982300 0.000000 0.575939 0.000000 0.817493 0.285216 0.285216 0.285216
|
|
||||||
4770.679199 0.000000 1068.688599 0.000000 0.982817 0.000000 -0.184585 0.780461 0.780461 0.780461
|
|
||||||
4755.298340 0.000000 1109.213257 0.000000 0.435194 0.000000 0.900337 0.641253 0.641253 0.641253
|
|
||||||
4779.787109 0.000000 1120.806763 0.000000 0.947307 0.000000 0.320326 0.604837 0.604837 0.604837
|
|
||||||
4757.667480 0.000000 1110.936157 0.000000 0.817849 0.000000 -0.575433 0.817865 0.817865 0.817865
|
|
||||||
4779.019043 0.000000 1118.382202 0.000000 0.835709 0.000000 0.549172 0.652248 0.652248 0.652248
|
|
||||||
4777.622559 0.000000 1120.121948 0.000000 0.984504 0.000000 0.175362 0.680901 0.680901 0.680901
|
|
||||||
4755.649902 0.000000 1111.078125 0.000000 0.531168 0.000000 0.847267 0.602843 0.602843 0.602843
|
|
||||||
4757.111816 0.000000 1109.242310 0.000000 0.998171 0.000000 -0.060460 0.706343 0.706343 0.706343
|
|
||||||
4778.208984 0.000000 1121.524170 0.000000 0.987412 0.000000 0.158167 0.653645 0.653645 0.653645
|
|
||||||
4767.044922 0.000000 1092.833008 0.000000 0.756572 0.000000 0.653911 0.462095 0.462095 0.462095
|
|
||||||
4779.500977 0.000000 1121.922119 0.000000 0.483777 0.000000 -0.875192 1.011059 1.011059 1.011059
|
|
||||||
4766.793945 0.000000 1093.907471 0.000000 0.825596 0.000000 0.564262 0.499881 0.499881 0.499881
|
|
||||||
4766.101074 0.000000 1093.225708 0.000000 0.231112 0.000000 0.972927 0.253532 0.253532 0.253532
|
|
||||||
4827.781738 0.000000 1095.399048 0.000000 0.495681 0.000000 0.868504 0.690806 0.690806 0.690806
|
|
||||||
4819.053223 0.000000 1096.757935 0.000000 0.449612 0.000000 0.893224 0.694210 0.694210 0.694210
|
|
||||||
4830.348145 0.000000 1115.993774 0.000000 0.461288 0.000000 -0.887250 0.722887 0.722887 0.722887
|
|
||||||
4828.187012 0.000000 1103.045166 0.000000 0.102778 0.000000 0.994704 0.676913 0.676913 0.676913
|
|
||||||
4828.984375 0.000000 1111.367554 0.000000 0.842444 0.000000 -0.538784 0.717898 0.717898 0.717898
|
|
||||||
4832.500977 0.000000 1119.993774 0.000000 0.522875 0.000000 0.852409 0.648277 0.648277 0.648277
|
|
||||||
4847.588379 0.000000 1127.183105 0.000000 0.970001 0.000000 -0.243103 0.709012 0.709012 0.709012
|
|
||||||
4836.701172 0.000000 1116.774292 0.000000 0.954787 0.000000 0.297292 0.683119 0.683119 0.683119
|
|
||||||
4815.456543 0.000000 1095.290283 0.000000 0.955865 0.000000 0.293806 0.688535 0.688535 0.688535
|
|
||||||
4843.124023 0.000000 1106.411255 0.000000 0.564004 0.000000 0.825772 0.635480 0.635480 0.635480
|
|
||||||
4844.801758 0.000000 1134.128296 0.000000 0.428031 0.000000 -0.903764 0.745359 0.745359 0.745359
|
|
||||||
4820.791992 0.000000 1099.359985 0.000000 0.993327 0.000000 -0.115332 0.704646 0.704646 0.704646
|
|
||||||
4828.122070 0.000000 1114.035278 0.000000 0.890357 0.000000 0.455262 0.674393 0.674393 0.674393
|
|
||||||
4838.982910 0.000000 1115.795288 0.000000 0.667159 0.000000 -0.744916 0.744061 0.744061 0.744061
|
|
||||||
4836.805664 0.000000 1114.273193 0.000000 0.225882 0.000000 0.974155 0.624899 0.624899 0.624899
|
|
||||||
4818.727051 0.000000 1115.177856 0.000000 0.588475 0.000000 0.808516 0.652278 0.652278 0.652278
|
|
||||||
4837.408203 0.000000 1098.871216 0.000000 0.986612 0.000000 0.163083 0.689694 0.689694 0.689694
|
|
||||||
4828.195801 0.000000 1100.988647 0.000000 0.252549 0.000000 -0.967584 0.796554 0.796554 0.796554
|
|
||||||
4833.864258 0.000000 1103.795410 0.000000 0.869394 0.000000 0.494120 0.646712 0.646712 0.646712
|
|
||||||
5043.604004 0.000000 1045.479248 0.000000 0.263214 0.000000 0.964737 0.640730 0.640730 0.640730
|
|
||||||
5336.367188 0.000000 1046.082153 0.000000 0.999997 0.000000 0.002534 0.699934 0.699934 0.699934
|
|
||||||
5331.228027 0.000000 1045.228882 0.000000 0.884094 0.000000 0.467310 0.652414 0.652414 0.652414
|
|
||||||
5324.950195 0.000000 1044.533447 0.000000 0.800319 0.000000 -0.599574 0.732586 0.732586 0.732586
|
|
||||||
5314.697266 0.000000 1036.812744 0.000000 0.333733 0.000000 0.942668 0.644088 0.644088 0.644088
|
|
||||||
5333.041504 0.000000 1045.257935 0.000000 0.940393 0.000000 -0.340090 0.732747 0.732747 0.732747
|
|
||||||
5178.559570 0.000000 1207.280029 0.000000 0.998474 0.000000 -0.055216 0.701159 0.701159 0.701159
|
|
||||||
5168.804199 0.000000 1196.224243 0.000000 0.971685 0.000000 -0.236279 0.708754 0.708754 0.708754
|
|
||||||
5167.995117 0.000000 1193.735474 0.000000 0.983301 0.000000 0.181987 0.691685 0.691685 0.691685
|
|
||||||
5211.872070 0.000000 1214.692017 0.000000 0.256652 0.000000 0.966504 0.679376 0.679376 0.679376
|
|
||||||
5191.624512 0.000000 1195.211182 0.000000 0.519113 0.000000 -0.854706 0.728660 0.728660 0.728660
|
|
||||||
5193.729492 0.000000 1213.416626 0.000000 0.884978 0.000000 -0.465633 0.716082 0.716082 0.716082
|
|
||||||
5188.636230 0.000000 1193.392944 0.000000 0.999977 0.000000 0.006761 0.699775 0.699775 0.699775
|
|
||||||
5186.175781 0.000000 1191.661011 0.000000 0.927731 0.000000 0.373249 0.685962 0.685962 0.685962
|
|
||||||
5189.423340 0.000000 1173.159180 0.000000 0.946638 0.000000 -0.322298 0.713763 0.713763 0.713763
|
|
||||||
5189.112793 0.000000 1187.099365 0.000000 0.839093 0.000000 -0.543988 0.733171 0.733171 0.733171
|
|
||||||
5197.174805 0.000000 1183.237549 0.000000 0.998893 0.000000 -0.047034 0.702713 0.702713 0.702713
|
|
||||||
5190.860840 0.000000 1193.385864 0.000000 0.318412 0.000000 0.947952 0.582345 0.582345 0.582345
|
|
||||||
5191.451660 0.000000 1217.041016 0.000000 0.859004 0.000000 0.511968 0.671822 0.671822 0.671822
|
|
||||||
5197.774902 0.000000 1217.271118 0.000000 0.593196 0.000000 0.805058 0.636222 0.636222 0.636222
|
|
||||||
5302.731445 0.000000 1300.213745 0.000000 0.345506 0.000000 0.938417 0.670200 0.670200 0.670200
|
|
||||||
5278.058594 0.000000 1328.354614 0.000000 0.000492 0.000000 -1.000000 0.809770 0.809770 0.809770
|
|
||||||
5293.932617 0.000000 1297.018311 0.000000 0.880588 0.000000 0.473884 0.673254 0.673254 0.673254
|
|
||||||
5281.792969 0.000000 1331.682373 0.000000 0.854294 0.000000 -0.519790 0.721015 0.721015 0.721015
|
|
||||||
5274.305664 0.000000 1329.188721 0.000000 0.329236 0.000000 -0.944248 0.738858 0.738858 0.738858
|
|
||||||
5291.599121 0.000000 1295.222656 0.000000 0.967232 0.000000 0.253894 0.686990 0.686990 0.686990
|
|
||||||
5307.887207 0.000000 1298.329224 0.000000 0.336847 0.000000 0.941559 0.597055 0.597055 0.597055
|
|
||||||
5268.518555 0.000000 1326.238281 0.000000 0.742019 0.000000 0.670379 0.643505 0.643505 0.643505
|
|
||||||
5327.557617 0.000000 1306.275146 0.000000 0.721616 0.000000 0.692294 0.667929 0.667929 0.667929
|
|
||||||
5331.228027 0.000000 1301.166382 0.000000 0.889951 0.000000 -0.456057 0.722345 0.722345 0.722345
|
|
||||||
5340.977539 0.000000 1299.101685 0.000000 0.368656 0.000000 -0.929566 0.750047 0.750047 0.750047
|
|
||||||
5320.499023 0.000000 1296.885620 0.000000 0.009139 0.000000 0.999958 0.579918 0.579918 0.579918
|
|
||||||
5325.270020 0.000000 1297.272217 0.000000 0.829913 0.000000 -0.557892 0.726892 0.726892 0.726892
|
|
||||||
5328.393555 0.000000 1299.924927 0.000000 0.111164 0.000000 -0.993802 0.779063 0.779063 0.779063
|
|
||||||
5330.664551 0.000000 1307.130981 0.000000 0.869028 0.000000 -0.494763 0.741606 0.741606 0.741606
|
|
||||||
"}
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,208 +0,0 @@
|
||||||
object={
|
|
||||||
name="lakes"
|
|
||||||
render_pass=Map
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="lake_layer"
|
|
||||||
pdxmesh="lake_mesh"
|
|
||||||
count=199
|
|
||||||
transform="1879.594971 -1.612305 3901.551270 0.000000 0.127566 0.000000 0.991830 15.156264 15.156264 15.156264
|
|
||||||
1644.493652 1.251221 2901.257812 0.000000 0.423676 0.000000 0.905814 5.573364 5.573364 5.573364
|
|
||||||
2092.512207 1.462402 2942.174072 0.000000 0.000000 0.000000 1.000000 5.830308 5.830308 5.830308
|
|
||||||
2098.964111 1.462402 2917.899170 0.000000 0.000000 0.000000 1.000000 5.830308 5.830308 5.830308
|
|
||||||
317.932983 0.895508 3836.497070 0.000000 0.994212 0.000000 0.107439 11.618054 11.618054 11.618054
|
|
||||||
1434.700806 0.294678 2318.517090 0.000000 0.882845 0.000000 -0.469665 6.077335 6.077335 6.077335
|
|
||||||
1427.903076 2.311768 2306.753662 0.000000 -0.686314 0.000000 0.727305 12.567498 12.567498 12.567498
|
|
||||||
4759.387207 2.166259 2220.728027 0.000000 -0.036125 0.000000 0.999347 11.014447 11.014447 11.014447
|
|
||||||
638.787231 -0.096436 3012.797852 0.000000 -0.864966 0.000000 0.501831 4.851781 4.851781 4.851781
|
|
||||||
2525.797852 0.000000 3185.145508 0.000000 0.421685 0.000000 0.906742 8.214069 8.214069 8.214069
|
|
||||||
2476.599121 1.265137 3187.666748 0.000000 0.490235 0.000000 0.871590 7.722569 7.722569 7.722569
|
|
||||||
2466.374023 0.665039 3185.915527 0.000000 0.455959 0.000000 0.890001 5.419629 5.419629 5.419629
|
|
||||||
2481.388184 0.169678 3162.099121 0.000000 0.391604 0.000000 0.920134 19.680010 19.680010 19.680010
|
|
||||||
1904.043945 1.523193 3826.283691 0.000000 0.000000 0.000000 1.000000 10.781592 10.781592 10.781592
|
|
||||||
1819.144165 0.155518 3705.808594 0.000000 0.308687 0.000000 0.951164 8.617642 8.617642 8.617642
|
|
||||||
1784.301025 0.675049 3638.772461 0.000000 0.602591 0.000000 0.798050 8.324876 8.324876 8.324876
|
|
||||||
1729.585815 0.857178 3597.145752 0.000000 0.279227 0.000000 0.960225 4.242383 4.242383 4.242383
|
|
||||||
1735.329346 2.253173 3563.761963 0.000000 0.188786 0.000000 0.982018 18.605555 18.605555 18.605555
|
|
||||||
1774.076294 2.253173 3530.351562 0.000000 0.188786 0.000000 0.982018 18.605555 18.605555 18.605555
|
|
||||||
1730.305786 1.629150 3583.752930 0.000000 0.188786 0.000000 0.982018 18.605555 18.605555 18.605555
|
|
||||||
544.366882 0.511230 3023.769287 0.000000 0.548402 0.000000 0.836215 5.375959 5.375959 5.375959
|
|
||||||
1868.945801 1.995117 3735.724609 0.000000 0.203375 0.000000 0.979101 14.884582 14.884582 14.884582
|
|
||||||
1850.306152 1.857910 3751.920654 0.000000 0.472030 0.000000 0.881582 11.672919 11.672919 11.672919
|
|
||||||
1668.528687 5.022216 3594.900391 0.000000 0.843193 0.000000 -0.537611 7.096653 7.096653 7.096653
|
|
||||||
1685.273560 2.095947 3619.249512 0.000000 0.366364 0.000000 -0.930472 17.656607 17.656607 17.656607
|
|
||||||
1582.093384 1.046631 3409.653564 0.000000 0.557119 0.000000 0.830433 9.937582 9.937582 9.937582
|
|
||||||
1607.552124 -0.764160 3419.854004 0.000000 0.429045 0.000000 0.903283 20.802437 20.802437 20.802437
|
|
||||||
684.771301 0.085815 1544.706177 0.000000 0.231152 0.000000 0.972918 10.548601 10.548601 10.548601
|
|
||||||
2843.471680 2.591553 1845.694336 0.000000 0.349832 0.000000 0.936813 14.373421 14.373421 14.373421
|
|
||||||
2658.668701 2.083984 1733.528076 0.000000 0.993898 0.000000 0.110305 8.649700 8.649700 8.649700
|
|
||||||
2657.537354 -0.884766 1712.847046 0.000000 0.078828 0.000000 -0.996888 12.935730 12.935730 12.935730
|
|
||||||
2678.631104 2.083984 1730.498169 0.000000 0.709407 0.000000 -0.704799 16.413857 16.413857 16.413857
|
|
||||||
2709.601562 2.083984 1754.651489 0.000000 0.705596 0.000000 0.708614 16.413857 16.413857 16.413857
|
|
||||||
2924.656494 0.221191 1802.333862 0.000000 0.398389 0.000000 0.917217 16.413857 16.413857 16.413857
|
|
||||||
2742.334473 1.431274 1737.503540 0.000000 0.398389 0.000000 0.917217 16.413857 16.413857 16.413857
|
|
||||||
2834.361572 2.591553 1815.505859 0.000000 0.349832 0.000000 0.936813 33.769379 33.769379 33.769379
|
|
||||||
3296.701172 2.760254 2014.355713 0.000000 -0.881058 0.000000 0.473008 9.794930 9.794930 9.794930
|
|
||||||
3302.920166 1.302979 1861.370972 0.000000 -0.359362 0.000000 0.933198 37.316238 37.316238 37.316238
|
|
||||||
1450.123535 0.000000 2447.641846 0.000000 0.648814 0.000000 0.760948 6.857174 6.857174 6.857174
|
|
||||||
1561.404541 0.000000 2420.584473 0.000000 0.648814 0.000000 0.760948 6.857174 6.857174 6.857174
|
|
||||||
1573.718384 0.000000 2455.784424 0.000000 0.648814 0.000000 0.760948 6.857174 6.857174 6.857174
|
|
||||||
1469.197388 0.616699 2379.436768 0.000000 0.797317 0.000000 0.603561 2.782289 2.782289 2.782289
|
|
||||||
1420.487671 1.609130 2375.508789 0.000000 -0.091334 0.000000 0.995821 4.233682 4.233682 4.233682
|
|
||||||
1416.376465 0.624023 2390.617676 0.000000 0.128020 0.000000 0.991772 8.639521 8.639521 8.639521
|
|
||||||
1546.456055 1.246094 2278.379883 0.000000 0.716017 0.000000 0.698082 15.328931 15.328931 15.328931
|
|
||||||
1473.416626 1.712891 2439.698730 0.000000 -0.905945 0.000000 0.423396 24.020245 24.020245 24.020245
|
|
||||||
1324.673340 1.712891 2389.341553 0.000000 -0.423980 0.000000 0.905671 24.020245 24.020245 24.020245
|
|
||||||
1306.224365 4.369141 2353.022461 0.000000 0.000000 0.000000 1.000000 36.600914 36.600914 36.600914
|
|
||||||
2989.728271 0.000000 1379.162720 -0.000000 -0.000000 -0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
2973.286133 1.512939 1447.338867 -0.000000 -0.639406 -0.000000 0.768869 8.087207 8.087207 8.087207
|
|
||||||
2966.753906 -4.520630 1367.541504 -0.000000 -0.639406 -0.000000 0.768869 21.940123 21.940123 21.940123
|
|
||||||
2966.751953 1.275513 1368.855835 -0.000000 -0.639406 -0.000000 0.768869 21.940123 21.940123 21.940123
|
|
||||||
5478.304688 2.692139 2186.409424 0.000000 0.989923 0.000000 0.141608 64.820755 64.820755 64.820755
|
|
||||||
5550.816406 2.019043 2232.329590 0.000000 0.798902 0.000000 -0.601461 54.721893 54.721893 54.721893
|
|
||||||
5615.045898 -1.241944 2217.256104 0.000000 0.999121 0.000000 -0.041923 34.508163 34.508163 34.508163
|
|
||||||
5569.407227 -0.390625 2617.823730 0.000000 0.112736 0.000000 0.993625 37.119358 37.119358 37.119358
|
|
||||||
5281.619629 1.034424 2568.294922 0.000000 -0.228137 0.000000 0.973629 14.203422 14.203422 14.203422
|
|
||||||
5326.650879 1.020508 2669.280762 0.000000 -0.364398 0.000000 0.931243 22.185534 22.185534 22.185534
|
|
||||||
5549.770996 1.041504 2561.842529 0.000000 -0.108308 0.000000 0.994117 8.056372 8.056372 8.056372
|
|
||||||
5337.207031 1.413818 2651.631348 0.000000 -0.539073 0.000000 0.842259 8.056372 8.056372 8.056372
|
|
||||||
6088.462402 0.797852 3386.558350 0.000000 0.598577 0.000000 0.801065 42.176945 42.176945 42.176945
|
|
||||||
6109.634766 0.797852 3249.915771 0.000000 0.805322 0.000000 0.592838 96.787926 96.787926 96.787926
|
|
||||||
6021.608398 -1.022705 3116.383789 0.000000 0.958478 0.000000 0.285166 63.957951 63.957951 63.957951
|
|
||||||
5842.444336 2.156494 3012.618164 0.000000 0.747303 0.000000 0.664483 37.693779 37.693779 37.693779
|
|
||||||
5567.117188 1.120605 2830.983643 0.000000 0.000000 0.000000 1.000000 37.693779 37.693779 37.693779
|
|
||||||
5512.514648 2.315186 2902.522217 0.000000 0.000000 0.000000 1.000000 55.413727 55.413727 55.413727
|
|
||||||
5430.289062 1.497070 2834.313477 0.000000 0.000000 0.000000 1.000000 14.421523 14.421523 14.421523
|
|
||||||
5438.438477 1.497070 2879.677490 0.000000 0.000000 0.000000 1.000000 14.421523 14.421523 14.421523
|
|
||||||
5232.033203 1.497070 2745.910645 0.000000 0.000000 0.000000 1.000000 14.421523 14.421523 14.421523
|
|
||||||
3306.611816 -0.276123 440.064423 0.000000 0.174036 0.000000 0.984739 13.830501 13.830501 13.830501
|
|
||||||
3092.366699 0.890686 460.042877 0.000000 0.000000 0.000000 1.000000 25.409878 25.409878 25.409878
|
|
||||||
3093.538818 2.223755 478.498688 0.000000 0.000000 0.000000 1.000000 17.062283 17.062283 17.062283
|
|
||||||
3121.018555 -0.917892 207.277969 0.000000 -0.491804 0.000000 0.870706 29.376287 29.376287 29.376287
|
|
||||||
3171.562500 -0.542999 278.486755 0.000000 -0.491804 0.000000 0.870706 20.751310 20.751310 20.751310
|
|
||||||
3075.780273 1.869957 40.422386 0.000000 0.572905 0.000000 0.819622 15.615232 15.615232 15.615232
|
|
||||||
3056.891602 1.458527 64.049011 0.000000 0.411002 0.000000 0.911634 24.249489 24.249489 24.249489
|
|
||||||
3044.111328 1.770813 104.016144 0.000000 0.696171 0.000000 0.717876 24.249489 24.249489 24.249489
|
|
||||||
2201.946533 1.381958 1911.648926 0.000000 0.865711 0.000000 0.500543 10.298976 10.298976 10.298976
|
|
||||||
2157.787842 1.853516 1926.530884 0.000000 0.627457 0.000000 0.778651 13.485481 13.485481 13.485481
|
|
||||||
2139.578857 2.303223 1936.304688 0.000000 0.627457 0.000000 0.778651 13.485481 13.485481 13.485481
|
|
||||||
2289.197510 2.330200 1911.026489 0.000000 0.000000 0.000000 1.000000 5.172881 5.172881 5.172881
|
|
||||||
2306.210693 1.823120 1915.048828 0.000000 0.000000 0.000000 1.000000 8.169932 8.169932 8.169932
|
|
||||||
2202.796143 2.101563 1754.684937 0.000000 0.168654 0.000000 0.985675 6.622243 6.622243 6.622243
|
|
||||||
2706.746338 1.882446 1780.075562 0.000000 -0.336647 0.000000 0.941631 5.988504 5.988504 5.988504
|
|
||||||
2727.009033 -0.013916 1796.629761 0.000000 0.258918 0.000000 0.965899 18.164228 18.164228 18.164228
|
|
||||||
3419.624023 2.551636 1812.414062 0.000000 0.580783 0.000000 0.814059 39.018711 39.018711 39.018711
|
|
||||||
3394.617920 2.505005 1984.038086 0.000000 0.395027 0.000000 0.918669 24.617380 24.617380 24.617380
|
|
||||||
3328.839111 1.585449 1863.506470 0.000000 0.784952 0.000000 0.619557 5.796173 5.796173 5.796173
|
|
||||||
3978.458008 1.951172 1430.911377 0.000000 0.999921 0.000000 0.012599 9.785446 9.785446 9.785446
|
|
||||||
4038.242188 1.951172 1468.366089 0.000000 0.999921 0.000000 0.012599 16.245289 16.245289 16.245289
|
|
||||||
4080.522705 1.892578 1418.324707 0.000000 0.999921 0.000000 0.012599 16.245289 16.245289 16.245289
|
|
||||||
4089.374268 1.400879 1355.877563 0.000000 0.920458 0.000000 0.390842 25.448694 25.448694 25.448694
|
|
||||||
4086.829102 2.592285 1298.685059 0.000000 0.694526 0.000000 0.719467 25.448694 25.448694 25.448694
|
|
||||||
4701.341309 1.673584 2043.526123 0.000000 0.036094 0.000000 0.999348 15.494776 15.494776 15.494776
|
|
||||||
4655.856445 3.191895 2203.144775 0.000000 -0.083673 0.000000 0.996493 7.911607 7.911607 7.911607
|
|
||||||
4437.555664 1.313721 2134.320312 0.000000 0.106942 0.000000 0.994265 15.752451 15.752451 15.752451
|
|
||||||
4537.668457 1.915771 2095.669434 0.000000 -0.193145 0.000000 0.981170 15.752451 15.752451 15.752451
|
|
||||||
4270.643066 1.441406 2082.246826 0.000000 0.009125 0.000000 0.999958 11.668904 11.668904 11.668904
|
|
||||||
4291.180664 1.441406 2037.026733 0.000000 0.009125 0.000000 0.999958 11.668904 11.668904 11.668904
|
|
||||||
4275.338379 -0.212036 1995.687378 0.000000 0.251394 0.000000 0.967885 30.560972 30.560972 30.560972
|
|
||||||
4324.293457 0.690063 1898.224731 0.000000 -0.033960 0.000000 0.999423 14.837814 14.837814 14.837814
|
|
||||||
3695.491699 0.915649 1682.652466 0.000000 -0.258181 0.000000 0.966097 14.837814 14.837814 14.837814
|
|
||||||
3781.908447 2.298218 1524.320679 0.000000 0.389216 0.000000 0.921147 21.853962 21.853962 21.853962
|
|
||||||
3837.697510 -1.103271 1383.891357 0.000000 0.234342 0.000000 0.972154 28.361542 28.361542 28.361542
|
|
||||||
3905.208740 0.090820 3025.111572 0.000000 -0.500838 0.000000 0.865541 21.570053 21.570053 21.570053
|
|
||||||
3903.540039 2.270020 3079.509521 0.000000 0.512048 0.000000 0.858957 7.585004 7.585004 7.585004
|
|
||||||
5539.256348 2.453125 2758.094971 0.000000 -0.601799 0.000000 0.798647 33.265923 33.265923 33.265923
|
|
||||||
5727.160156 1.280029 2727.840088 0.000000 0.511392 0.000000 0.859347 11.490909 11.490909 11.490909
|
|
||||||
5949.440430 1.237061 2682.407227 0.000000 -0.026181 0.000000 0.999657 10.048801 10.048801 10.048801
|
|
||||||
5890.898926 1.948730 2688.762207 0.000000 0.215997 0.000000 0.976394 10.048801 10.048801 10.048801
|
|
||||||
5778.479980 1.402100 2692.677490 0.000000 0.215997 0.000000 0.976394 15.634364 15.634364 15.634364
|
|
||||||
5682.548340 1.160645 2714.870850 0.000000 -0.006897 0.000000 0.999976 38.687134 38.687134 38.687134
|
|
||||||
5605.158691 2.416748 2740.662109 0.000000 0.419248 0.000000 0.907872 16.931530 16.931530 16.931530
|
|
||||||
5580.950195 4.059082 2768.954590 0.000000 0.419248 0.000000 0.907872 21.072451 21.072451 21.072451
|
|
||||||
6048.967773 1.608398 2694.393799 0.000000 0.000000 0.000000 1.000000 6.155762 6.155762 6.155762
|
|
||||||
5892.506348 2.022949 3248.647461 0.000000 0.455416 0.000000 0.890279 5.439863 5.439863 5.439863
|
|
||||||
4924.850098 0.000000 1266.810791 0.000000 0.000000 0.000000 1.000000 10.629927 10.629927 10.629927
|
|
||||||
4889.170410 0.630615 1661.030273 0.000000 0.000000 0.000000 1.000000 4.341914 4.341914 4.341914
|
|
||||||
4791.076660 1.355469 1834.479370 0.000000 -0.840277 0.000000 -0.542157 4.063225 4.063225 4.063225
|
|
||||||
5629.836426 1.671143 2513.165527 0.000000 -0.563866 0.000000 0.825866 9.029453 9.029453 9.029453
|
|
||||||
5629.075195 1.671143 2513.524170 0.000000 -0.563866 0.000000 0.825866 9.029453 9.029453 9.029453
|
|
||||||
5579.533691 2.207031 2483.746338 0.000000 -0.645207 0.000000 0.764008 7.262752 7.262752 7.262752
|
|
||||||
5061.350098 -3.027344 2469.358643 0.000000 -0.879160 0.000000 0.476527 20.171219 20.171219 20.171219
|
|
||||||
4442.176270 0.933105 2642.348145 0.000000 0.000000 0.000000 1.000000 12.844775 12.844775 12.844775
|
|
||||||
4763.302246 1.399902 2737.183594 0.000000 0.000000 0.000000 1.000000 15.450583 15.450583 15.450583
|
|
||||||
5364.820801 2.181885 2335.136475 0.000000 0.862393 0.000000 0.506239 19.320902 19.320902 19.320902
|
|
||||||
5499.395996 0.714844 1726.628174 0.000000 -0.247227 0.000000 0.968958 21.724773 21.724773 21.724773
|
|
||||||
5481.689453 -0.410278 1753.950928 0.000000 0.908894 0.000000 0.417027 14.326097 14.326097 14.326097
|
|
||||||
5465.034668 -0.795166 1720.625854 0.000000 0.797547 0.000000 0.603257 21.724773 21.724773 21.724773
|
|
||||||
5510.074707 1.645020 1697.458008 0.000000 0.164231 0.000000 0.986422 21.724773 21.724773 21.724773
|
|
||||||
5579.329590 -1.349243 1698.532959 0.000000 0.176380 0.000000 0.984322 21.628889 21.628889 21.628889
|
|
||||||
5585.126465 0.571411 1833.638184 0.000000 0.993227 0.000000 0.116188 21.376095 21.376095 21.376095
|
|
||||||
5673.461426 1.277100 1763.817505 0.000000 0.655361 0.000000 0.755316 9.922686 9.922686 9.922686
|
|
||||||
5641.095703 1.154907 1761.299927 0.000000 0.093673 0.000000 0.995603 9.922686 9.922686 9.922686
|
|
||||||
5579.261230 -0.379883 1781.643799 0.000000 0.209675 0.000000 0.977771 27.685064 27.685064 27.685064
|
|
||||||
5655.147461 -0.391968 1723.727539 0.000000 -0.060754 0.000000 0.998153 27.685064 27.685064 27.685064
|
|
||||||
5647.609863 1.157959 1566.998291 0.000000 0.024107 0.000000 0.999709 7.950306 7.950306 7.950306
|
|
||||||
5660.946777 1.231445 1592.368408 0.000000 -0.135809 0.000000 0.990735 21.628889 21.628889 21.628889
|
|
||||||
5643.315918 1.899048 1688.169312 0.000000 -0.135809 0.000000 0.990735 21.628889 21.628889 21.628889
|
|
||||||
5545.557129 1.762451 1732.623901 0.000000 0.034478 0.000000 0.999405 33.014759 33.014759 33.014759
|
|
||||||
5419.132812 -0.962646 1663.438232 0.000000 0.034478 0.000000 0.999405 66.925346 66.925346 66.925346
|
|
||||||
5280.934082 -1.580078 1684.470947 0.000000 0.034478 0.000000 0.999405 66.560547 66.560547 66.560547
|
|
||||||
5181.871094 1.408813 1904.414062 0.000000 -0.059718 0.000000 0.998215 9.501742 9.501742 9.501742
|
|
||||||
5202.372070 -0.124756 1881.938965 0.000000 -0.781175 0.000000 0.624312 16.272243 16.272243 16.272243
|
|
||||||
5180.114258 -0.023804 1816.478760 0.000000 -0.922167 0.000000 0.386793 14.283196 14.283196 14.283196
|
|
||||||
5150.684570 1.406494 1836.210938 0.000000 -0.998288 0.000000 0.058495 10.596818 10.596818 10.596818
|
|
||||||
5142.429199 2.156616 1809.408203 0.000000 -0.998288 0.000000 0.058495 10.596818 10.596818 10.596818
|
|
||||||
5110.373535 1.684448 1801.245850 0.000000 -0.935581 0.000000 0.353113 7.104090 7.104090 7.104090
|
|
||||||
5119.767090 -0.061035 1860.914185 0.000000 0.001831 0.000000 0.999998 20.377008 20.377008 20.377008
|
|
||||||
5080.907227 1.767822 1837.332520 0.000000 -0.199100 0.000000 0.979979 5.491138 5.491138 5.491138
|
|
||||||
5044.257324 1.942261 1867.807861 0.000000 0.280253 0.000000 0.959926 8.886061 8.886061 8.886061
|
|
||||||
5041.775879 1.311768 1836.247437 0.000000 0.280253 0.000000 0.959926 8.886061 8.886061 8.886061
|
|
||||||
5049.608887 0.981812 1808.926514 0.000000 0.280253 0.000000 0.959926 8.886061 8.886061 8.886061
|
|
||||||
5057.984375 0.633911 1772.654785 0.000000 0.280253 0.000000 0.959926 8.886061 8.886061 8.886061
|
|
||||||
5000.683105 1.239990 1780.622925 0.000000 0.280253 0.000000 0.959926 17.422899 17.422899 17.422899
|
|
||||||
5348.513184 1.220703 1855.929077 0.000000 0.839487 0.000000 0.543380 5.878881 5.878881 5.878881
|
|
||||||
5344.836914 1.237427 1834.920044 0.000000 0.216712 0.000000 0.976236 4.962830 4.962830 4.962830
|
|
||||||
5507.144531 -0.413818 1836.900146 0.000000 -0.851415 0.000000 0.524493 17.366526 17.366526 17.366526
|
|
||||||
5516.655273 1.641235 1798.957642 0.000000 -0.580733 0.000000 0.814094 6.412361 6.412361 6.412361
|
|
||||||
5391.823242 2.661743 1905.745483 0.000000 -0.122191 0.000000 0.992507 8.351881 8.351881 8.351881
|
|
||||||
5320.958008 0.938599 1849.244751 0.000000 0.216712 0.000000 0.976236 4.962830 4.962830 4.962830
|
|
||||||
5709.701172 0.752686 1982.972290 0.000000 0.234372 0.000000 0.972147 11.069145 11.069145 11.069145
|
|
||||||
5661.385254 0.896606 1966.976074 0.000000 0.035393 0.000000 0.999373 9.100697 9.100697 9.100697
|
|
||||||
5590.905273 -0.478882 1968.325684 0.000000 -0.046492 0.000000 0.998918 37.516624 37.516624 37.516624
|
|
||||||
5518.555664 1.572510 1994.826416 0.000000 0.207765 0.000000 0.978179 13.324284 13.324284 13.324284
|
|
||||||
5501.906738 1.432129 2066.336670 0.000000 0.000305 0.000000 1.000000 19.385250 19.385250 19.385250
|
|
||||||
5457.115723 1.372314 2030.090454 0.000000 -0.194492 0.000000 0.980904 13.540122 13.540122 13.540122
|
|
||||||
5455.970215 0.098633 1979.898438 0.000000 -0.323424 0.000000 0.946254 8.310320 8.310320 8.310320
|
|
||||||
5490.514648 1.114624 1971.787720 0.000000 -0.069707 0.000000 0.997568 7.921128 7.921128 7.921128
|
|
||||||
5473.046387 1.683594 1934.418335 0.000000 -0.069707 0.000000 0.997568 7.921128 7.921128 7.921128
|
|
||||||
5519.873535 1.545776 1934.233765 0.000000 0.232294 0.000000 0.972645 13.507469 13.507469 13.507469
|
|
||||||
5515.916504 1.059082 1889.077393 0.000000 0.074577 0.000000 0.997215 13.507469 13.507469 13.507469
|
|
||||||
5583.270020 0.661011 1933.375977 0.000000 0.074577 0.000000 0.997215 13.507469 13.507469 13.507469
|
|
||||||
5591.742676 -0.005737 1914.662842 0.000000 -0.083886 0.000000 0.996475 13.507469 13.507469 13.507469
|
|
||||||
5933.087402 1.744629 2160.533691 0.000000 0.108611 0.000000 0.994084 15.505006 15.505006 15.505006
|
|
||||||
6083.338867 2.174561 2094.344238 0.000000 0.199339 0.000000 0.979930 34.852654 34.852654 34.852654
|
|
||||||
6014.979492 1.463867 1991.010742 0.000000 0.108611 0.000000 0.994084 9.720449 9.720449 9.720449
|
|
||||||
5965.250977 -1.687744 1961.491089 0.000000 0.000000 0.000000 1.000000 21.543406 21.543406 21.543406
|
|
||||||
4906.919922 2.233643 2290.148438 0.000000 -0.099809 0.000000 0.995007 72.046074 72.046074 72.046074
|
|
||||||
5079.643066 3.200195 2359.890381 0.000000 -0.058865 0.000000 0.998266 38.437584 38.437584 38.437584
|
|
||||||
2190.249756 -0.368653 3766.001709 0.000000 0.306901 0.000000 0.951741 29.536894 29.536894 29.536894
|
|
||||||
1645.248657 1.097900 3322.957275 0.000000 0.306901 0.000000 0.951741 16.826740 16.826740 16.826740
|
|
||||||
1700.690430 1.104736 3154.111572 0.000000 0.698566 0.000000 0.715545 7.696987 7.696987 7.696987
|
|
||||||
1751.119141 1.285645 3157.359131 0.000000 0.000000 0.000000 1.000000 6.189140 6.189140 6.189140
|
|
||||||
1832.673706 1.047119 3863.243164 0.000000 0.162063 0.000000 0.986780 13.494645 13.494645 13.494645
|
|
||||||
1800.804565 2.350342 3846.920166 0.000000 0.000000 0.000000 1.000000 6.677247 6.677247 6.677247
|
|
||||||
1649.227051 2.096436 3657.857178 0.000000 -0.168850 0.000000 0.985642 9.728909 9.728909 9.728909
|
|
||||||
1513.979126 1.386719 3375.787598 0.000000 0.499094 0.000000 0.866548 7.584114 7.584114 7.584114
|
|
||||||
1844.677002 1.865479 3768.314941 0.000000 0.111038 0.000000 0.993816 8.839129 8.839129 8.839129
|
|
||||||
5398.375000 1.822266 1554.222534 0.000000 0.493026 0.000000 0.870015 12.009838 12.009838 12.009838
|
|
||||||
5396.528809 1.221191 1603.360107 0.000000 -0.766800 0.000000 0.641887 7.169690 7.169690 7.169690
|
|
||||||
2117.113281 1.119629 3879.426025 0.000000 0.215639 0.000000 0.976473 18.208496 18.208496 18.208496
|
|
||||||
2153.256592 2.462646 3939.663818 0.000000 -0.414838 0.000000 0.909895 33.379097 33.379097 33.379097
|
|
||||||
2156.183594 0.030029 3877.914062 0.000000 0.966247 0.000000 0.257616 22.551014 22.551014 22.551014
|
|
||||||
1644.222778 1.217285 3517.788818 0.000000 0.116768 0.000000 0.993159 9.912519 9.912519 9.912519
|
|
||||||
5912.996582 0.000000 2089.666016 0.000000 0.000000 0.000000 1.000000 9.081818 9.081818 9.081818
|
|
||||||
5171.068359 0.000000 1628.417480 0.000000 -0.752713 0.000000 0.658349 15.843987 15.843987 15.843987
|
|
||||||
5156.872070 0.000000 1630.473877 0.000000 0.655499 0.000000 0.755196 16.685982 16.685982 16.685982
|
|
||||||
3795.942627 0.978271 1377.808472 0.000000 -0.917133 0.000000 0.398581 6.928739 6.928739 6.928739
|
|
||||||
"}
|
|
||||||
|
|
@ -1,67 +0,0 @@
|
||||||
categories={
|
|
||||||
map_foliage_category
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="grass_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=6
|
|
||||||
category="map_foliage_category"
|
|
||||||
masks="high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="lake_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=20
|
|
||||||
category="map_foliage_category"
|
|
||||||
masks="low|medium|high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="map_table_layer_ce1"
|
|
||||||
fade_in=21
|
|
||||||
fade_out=80
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags="map_table_style_ce1"
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="map_table_layer_ep3"
|
|
||||||
fade_in=21
|
|
||||||
fade_out=80
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags="map_table_style_ep3"
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="map_table_layer_western"
|
|
||||||
fade_in=21
|
|
||||||
fade_out=80
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags="map_table_style_western"
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="tree_high_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category="map_foliage_category"
|
|
||||||
masks="low|medium|high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="tree_low_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category="map_foliage_category"
|
|
||||||
masks="low|medium|high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="tree_medium_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=9
|
|
||||||
category="map_foliage_category"
|
|
||||||
masks="medium|high"
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
|
|
@ -1,60 +0,0 @@
|
||||||
object={
|
|
||||||
name="ce1_tabletop"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ce1_tabletop_candles_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_candles_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ce1_tabletop_cloth"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_tablecloth_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ce1_tabletop_floor_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_floor_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ce1_tabletop_ground_props_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_groundprops_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ce1_tabletop_props_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ce1"
|
|
||||||
entity="ce1_tabletop_props_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
object={
|
|
||||||
name="ep3_tabletop"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ep3"
|
|
||||||
entity="ep3_tabletop_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="ep3_tabletop_floor"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ep3"
|
|
||||||
entity="ep3_tabletop_floor_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="tabletop_props"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_ep3"
|
|
||||||
entity="tabletop_props_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
object={
|
|
||||||
name="western_tabletop"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_western"
|
|
||||||
entity="tabletop_west_basic_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="western_tabletop_candles_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_western"
|
|
||||||
entity="tabletop_west_basic_candles_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="western_tabletop_cloth"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_western"
|
|
||||||
entity="tabletop_west_basic_tablecloth_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="western_tabletop_props_01"
|
|
||||||
render_pass=MapUnderTerrain
|
|
||||||
clamp_to_water_level=yes
|
|
||||||
generated_content=no
|
|
||||||
layer="map_table_layer_western"
|
|
||||||
entity="tabletop_west_basic_props_entity"
|
|
||||||
count=1
|
|
||||||
transform="3114.814941 -1.000000 2036.551270 0.000000 0.000000 0.000000 0.000000 5.000000 5.000000 5.000000
|
|
||||||
"}
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,195 +0,0 @@
|
||||||
object={
|
|
||||||
name="constantinople_sprawl"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="ep3_constantinople_sprawl_mesh"
|
|
||||||
count=1
|
|
||||||
transform="2585.821533 0.000000 1963.710083 0.000000 0.041457 0.000000 0.469000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="hadrians wall 01"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="hadrians_wall_01_a_mesh"
|
|
||||||
count=4
|
|
||||||
transform="812.089355 0.000000 3070.369141 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
833.796875 0.000000 3073.171143 0.000000 -0.488259 0.000000 0.872699 1.000000 1.000000 1.000000
|
|
||||||
857.016296 0.000000 3075.570312 0.000000 0.305862 0.000000 0.952076 1.000000 1.000000 1.000000
|
|
||||||
888.564636 0.000000 3073.793213 0.000000 -0.072096 0.000000 0.997398 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="hadrians wall 02"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="hadrians_wall_01_b_mesh"
|
|
||||||
count=5
|
|
||||||
transform="901.914368 0.000000 3072.241455 0.000000 0.120366 0.000000 0.992730 1.000000 1.000000 1.000000
|
|
||||||
880.866394 0.000000 3072.380615 0.000000 0.988174 0.000000 0.153334 1.000000 1.000000 1.000000
|
|
||||||
869.506958 0.000000 3070.605713 0.000000 0.131326 0.000000 0.991339 1.000000 1.000000 1.000000
|
|
||||||
844.418640 0.000000 3079.321289 0.000000 0.028995 0.000000 0.999580 1.000000 1.000000 1.000000
|
|
||||||
818.695068 0.000000 3067.035889 0.000000 0.380527 0.000000 0.924770 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="hadrians wall 03"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="hadrians_wall_01_c_mesh"
|
|
||||||
count=8
|
|
||||||
transform="894.776062 0.000000 3074.163330 0.000000 0.244350 0.000000 0.969687 1.000000 1.000000 1.000000
|
|
||||||
874.237976 0.000000 3070.005127 0.000000 -0.988822 0.000000 0.149103 1.000000 1.000000 1.000000
|
|
||||||
851.149658 0.000000 3078.954102 0.000000 0.359768 0.000000 0.933042 1.000000 1.000000 1.000000
|
|
||||||
837.921143 0.000000 3078.610596 0.000000 -0.102534 0.000000 0.994729 1.000000 1.000000 1.000000
|
|
||||||
829.667419 0.000000 3068.350098 0.000000 0.999301 0.000000 0.037371 1.000000 1.000000 1.000000
|
|
||||||
824.448059 0.000000 3064.793701 0.000000 -0.999528 0.000000 0.030714 1.000000 1.000000 1.000000
|
|
||||||
806.021301 0.000000 3069.597656 0.000000 0.033380 0.000000 0.999443 1.000000 1.000000 1.000000
|
|
||||||
801.070923 0.000000 3067.754639 0.000000 0.994983 0.000000 -0.100049 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="hadrians wall 04"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="hadrians_wall_01_d_mesh"
|
|
||||||
count=5
|
|
||||||
transform="876.227173 0.000000 3068.051025 0.000000 0.882225 0.000000 0.470829 1.000000 1.000000 1.000000
|
|
||||||
886.184509 0.000000 3071.329834 0.000000 0.106529 0.000000 -0.994310 1.000000 1.000000 1.000000
|
|
||||||
901.873047 0.000000 3070.994629 0.000000 0.388698 0.000000 0.921365 1.000000 1.000000 1.000000
|
|
||||||
861.051758 0.000000 3072.025391 0.000000 0.632093 0.000000 -0.774893 1.000000 1.000000 1.000000
|
|
||||||
825.434082 0.000000 3066.197998 0.000000 0.000000 0.000000 1.000000 1.000000 1.000000 1.000000
|
|
||||||
"}
|
|
||||||
object={
|
|
||||||
name="mines"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_mines_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_brihadeeswarar_temple"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_brihadeeswarar_temple_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_building_petra"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_petra_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_cathedral_generic"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_cathedral_generic_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_cathedral_pagan"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_cathedral_pagan_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_colosseum"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_colosseum_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_great_mosque_of_djenne"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_great_mosque_of_djenne_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_great_mosque_of_mecca"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_great_mosque_of_mecca_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_notre_dame"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_notre_dame_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_palace_of_aachen"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_palace_of_aachen_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_pyramids_giza"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_pyramids_giza_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_stonehenge"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_stonehenge_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="special_tower_of_london"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="building_special_tower_of_london_mesh"
|
|
||||||
count=0
|
|
||||||
}
|
|
||||||
object={
|
|
||||||
name="wall_of_gurgan"
|
|
||||||
render_pass=MapUnderWater
|
|
||||||
clamp_to_water_level=no
|
|
||||||
generated_content=no
|
|
||||||
layer="temp_layer"
|
|
||||||
pdxmesh="fp3_building_special_great_wall_of_gorgan_01_a_mesh"
|
|
||||||
count=1
|
|
||||||
transform="3809.242188 0.000000 1819.354614 0.000000 -0.077906 0.000000 0.464339 0.663744 0.663744 0.663744
|
|
||||||
"}
|
|
||||||
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
File diff suppressed because it is too large
Load diff
|
|
@ -1,16 +0,0 @@
|
||||||
layer={
|
|
||||||
name="temp_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=11
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
layer={
|
|
||||||
name="test_object_layer"
|
|
||||||
fade_in=0
|
|
||||||
fade_out=11
|
|
||||||
category=""
|
|
||||||
masks=""
|
|
||||||
visibility_tags=""
|
|
||||||
}
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4b85b97bdf637fd6a12be54795acc6451cab0e12d585370dffe6cab2cfce5bba
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:256d649319d8b5478b0ffff782187716ed699dde1dfe86ff0f5318ebd6394c9c
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:acaca3a884e01e112127cb2eda9e821b44d86e31eefd7e0a5b4e63f758da94e2
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:b01287e12be66c18b7cf48569e2e0391df2ae3e619649d91e8b181b2d2042624
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:58b532e95cf309998f90eace47edf05f2ed27a18711ce718e9aad1d4b3e443e4
|
|
||||||
size 262272
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:510edac32f3099a68e67458b17334a03223a40946e790f1a8f75e1d53b81a591
|
|
||||||
size 262272
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:419a6b77293b92b683896e0f700965693aa64867248513be30af80f063116de7
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:84fbe3c90bd073788cac51d1cdf2848806a926c0352d12ec81ee67bc3a83376e
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:4c3bd85200170abc5c991e7e6f119fe7bf775ee6a506b879b39d1506afae2699
|
|
||||||
size 87536
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:dbf8a80782c38c6b2adf9a07f1aead1331caa91febbae38f04c18984a795f28d
|
|
||||||
size 65664
|
|
||||||
|
|
@ -1,3 +0,0 @@
|
||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:5fa25a6cd83b6ec31454d65779a2778f8107068c1268b08f28e9f3bf061208ba
|
|
||||||
size 65664
|
|
||||||
Some files were not shown because too many files have changed in this diff Show more
Loading…
Add table
Add a link
Reference in a new issue