mirror of
https://github.com/Citadel-Station-13/Citadel-Station-13-RP.git
synced 2026-08-22 20:16:35 +01:00
overhauls rendering + redoes some of widescreen/dynamic sizing + misc fixes (#4668)
Co-authored-by: VM_USER <VM_USER>
This commit is contained in:
co-authored by
VM_USER <VM_USER>
parent
798902257c
commit
bc5e0940a2
@@ -54,6 +54,12 @@
|
||||
/proc/_ispath(path, type)
|
||||
return ispath(path, type)
|
||||
|
||||
/proc/_json_encode(list/L)
|
||||
return json_encode(L)
|
||||
|
||||
/proc/_json_decode(json)
|
||||
return json_decode(json)
|
||||
|
||||
/proc/_length(E)
|
||||
return length(E)
|
||||
|
||||
@@ -153,9 +159,17 @@
|
||||
/proc/_sin(X)
|
||||
return sin(X)
|
||||
|
||||
/proc/_list2params(L)
|
||||
return list2params(L)
|
||||
|
||||
/proc/_list_construct(...)
|
||||
. = args.Copy()
|
||||
|
||||
/proc/_list_construct_assoc(...)
|
||||
. = list()
|
||||
for(var/i in 1 to (args.len - 1) step 2)
|
||||
.[args[i]] = args[i+1]
|
||||
|
||||
/proc/_list_add(list/L, ...)
|
||||
if (args.len < 2)
|
||||
return
|
||||
|
||||
Reference in New Issue
Block a user