0a3966a339
🔍 Lint / 🪄 Check lint (push) Has been cancelled
🔍 Lint / 🎨 Check format (push) Has been cancelled
🔍 Lint / 🔎 Typecheck (push) Has been cancelled
📊 Quality / 🔒 Security Audit (push) Has been cancelled
📊 Quality / 📋 Dependency Freshness (push) Has been cancelled
📊 Quality / 📦 Bundle Size (push) Has been cancelled
🔍 Lint / 🏗 Build (push) Has been cancelled
10 lines
391 B
TypeScript
10 lines
391 B
TypeScript
/**
|
|
* Shared runtime signal set by PylonDownedPylon when the straighten
|
|
* animation starts, so PylonFarmerNPC can switch its lerp target.
|
|
*
|
|
* `completed` is set after the straighten animation finishes so
|
|
* PylonFarmerNPC can play the post-raise audio sequence before
|
|
* transitioning to the repair game.
|
|
*/
|
|
export const pylonStraighteningSignal = { started: false, completed: false };
|