GMOD 3D2D与网站签名

时间:2015-02-03 00:36:35

标签: lua garrys-mod

我试图制作一个3D2D标志,上面有文字并显示一个网站,这样我就可以四处走动,网站将保持相同的位置。到目前为止,我已经获得了此代码,但不知道如何导入该网站。

include("shared.lua")

function ENT:Initialize()
    self:SetMaterial("models/shiny")
    self:SetRenderMode(RENDERMODE_NORMAL)
    self:SetColor(Color( 0, 0, 0, 255 ))
end

function ENT:Draw()
    self:DrawModel()

    local ENTPos = self:GetPos()+Vector(0,0,26)
    local ENTAng = self:GetAngles()
    ENTAng:RotateAroundAxis(ENTAng:Forward(), 0)
    ENTAng:RotateAroundAxis(ENTAng:Right(), 270)
    ENTAng:RotateAroundAxis(ENTAng:Up(), 90)

    local url = "https://www.google.com/"
    local webPage = vgui.Create("F1HTML")
    webPage:OpenURL(url)

    cam.Start3D2D(ENTPos + ENTAng:Up() * 2, ENTAng, 0.5)
    draw.RoundedBox( 2, -220, -62.5, 440, 227, Color(0, 0, 0, 255) );--Black Body
    draw.RoundedBox( 2, -220, -62.5, 440, 30, Color(255, 0, 0, 255) );--Red Title

    local FontNameTitle = "HUDNumber5"
    draw.SimpleText( "Server", FontNameTitle, 0, -33, Color( 255, 255, 255, 255 ), TEXT_ALIGN_CENTER, TEXT_ALIGN_TOP)

    cam.End3D2D()

end

1 个答案:

答案 0 :(得分:1)

要像您尝试的那样在3D空间中显示网站,我建议您使用3D2D derma project by HandsomeMatt

您可能已经知道,Derma可用于在面板中打开网站。 查看Derma Basic Guide如何使用derma。

它允许您在3D2D空间中绘制真皮面板,就像您想要的那样!