Rocket League

Rocket League Dev Tracker




21 Sep


12 Sep

Post

Hey all,

 

Please use this thread to look for teammates for the Rocket League Renegade Cup, the latest event announced by Psyonix.

 

The Renegade Cup will feature a series of four successive monthly tournaments from October to January that will be created by RL community organizers and culminate with one final, three-day online event, hosted by Psyonix, known as the Renegade Cup Finals.

 

For more information, please check our blog announcement here.

 

To look for teammates, please use the following for...

Read more External link →

31 Aug

Comment

Originally posted by [deleted]

[deleted]

Oh but it is...


02 Aug

Comment

We now send the rotation as a quaternion using 18 bits per component instead of 16. Implementation learned from https://gafferongames.com/post/snapshot_compression/ "Optimizing Orientation" Here's snippets of the code for deserial...

Read more

30 Jul

Comment
    Dirkened on Steam Forums - Thread - Direct
Patch Notes v1.49 NEW CONTENT Crates and Keys
  • ‘Zephyr’ Crate has been added

CHANGES AND UPDATES Throwback Stadium
  • 'Throwback Stadium' is now an option in Exhibition Matches, Local Matches, Private Matches and Tournaments
Performance Graphs (Steam)
  • Players on Steam can now enable six different Performance Graphs
    • Performance Summary
    • Performance Graph (short)
    • Performance Graph (long)
    • Network Summary
    • Network Graph (short)
    • Network Graph (long)
  • Performance: Displays FPS, Frame and GPU data
  • Network: Displays Packet, Latency and other relevant connection data
  • You can enable/disable graph display in the Options>Interface menu, or by pressing F10 on your keyboard

BUG FIXES General
  • [Xbo...
Read more

28 Jul


22 Jul

Comment

That brain is so chill. 🕶⛱


27 Jun

Comment

Originally posted by Mighty_Mac

Dang I was hoping for the cross platform parties

Soon!

Comment
    Dirkened on Steam Forums - Thread - Direct
Patch Notes v1.48 CHANGES AND UPDATES General
  • Game version has jumped from v1.45 to v1.48 due to two PS4/PS4 Pro hotfixes
  • Updated the appearance of the ‘Twinzer’ Car Body when affected by Paintable attribute
  • Added a confirmation dialog to the “Report Server” button
Network Settings
  • Network settings (Client Send Rate, Server Send Rate, Bandwidth Limit) will each be reset to High for all players on all platforms. Changing these settings will now have an effect on your network connection
BUG FIXES General
  • Stats on all ‘Merc’ Car Bodies should now be restored
  • Fixed Spectator issue causing camera updates to not replicate fast enough. This was causing desynchronization between spectators and the players they were viewing.
  • Fixed a bug in how Ping was being calculated and displayed
    • Your displ...
Read more

21 Jun


08 Jun

Comment

Originally posted by dirkened

Developers hate him!

You won't believe how he does it! (Step 7 will blow your mind!!!)


06 Jun

Comment

Originally posted by mordechrist

Thanks for all you do man! Keep making an amazing game :D

Thanks for playing! <3

Comment

Looks amazing! Nice one, OP :D


04 Jun

Comment

Originally posted by MelodicFacade

Quick thank you note! You guys are awesome, even though I don't play your game as often as I used to, what you guys created is true art and I have so many fond memories! It makes me happy seeing your comment here and being involved with the community still!

<3


03 Jun

Comment

Ooh nice concept, nature is neat!


29 May

Comment

Originally posted by Halfway_Dead

Thanks for the comment! I'll try to sticky it in the video underneath my video to make sure people can see.

Input buffer size is not the same for everyone. It tries to grow or shrink depending on network jitter (variance in latency)

If that is true, then does that mean the server accepts inputs from some players later than others? That doesn't sound too fair to me. Or does your statement mean, that the client simulates even further ahead to create a bigger buffer for the inputs?

The issue you are seeing is not the actual ping going up with increased FPS.

I hope I didn't make it sound like I thought the real ping is higher just because it shows higher on the scoreboard.
The reason I made my assumption with the calculation was that I pinged the IPs of the servers manually and they gave me exactly the ping that I got at 60FPS but I guess that could've just randomly worked out and it's just inac...

Read more

If that is true, then does that mean the server accepts inputs from some players later than others? That doesn't sound too fair to me. Or does your statement mean, that the client simulates even further ahead to create a bigger buffer for the inputs?

What it means is, if a player is averaging packets arriving anywhere between 100 and 125 ms of latency (25 ms of jitter), they have (ideally) 25ms of input buffer to ensure they always have enough inputs in the buffer to last until they next packet comes in. This keeps the input buffer as small as possible so we aren't adding too much extra delay to processing their inputs.

If another player has very high jitter (packets taking anywhere between 100 and 150 ms), they need a 50ms input buffer to handle the 50ms of possible lull between incoming packets.


25 May

Comment

Great video as always! I wanted to clarify some things mentioned in the video:

  • Input buffer size is not the same for everyone. It tries to grow or shrink depending on network jitter (variance in latency).
  • We allow up to 10 frames of input history to be sent on every outgoing packet. We don't send inputs that the server has already confirmed. You were probably only seeing 4 inputs because you had a low ping and the server had already confirmed the older inputs. If you increase your ping, you will see the game sending more inputs per packet.
  • The networking options currently don't work because we chose to disable them via the backend while we narrow down server issues stemming from the last update. The networking options will be re-enabled shortly after the next update goes out.
  • A fix was just checked in to our dev build a few days ago that coincidentally fixes the scoreboard ping issue too. The issue you are seeing is not the actual ping going...
Read more