mirror of
https://github.com/Aurorastation/Aurora.3.git
synced 2026-08-24 05:23:22 +01:00
Icon smoothing subsystem update (#17383)
* sfasdf * sfsaf * sadfas * sdfasdf
This commit is contained in:
@@ -129,7 +129,7 @@
|
||||
icon_state = "snow0"
|
||||
dirt_color = "#e3e7e8"
|
||||
footstep_sound = /singleton/sound_category/snow_footstep
|
||||
smooth = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_flags = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_hints = SMOOTHHINT_CUT_F | SMOOTHHINT_ONLY_MATCH_TURF | SMOOTHHINT_TARGETS_NOT_UNIQUE
|
||||
canSmoothWith = list(
|
||||
/turf/simulated/floor/exoplanet/snow,
|
||||
@@ -142,8 +142,8 @@
|
||||
pixel_x = -4
|
||||
pixel_y = -4
|
||||
icon_state = pick("snow[rand(1,2)]","snow0","snow0")
|
||||
queue_smooth_neighbors(src)
|
||||
queue_smooth(src)
|
||||
SSicon_smooth.add_to_queue_neighbors(src)
|
||||
SSicon_smooth.add_to_queue(src)
|
||||
|
||||
/turf/simulated/floor/exoplanet/snow/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
||||
melt()
|
||||
|
||||
@@ -6,7 +6,7 @@
|
||||
blend_mode = BLEND_MULTIPLY
|
||||
density = FALSE
|
||||
anchored = TRUE
|
||||
smooth = SMOOTH_MORE
|
||||
smoothing_flags = SMOOTH_MORE
|
||||
canSmoothWith = list(
|
||||
/obj/structure/clearing,
|
||||
/obj/structure/lattice/catwalk,
|
||||
|
||||
@@ -34,14 +34,14 @@
|
||||
name = "wilting mossy grass"
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/moss_transition_1.dmi'
|
||||
icon_state = "unsmooth"
|
||||
smooth = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_flags = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
canSmoothWith = list(/turf/simulated/floor/exoplanet/konyang/wilting, /turf/simulated/floor/exoplanet/konyang/pink)
|
||||
|
||||
/turf/simulated/floor/exoplanet/konyang/pink//manually mapped. To be surrounded by wilting grass
|
||||
name = "blossoming mossy grass"
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/moss_transition_2.dmi'
|
||||
icon_state = "unsmooth"
|
||||
smooth = SMOOTH_TRUE
|
||||
smoothing_flags = SMOOTH_TRUE
|
||||
|
||||
/turf/simulated/floor/exoplanet/dirt_konyang//a different path entirely so it will allow for edges to generate from grass
|
||||
name = "compacted dirt"
|
||||
@@ -57,6 +57,6 @@
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/konyang_beach.dmi'
|
||||
icon_state = "sand"
|
||||
footstep_sound = /singleton/sound_category/asteroid_footstep
|
||||
smooth = SMOOTH_FALSE
|
||||
smoothing_flags = SMOOTH_FALSE
|
||||
does_footprint = FALSE
|
||||
has_edge_icon = FALSE
|
||||
|
||||
@@ -5,7 +5,7 @@
|
||||
dirt_color = "#e3e7e8"
|
||||
layer = LOWER_ON_TURF_LAYER
|
||||
footstep_sound = /singleton/sound_category/snow_footstep
|
||||
smooth = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_flags = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_hints = SMOOTHHINT_CUT_F | SMOOTHHINT_ONLY_MATCH_TURF | SMOOTHHINT_TARGETS_NOT_UNIQUE
|
||||
canSmoothWith = list(
|
||||
/turf/simulated/floor/exoplanet/snow,
|
||||
@@ -18,8 +18,8 @@
|
||||
pixel_x = -4
|
||||
pixel_y = -4
|
||||
icon_state = pick("snow[rand(1,2)]","snow0","snow0")
|
||||
queue_smooth_neighbors(src)
|
||||
queue_smooth(src)
|
||||
SSicon_smooth.add_to_queue_neighbors(src)
|
||||
SSicon_smooth.add_to_queue(src)
|
||||
|
||||
/turf/simulated/floor/exoplanet/snow/fire_act(datum/gas_mixture/air, exposed_temperature, exposed_volume)
|
||||
melt()
|
||||
|
||||
@@ -13,7 +13,7 @@
|
||||
icon_state = "unsmooth"
|
||||
base_icon_state = "unsmooth"
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/konyang_deep_water.dmi'
|
||||
smooth = SMOOTH_TRUE
|
||||
smoothing_flags = SMOOTH_TRUE
|
||||
|
||||
/turf/simulated/floor/exoplanet/water/shallow
|
||||
name = "shallow water"
|
||||
@@ -36,15 +36,15 @@
|
||||
icon_state = "unsmooth"
|
||||
base_icon_state = "unsmooth"
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/konyang_smooth_water.dmi'
|
||||
smooth = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_flags = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
canSmoothWith = list(/turf/simulated/floor/exoplanet/water/shallow/konyang, /turf/simulated/floor/exoplanet/water/konyang, /turf/simulated/floor/exoplanet/water/shallow/konyang/beach)
|
||||
|
||||
/turf/simulated/floor/exoplanet/water/shallow/konyang/no_smooth
|
||||
smooth = SMOOTH_FALSE
|
||||
smoothing_flags = SMOOTH_FALSE
|
||||
|
||||
/turf/simulated/floor/exoplanet/water/shallow/konyang/beach
|
||||
icon = 'icons/turf/flooring/exoplanet/konyang/konyang_beach.dmi'
|
||||
smooth = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
smoothing_flags = SMOOTH_MORE | SMOOTH_BORDER | SMOOTH_NO_CLEAR_ICON
|
||||
canSmoothWith = list(/turf/simulated/floor/exoplanet/water/shallow/konyang, /turf/simulated/floor/exoplanet/water/konyang, /turf/simulated/floor/exoplanet/water/shallow/konyang/beach)
|
||||
|
||||
/turf/simulated/floor/exoplanet/water/shallow/sewage//What horror.
|
||||
|
||||
Reference in New Issue
Block a user