Not too much at all. I'm grateful for the input, thank you! 😊
DMGregory
Creator of
Recent community posts
Good point! I like that the suggestion of an eye and a pair of them was enough to suggest companionship / seed the creation of a player-made goal to bring them together. I could make a small level design tweak to make it harder to leave one of the blocks behind - think I should do that? Or is it more interesting if there's a "bad" ending vs a "good" ending to strive for?
Yes, you're right. I'm not sure how I ended up with an old version. I replaced the files while the editor was open so maybe Unity was running off an in-memory cache rather than the files on disc? Very strange. After replacing with template version 2.2 and verifying the version was correct before launching the editor, it's working much better now. Thank you!
That intention definitely shines through, and instantly sets this apart. Particularly the choice to let you exit the level from any checkpoint - great quality of life feature, and way better than tucking it in a menu option.
It did surprise me a bit that the hold down to enter/exit isn't debounced - so if you keep holding, you keep flip-flopping between the two destinations. Not sure if that's specifically to support some mechanics you have in mind, like trying to catch that critter that only spawns when you enter the level?
You should just be able to unzip the game and run the executable. You'll get a configuration screen where you can change the graphics quality and input settings - just press "Play!" to start. After that you'll see two dominoes drop onto a table. Use the arrow keys or WASD to control one of them, or the left stick of your gamepad. More players can join using more gamepads. A full control map is included in the zip file, and is also shown in-game if you press Escape.
I have no objections. :)
If you like, I have an experimental version I'm working on with better match-tracking features - it might help improve the game for video spectating. Private message me on Twitter and I can set you up with a link. (It's not quite ready for a full release yet)
Thanks! And sorry for the trouble there - I'd assumed Unity's built-in control mapping would be enough, but I didn't realize it was missing an option for inverting an axis. I'm working on a fresh build for an upcoming game party, so I'll build in more robust options UI for that version. In the meantime, I can think of a hacky fix: if we can work out what joystick name the controller reports, I can detect that case and invert its input in code. ;) Do you have the Unity editor installed? If so, I can give you a quick little script to get this info. There may also be third-party programs you can run to remap the gamepad - I use one to get DS4s to read like Xbox 360 gamepads in Unity.
Yes, it is indeed built on Unity. I used very nearly the default soft shadow settings - the only changes I made were to decrease the shadow strength to 0.72 so they're a bit more transparent and increase the intensity of the light to 3.2 (my normal mapped materials were rendering darker than I wanted, and in a jam's time constraints it was faster to blow out the light than troubleshoot what was causing this) ;)
It might be because I have a small confined scene with a very shallow depth range, so the shadow map's resolution isn't stretched thin across a huge volume. I also have relatively few curved or thin pointy shapes to reveal jaggies from aliasing, and the camera rarely gets super close to a surface without the depth of field blurring away artifacts that might otherwise be visible.
If you're having trouble in your Unity project, you can often get good advice over at gamedev.stackexchange.com - just be sure to ask a clear and specific question, including a description of what you've tried, examples of the results, and a clear indication of what bits you want to change/improve.
Interesting suggestion! I hadn't thought about Chromebook as a platform. Information about distributing Unity games for Chromebook seems a bit sparse, and what I'm finding is discouraging - do you have any tips on where I can find more information?
Updated with dynamic controls assignment, which should let you play with any combination of (up to 3) keyboard and gamepad players (up to a total of 6). Whatever input you use first automatically maps to player 1, the next to player 2, the next to player 3 (spawned on demand), and so on.
Please let me know how this works for you. :)
Also, I'm digging "Capture the Marble" - I've been itching to try getting one of those swirly glass marbles in. Initially I was thinking of it as a hazard, but now I'm considering "Marble Soccer" or other uses... Stay tuned for further experiments over the next month!
Good idea, I'll try to incorporate more sophisticated controls options in the next build.
There will be some imbalance between the arrow keys and gamepad players (the full 360° angle control of an analog stick is a big benefit), but you can resolve that part in meatspace by rotating controllers if you wanted to play tournament-style. ;)