VR, Remote Mechs and Remote Robots (#7523)

Adds VR functionality, subsystem and a command VR system.
This commit is contained in:
Geeves
2020-01-12 14:09:48 +01:00
committed by Matt Atlas
parent 8e71fe07c2
commit 2fed43a871
20 changed files with 579 additions and 49 deletions
+16
View File
@@ -192,6 +192,22 @@
stored_mmi.forceMove(get_turf(src))
qdel(src)
/obj/item/organ/internal/mmi_holder/circuit/Initialize()
robotize()
stored_mmi = new /obj/item/device/mmi/digital/robot(src)
. = ..()
addtimer(CALLBACK(src, .proc/setup_brain), 1)
/obj/item/organ/internal/mmi_holder/circuit/proc/setup_brain()
if(owner)
stored_mmi.name = "robotic intelligence circuit ([owner.name])"
stored_mmi.brainmob.real_name = owner.name
stored_mmi.brainmob.name = stored_mmi.brainmob.real_name
update_from_mmi()
else
stored_mmi.forceMove(get_turf(src))
qdel(src)
//////////////
//Terminator//
//////////////