function ss_grid_init()
ss_grid_vehicle()
end
function ss_grid_cleanup()
end
function ss_grid_vehicle()
local thirds = vint_object_find("thirds")
vint_set_property(thirds, "visible", false)
local golden_ratio = vint_object_find("golden_ratio")
vint_set_property(golden_ratio, "visible", false)
local center = vint_object_find("center")
vint_set_property(center, "visible", false)
local vehicle = vint_object_find("vehicle")
vint_set_property(vehicle, "visible", true)
end
function ss_grid_golden_ratio()
local thirds = vint_object_find("thirds")
vint_set_property(thirds, "visible", false)
local golden_ratio = vint_object_find("golden_ratio")
vint_set_property(golden_ratio, "visible", true)
local center = vint_object_find("center")
vint_set_property(center, "visible", true)
local vehicle = vint_object_find("vehicle")
vint_set_property(vehicle, "visible", false)
end
function ss_grid_thirds()
local thirds = vint_object_find("thirds")
vint_set_property(thirds, "visible", true)
local golden_ratio = vint_object_find("golden_ratio")
vint_set_property(golden_ratio, "visible", false)
local center = vint_object_find("center")
vint_set_property(center, "visible", true)
local vehicle = vint_object_find("vehicle")
vint_set_property(vehicle, "visible", false)
end
function ss_grid_hide()
local thirds = vint_object_find("thirds")
vint_set_property(thirds, "visible", false)
local golden_ratio = vint_object_find("golden_ratio")
vint_set_property(golden_ratio, "visible", false)
local center = vint_object_find("center")
vint_set_property(center, "visible", false)
local vehicle = vint_object_find("vehicle")
vint_set_property(vehicle, "visible", false)
end