branchwiseguys/maincancel

2,811 Commits over 1,918 Days - 0.06cph!

6 Years Ago
Fix error on quit in editor
6 Years Ago
A marker can now be placed in the building editor that determines where the gang safe goes. If there is no marker, the safe will try to find some space on the first floor as before.
6 Years Ago
Revert building manager change as there were bugs, since loading building definitions needed to wait a frame to work properly. Started a branch to maybe look into it.
6 Years Ago
Simplified, more open gang buildings. Had to rebuild building IDs, hence the extra "changes"
6 Years Ago
Update UI immediately on pickup/drop
6 Years Ago
Can't select other items anymore while holding a carryable
6 Years Ago
New testmap_smallest. Loads super fast, still has gang buildings but no jail.
6 Years Ago
Remove an old time printout
6 Years Ago
Building manager now only loads buildings that the map actually uses. Improves loading times around a minimum of 25% (testmap_small, which needs most building types anyway), and removes the need for the loadBuildingDefinitions Tools flag (which was used to make maps with no buildings load faster).
6 Years Ago
Had to change label colors to Color32
6 Years Ago
Couple of bug fixes from testing
6 Years Ago
fastCountdowns mode skips the welcome screen as well
6 Years Ago
Drop carried item on disconnect. Fixes glitching on reconnect.
6 Years Ago
Added "fast countdowns" option in the WiseGuysTools window, to speed up testing
6 Years Ago
20 was a bit much. Decrease again to 15. +bugfix
6 Years Ago
Increase label distance from 12 to 20
6 Years Ago
Oops remove debug
6 Years Ago
Fixed gang emblems not showing up as well
6 Years Ago
A bunch of cleanup/refactoring, and player label colour tints now work correctly
6 Years Ago
6 Years Ago
Bugfix for NRE on helditems with no item + testmap_smaller edit
6 Years Ago
Had an issue where if you reconnected to a game, you weren't holding anything. Turned out this is what happens on reconnect: 1. OnEntitySpawnMessage. HeldItem entity comes through on its own 2. It's created 3. Deserialize called. 4. SetParent called, but parent is null since it's coming on its own. 5. OnClientInitialize called 6. OnEntitySpawnMessage. HeldItem entity comes through as a child of the user 7. Warning shown that it already exists 8. Deserialize called. 9. SetParent called. *Parent is now set.* We can now call SetItemHolder any time 10. OnClientInitialize _skipped automatically_ in NetworkEntity as it's already been called To fix I added moved the backup SetItemHolder call in Deserialize to OnPostDeserialize, which is called after SetParent.
6 Years Ago
Fixed errors being thrown when camera tried to detatch on quit
6 Years Ago
Carryable fixup
6 Years Ago
Changing carryable picking up to allow for the carrier to take action when pickup occurs. Might change this around a bit more.
6 Years Ago
Make events, events
6 Years Ago
Show different message on carryables if the interactor is already holding something and can't pick up
6 Years Ago
Fix for reload bug
6 Years Ago
Fixed build error
6 Years Ago
chat enabled
6 Years Ago
Player labels color changes to match team, added arrow over pickups
6 Years Ago
Minor spelling edit
6 Years Ago
Now showing existing player (team) selection counts on the character select screen. Only issue is it's not updated after the screen initially loads. Counts could change if you hang around on character select for a while and it won't be updated. Could poll the server once every x seconds for updates.
6 Years Ago
Proper auto-select if there's only one character option
6 Years Ago
Updated waiting info text on character select and countdown screens
6 Years Ago
Countdown UI works properly with the new system, shows waiting reason
6 Years Ago
Character select now goes straight to countdown/waiting screen when ready
6 Years Ago
Changed character selection. Must select a character to continue. No ready button.
6 Years Ago
Show gang score results on the summary screen at the end of HH game mode
6 Years Ago
tweaks
6 Years Ago
.
6 Years Ago
Carryables get dropped a bit nicer. Starting items etc.
6 Years Ago
Added short description for game modes, fixed the description being messed up on the countdown screen
6 Years Ago
Round end summary screen now actually does something, supports custom text
6 Years Ago
6 Years Ago
Let HH start with 1 player. Easier for testing
6 Years Ago
Now supporting draw results (more than one winner)
6 Years Ago
Ready button edit
6 Years Ago
Minor UI edit. Ready button is a bit bigger ¯\_(ツ)_/¯
6 Years Ago
IsRunning flag message for clients