A 2D neon-themed puzzle game for Android where you rotate circuit tiles to connect all power sources and terminals. Online leaderboards track your fastest solves.
- ๐ง Puzzle gameplay with rotating tiles
- ๐ Pipe/circuit logic mechanic (not color-based)
- โจ Neon glow visual theme
- ๐ถ Online leaderboard support (Firebase or PlayFab ready)
- ๐ฑ Android optimized
- Tap tiles to rotate
- Connect all terminals to the source
- Beat levels fast and climb the global leaderboard
- Clone the repo and open in Unity 2022+
- Run
Scenes/Main.unity - Build for Android under File > Build Settings
- Set up Firebase project: https://console.firebase.google.com
- Enable Authentication and Firestore
- Use
Firebase Unity SDK - Integrate inside
OnlineManager.cslike so:
FirebaseFirestore db = FirebaseFirestore.DefaultInstance;
DocumentReference docRef = db.Collection("leaderboards").Document(levelID);
await docRef.SetAsync(new { time = time });
Or use PlayFab if preferred.
๐ Folder Structure
Assets/Scripts/ โ Game logic and managers
Assets/Prefabs/ โ Circuit tile prefabs
Assets/ScriptableObjects/Levels/ โ Level configuration
Assets/Materials/ โ Neon visual assets
Assets/Scenes/ โ Main game scene
๐ฑ Platform
โ
Android
๐ฒ iOS (can be added)
โ
Unity Editor
๐งโ๐ป Author
Built with Unity + love.
Assets and mechanics are modular for easy expansion.