[0.15] Can't hide custom blueprint type from creation GUI
Posted: Thu May 04, 2017 3:43 pm
I have this custom blueprint prototype which is only meant to be used once and can only be created by mod, but albeit having flags = {"hidden"}, it still shows up in the Blueprint GUI (B).
I would also appreciate having the ability to stop the player from storing this type of blueprint in the Blueprint Library (perhaps with the same "hidden" flag or another specific one for storage)
I would also appreciate having the ability to stop the player from storing this type of blueprint in the Blueprint Library (perhaps with the same "hidden" flag or another specific one for storage)
Code: Select all
{
type = "blueprint",
name = "cut-and-paste-copy-blueprint",
icon = "__cut-and-paste__/graphics/icons/copy-tool.png",
flags = {"hidden"},
subgroup = "tool",
order = "c[automated-construction]-a[blueprint]",
stack_size = 1,
stackable = false,
selection_color = { r = 0, g = 1, b = 0 },
alt_selection_color = { r = 0, g = 1, b = 0 },
selection_mode = {"cancel-deconstruct"},
alt_selection_mode = {"cancel-deconstruct"},
selection_cursor_box_type = "not-allowed",
alt_selection_cursor_box_type = "not-allowed"
},