City Showcase System
- Showcase Structure
{ name = "Maze Bank Tower", baseLocation = vector3(-75.0, -820.0, 320.0), playerOffset = -50.0, preloadRadius = 200.0, sequences = { -- Array of camera sequences } }PropertyTypeRequiredDescriptionCamera Sequencessequences = { { type = "orbit", center = vector3(-75.0, -820.0, 220.0), radius = 120.0, height = 80.0, startAngle = 0, endAngle = 120, duration = 18000, cutStart = 4096, -- Optional: Start offset cutEnd = 8096, -- Optional: End time fov = 45.0, shake = {amplitude = 0.35, frequency = 1.2, type = "HAND_SHAKE"}, dof = {near = 50.0, far = 2000.0, strength = 0.6} } }{ type = "slowpan", startPosition = vector3(x, y, z), endPosition = vector3(x2, y2, z2), rotation = vector3(pitch, roll, yaw), fov = 45.0, duration = 14000 }{ type = "handheld", relativePosition = {x = 1.2, y = 1.8, z = 1.2}, rotation = vector3(-8.0, 0.0, -140.0), fov = 26.0, focus = "manual", duration = 10000, shake = {amplitude = 0.04, frequency = 0.3, type = "HAND_SHAKE"}, sway = {amplitude = 0.15, frequency = 0.2} }Timing and Cuts{ duration = 20000, -- Total sequence duration (20 seconds) cutStart = 5000, -- Start showing at 5 seconds cutEnd = 15000, -- Stop showing at 15 seconds -- Camera will be active for 10 seconds (5s to 15s) }
Last updated