How to make lab entity work indefinitely
Posted: Fri May 05, 2017 9:50 am
I'm using a lab type entity in my mod. I'd like it to have an idle sound, however this
and this does not work. The base lab uses working_sound so I'm looking for something I can insert in it that does not show up in alt view and is never consumed but the lab still works. This has to work without the lab being connected to power.
Code: Select all
idle_sound =
{
filename = "__Portals__/sounds/portal_ambient_loop1.ogg",
volume = 0.4
},
Code: Select all
working_sound =
{
sound =
{
filename = "__Portals__/sounds/portal_ambient_loop1.ogg",
volume = 0.4
},
idle_sound =
{
filename = "__Portals__/sounds/portal_ambient_loop1.ogg",
volume = 0.4
},
},