File size: 444 Bytes
0712d5f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | -- src/ReplicatedStorage/Shared/WireLogicConfig.lua
local WireLogicConfig = {
MaxWireLength = 50, -- Maximum distance between two connected nodes
-- Defining the kinds of components available
ComponentTypes = {
Source = {"Button", "Lever", "PressurePlate"},
Logic = {"AND", "OR", "NOT", "Delay", "Timer"},
Target = {"Door", "Sawmill", "Conveyor", "Light"}
}
}
return WireLogicConfig
|