State and Logic
State and logic tools help other map tools do useful work. They do not usually create a whole feature by themselves; they turn objects on and off, count events, and turn several small signals into one larger map behavior.
Tools On This Page
-
Toggle or turn components and GameObjects on or off through map I/O
-
Count inputs and fire an output when a target count is reached
Enable Targets
TTT Enable Target controls whether another component or GameObject is enabled. Use it for lights, sounds, particles, visual indicators, trap pieces, and simple object visibility.
Setup
- Add
TTT Enable Targetto a nearby helper object or the object being controlled. - Choose
Target Kind. - Assign
Target ComponentorTarget Object. - Choose
Activate Mode. - Wire buttons, triggers, role testers, or logic outputs to this enable target.
Target Kinds
| Target kind | Use |
|---|---|
Component |
Best for lights, particle emitters, sound emitters, and other individual components. Try to use this one, it is more reliable and less easy to make a mistake with. |
GameObject |
Enables or disables the whole object tree. Leave Target Object empty to target the object we're on right now. |
Do not disable the receiver by accident
If an enable target disables the GameObject that contains the TTT Enable Target component, future signals won't reach it until another object re-enables it or the round resets. For reusable lights and effects, targeting a specific component is usually safer.
Due to how widely applicable this is, it hasn't been end-to-end tested. If you run into issues, reach out to @fatsumo on our Discord!
Inputs And Outputs
| Input | Behavior |
|---|---|
Start / Open |
Enables the target. |
Stop / Close |
Disables the target. |
Activate |
Uses Activate Mode: enable, toggle, or timed enable. |
Toggle |
Flips the current enabled state. |
Enter / Occupied |
Enables the target. Useful with trigger outputs. |
Exit / Empty |
Disables the target. Useful with trigger outputs. |
| Output | Use |
|---|---|
Targets On Enabled |
Fires when the target is enabled. |
Targets On Disabled |
Fires when the target is disabled. |
Common Patterns
| Pattern | Wiring |
|---|---|
| Traitor tester results | Tester output to enable target with Start; opposite result output with Stop. |
| Trigger a sound | Trigger occupied output to enable target with Start; empty output with Stop. |
| Button toggles a light | Button output to enable target with Toggle, or leave blank if Activate Mode is Toggle. |
Logic Counters
TTT Logic Counter counts map I/O events sent to it, then fires an output at a specified number received. Use it when several actions should be completed before a door opens, an object is spawned, easter eggs... So on and so forth.
Setup
- Add
TTT Logic Counterto a helper GameObject. - Set
Start CountandTarget Count. - Wire events that should count up to the counter.
- Wire
Targets On Reachedto whatever should happen when the count reaches the target. - Use
Reset On Reached,Fire Once, orResetinputs if the counter should be reusable.
Useful Options
| Option | Use |
|---|---|
Start Count |
Count restored on round reset. Usually 0. |
Target Count |
The count needed before Targets On Reached fires. |
Increment Amount |
Amount added by normal activation-style inputs. |
Decrement Amount |
Amount removed by decrement-style inputs. |
Reset On Reached |
Resets to Start Count immediately after firing reached outputs. |
Fire Once |
Prevents repeated reached outputs until the counter is reset. |
Starts Locked |
Ignores count-changing inputs until it receives Unlock. |
Inputs And Outputs
| Input | Behavior |
|---|---|
Activate / Press / Enter / Occupied |
Adds Increment Amount. |
Increment / Add / Count |
Adds Increment Amount, or a numeric Payload when provided. |
Decrement / Subtract |
Removes Decrement Amount, or a numeric Payload when provided. |
Set |
Sets the count to the numeric Payload. |
Reset |
Restores Start Count. |
Lock / Unlock |
Prevents or allows count-changing inputs. |
| Output | Use |
|---|---|
Targets On Reached |
Fires when the count crosses from below Target Count to at least Target Count. Payload is the current count. |
Targets On Changed |
Fires whenever the count changes. Payload is the current count. |
Keep names legible
Name the counter after what it is waiting for. Counters are easy to wire and annoying to debug if every helper object is called JoeBlunt.
Testing Checklist
- Test the starting count after a round reset.
- Test whether the counter can fire more than once.
- Check payload values if you use
Add,Subtract, orSet. - Confirm locked counters ignore count-changing inputs but still unlock correctly.
- Use
Targets On Changedtemporarily while debugging complicated setups.