1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 |
ZO_SUMMERSET_BACKGROUND_FADE_DURATION_MS = 500
local WALL_TEXTURE_WIDTH = 4096
local WALL_TEXTURE_HEIGHT = 2048
local WALL_TEXTURE_USED_WIDTH = 4096
local WALL_TEXTURE_USED_HEIGHT = 1080
local WALL_TEXTURE_MAX_V = WALL_TEXTURE_USED_HEIGHT / WALL_TEXTURE_HEIGHT
--Background
return obj
end
if newState == SCENE_SHOWING then
elseif newState == SCENE_HIDDEN then
end
end )
end
self . showTimeline = ANIMATION_MANAGER : CreateTimelineFromVirtual ( "ZO_SummersetBackgroundShowAnimation" , self . containerControl )
end
local LEAF_EMITTERS =
{
{ centerX = - 1400 } ,
{ centerX = 600 } ,
{ centerX = - 750 } ,
{ centerX = - 1000 } ,
{ centerX = 400 } ,
{ centerX = - 800 } ,
{ centerX = - 1200 } ,
{ centerX = 200 } ,
{ centerX = 800 } ,
}
local NUM_LEAF_EMITTERS = # LEAF_EMITTERS
--The X range over which an emitter can spawn leaves
local LEAF_EMITTER_RANGE = 200
local HALF_LEAF_EMITTER_RANGE = LEAF_EMITTER_RANGE * 0.5
local LEAF_EMISSION_RATE = . 15
local LEAF_FLIP_BOOK_PLAYBACK_INFO = { playbackType = ANIMATION_PLAYBACK_LOOP , loopCount = LOOP_INDEFINITELY }
local LEAF_MIN_SHADOW_OFFSET = 20
local LEAF_SHADOW_OFFSET_VARIANCE = 10
local LEAF_SHADOW_SIZE_VARIANCE = 20
--A fake normalized distance in the Z axis
local size = particleSize + LEAF_SHADOW_SIZE_VARIANCE * ( 1 - normalizedHeight )
--The X offset is multiplied by 0.5 to match the angle of the light shafts
end
end
leafParticleSystem : SetParticleParameter ( "Texture" , "EsoUI/Art/PregameAnimatedBackground/leafTwirl.dds" )
leafParticleSystem : SetParticleParameter ( "LeafTextureRotationRadians" , ZO_WeightedChoiceGenerator : New ( ZO_PI * 0.25 , 0.4 , ZO_PI * 0.35 , 0.3 , ZO_PI * 0.15 , 0.3 ) )
leafParticleSystem : SetParticleParameter ( "LeafTumbleRadians" , ZO_UniformRangeGenerator : New ( - ZO_TWO_PI , ZO_TWO_PI ) )
leafParticleSystem : SetParticleParameter ( "StartOffsetX" , ZO_UniformRangeGenerator : New ( centerOffsetX - HALF_LEAF_EMITTER_RANGE , centerOffsetX + HALF_LEAF_EMITTER_RANGE ) )
return leafParticleSystem
end
local LIGHT_EMITTERS = { - 1000 , - 900 , - 750 , - 650 , - 400 , - 200 , 0 , 300 , 500 , 800 , 950 , 1100 , 1200 }
local LIGHT_EMITTER_RANGE_X = 250
local LIGHT_DURATION_S = 6
lightParticleSystem : SetParticleParameter ( "Width" , "EndAlpha" , ZO_UniformRangeGenerator : New ( 32 , 64 , 0.07 , 0.1 ) )
lightParticleSystem : SetParticleParameter ( "Texture" , "EsoUI/Art/PregameAnimatedBackground/lightShaft.dds" )
lightParticleSystem : SetParticleParameter ( "StartOffsetX" , ZO_UniformRangeGenerator : New ( offsetX - LIGHT_EMITTER_RANGE_X , offsetX + LIGHT_EMITTER_RANGE_X ) )
--The light shafts get progressively less steep as we go left to right
return lightParticleSystem
end
self . leafShadowTexturePool = ZO_ControlPool : New ( "ZO_SummersetBackground_LeafShadow" , self . containerControl )
local centerOffsetX = emitterInfo . centerX
local fullCycleS = 1 / LEAF_EMISSION_RATE
--Spread the leaf emitters evenly over a full cycle. They fire in the order they are listed in LEAF_EMITTERS.
local primeS = ( 1 - ( ( i - 1 ) / ( NUM_LEAF_EMITTERS - 1 ) ) ) * fullCycleS
end
end
end
local WALL_ASPECT_RATIO = WALL_TEXTURE_USED_WIDTH / WALL_TEXTURE_USED_HEIGHT
local wallWidth = WALL_ASPECT_RATIO * guiHeight
if wallWidth < guiWidth then
wallWidth = guiWidth
end
end
end
end
end
end
end
end
--Events
end
--Global XML Handlers
end
end |