TGUI v3.0

This ports TGUI, and makes the old nano crew monitor and the disposal
bins use it as first examples.
This commit is contained in:
ShadowLarkens
2020-07-09 22:06:23 -07:00
parent a1aada03f1
commit c06a2d2cef
187 changed files with 22079 additions and 79 deletions
+18
View File
@@ -162,6 +162,12 @@ You can set verify to TRUE if you want send() to sleep until the client has the
/datum/asset/simple/send(client)
send_asset_list(client,assets,verify)
/datum/asset/simple/tgui
assets = list(
"tgui.bundle.js" = 'tgui/packages/tgui/public/tgui.bundle.js',
"tgui.bundle.css" = 'tgui/packages/tgui/public/tgui.bundle.css'
)
//
// iconsheet Assets - For making lots of icon states available at once without sending a thousand tiny files.
//
@@ -292,3 +298,15 @@ You can set verify to TRUE if you want send() to sleep until the client has the
send_asset_list(client, uncommon)
send_asset_list(client, common)
// Fontawesome
/datum/asset/simple/fontawesome
verify = FALSE
assets = list(
"fa-regular-400.eot" = 'html/font-awesome/webfonts/fa-regular-400.eot',
"fa-regular-400.woff" = 'html/font-awesome/webfonts/fa-regular-400.woff',
"fa-solid-900.eot" = 'html/font-awesome/webfonts/fa-solid-900.eot',
"fa-solid-900.woff" = 'html/font-awesome/webfonts/fa-solid-900.woff',
"font-awesome.css" = 'html/font-awesome/css/all.min.css',
"v4shim.css" = 'html/font-awesome/css/v4-shims.min.css'
)