You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
localscreenWidth, screenHeight=800,600--Let's create a new browser in remote mode.localwebBrowser=createBrowser(screenWidth, screenHeight, false, false)
--Function to render the browser.functionwebBrowserRender()
--Render the browser on the full size of the screen.dxDrawImage(200, 200, screenWidth, screenHeight, webBrowser, 0, 0, 0, tocolor(255,255,255,255), true)
end--The event onClientBrowserCreated will be triggered, after the browser has been initialized.--After this event has been triggered, we will be able to load our URL and start drawing.addEventHandler("onClientBrowserCreated", webBrowser,
function()
--After the browser has been initialized, we can load www.youtube.comloadBrowserURL(webBrowser, "https://www.orillusion.com/en/example/base/AddRemove.html")
--Now we can start to render the browser.addEventHandler("onClientRender", root, webBrowserRender)
end
)
Security Policy
I have read and understood the Security Policy and this issue is not about a cheat or security vulnerability.
The text was updated successfully, but these errors were encountered:
Is your feature request related to a problem? Please describe.
Would be nice to have it, right now even with enabled gpu rendering you get error:
https://www.orillusion.com/en/example/base/AddRemove.html
Describe the solution you'd like
/
Describe alternatives you've considered
/
Additional context
Security Policy
The text was updated successfully, but these errors were encountered: