Merge pull request #9719 from SamHPurp/smoothing-improvements

Icon Smoothing to StonedMC
This commit is contained in:
variableundefined
2018-10-21 07:41:47 +08:00
committed by GitHub
16 changed files with 117 additions and 65 deletions
+2 -2
View File
@@ -17,11 +17,11 @@ var/global/list/potentialRandomZlevels = generateMapList(filename = "config/away
log_debug("Smoothing tiles")
for(var/turf/T in smoothTurfs)
if(T.smooth)
smooth_icon(T)
queue_smooth(T)
for(var/R in T)
var/atom/A = R
if(A.smooth)
smooth_icon(A)
queue_smooth(A)
if(istype(T, /turf/simulated/mineral)) // For the listening post, among other maps
var/turf/simulated/mineral/MT = T
MT.add_edges()
+1 -1
View File
@@ -52,7 +52,7 @@
// After docking //
/atom/proc/postDock(obj/docking_port/S1)
if(smooth)
smooth_icon(src)
queue_smooth(src)
/obj/machinery/door/airlock/postDock(obj/docking_port/stationary/S1)
. = ..()
+1 -1
View File
@@ -15,5 +15,5 @@
/obj/effect/temp_visual/ripple/New()
. = ..()
smooth_icon(src)
queue_smooth(src)
animate(src, alpha=255, time=SHUTTLE_RIPPLE_TIME)