You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.5 KiB
49 lines
1.5 KiB
-- __ _ _______ _ __
|
|
-- / / /\ | | |__ __| | | \ \
|
|
-- / / / \ | |_ __ ___ | | ___ ___| |__ \ \
|
|
-- < < / /\ \ | | '_ ` _ \| |/ _ \/ __| '_ \ > >
|
|
-- \ \ / ____ \| | | | | | | | __/ (__| | | | / /
|
|
-- \_\ /_/ \_\_|_| |_| |_|_|\___|\___|_| |_| /_/
|
|
|
|
local intro = {}
|
|
|
|
function intro.open( dt )
|
|
local chars = dt.cont
|
|
local resScale = Quantum.Client.ResolutionScale
|
|
local sw, sh = ScrW(), ScrH()
|
|
local padding = 10 * resScale
|
|
local padding_s = 4 * resScale
|
|
|
|
if( !f ) then
|
|
|
|
Quantum.Client.IsInMenu = true -- hide the hud
|
|
|
|
local f = vgui.Create( "DFrame" )
|
|
f:SetSize( sw, sh )
|
|
f:SetTitle( "Cinematic Intro Test" )
|
|
f.Paint = function( self ) end
|
|
f:SetDraggable( false )
|
|
f:MakePopup()
|
|
function f:OnClose()
|
|
Quantum.Client.IsInMenu = false
|
|
Quantum.Client.Cam.Stop() -- stop the cinematic
|
|
end
|
|
|
|
local scene = {
|
|
pos1 = Vector(6879, 4135, 72),
|
|
pos2 = Vector(8760, 2740, 86),
|
|
ang1 = Angle(7, 122, 0),
|
|
ang2 = Angle(1, -104, 0)
|
|
}
|
|
local scene2 = {
|
|
pos1 = Vector( 8917, 2194, 83 ),
|
|
pos2 = Vector( 8312, 2265, 83 ),
|
|
ang1 = Angle( 2, -123, 0 ),
|
|
ang2 = Angle( 3, -41, 0 )
|
|
}
|
|
|
|
Quantum.Client.Cam.Start( {[1] = scene, [2] = scene2}, 80, {[1] = 10, [2] = 8}, false ) -- start the cinematic
|
|
end
|
|
end
|
|
|
|
return intro |