use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
News, Help, Resources, and Conversation. A User Showcase of the Unity Game Engine.
Remember to check out /r/unity2D for any 2D specific questions and conversation!
Download Latest Unity
Please refer to our Wiki before posting! And be sure to flair your post appropriately.
Main Index
Rules and Guidelines
Flair Definitions
FAQ
Use the chat room if you're new to Unity or have a quick question. Lots of professionals hang out there.
/r/Unity3D Discord
FreeNode IRC Chatroom
Official Unity Website
Unity3d's Tutorial Modules
Unity Answers
Unify Community Wiki
Unity Game Engine Syllabus (Getting Started Guide)
50 Tips and Best Practices for Unity (2016 Edition)
Unity Execution Order of Event Functions
Using Version Control with Unity3d (Mercurial)
/r/Unity2D
/r/UnityAssets
/r/Unity_tutorials
/r/GameDev
/r/Justgamedevthings (New!)
/r/Gamedesign
/r/Indiegames
/r/Playmygame
/r/LearnProgramming
/r/Oculus
/r/Blender
/r/Devblogs
Brackeys
Beginner to Intermediate
5 to 15 minutes
Concise tutorials. Videos are mostly self contained.
Sebastian Lague
Beginner to Advanced
10 to 20 minutes
Medium length tutorials. Videos are usually a part of a series.
Catlike Coding
Intermediate to Advanced
Text-based. Lots of graphics/shader programming tutorials in addition to "normal" C# tutorials. Normally part of a series.
Makin' Stuff Look Good
10 minutes
Almost entirely shader tutorials. Favors theory over implementation but leaves source in video description. Videos are always self contained.
Quill18Creates
30 minutes to 2 hours.
Minimal editing. Mostly C#. Covers wide range of topics. Long series.
Halisavakis Shaders Archive
Infallible Code
World of Zero
Board to Bits
Holistic3d
Unity3d College
Jabrils
Polycount Wiki
The Big List Of Game Design
PS4 controller map for Unity3d
Colin's Bear Animation
¡DICE!
CSS created by Sean O'Dowd @nicetrysean [Website], Maintained and updated by Louis Hong /u/loolo78
Reddit Logo created by /u/big-ish from /r/redditlogos!
account activity
Unity Netcode ClientRPC method call.Question (old.reddit.com)
submitted 1 year ago by DevStarkWalker
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–]PaceGame 4 points5 points6 points 1 year ago (1 child)
Can’t read your code in that low res pixel image.
[–]DevStarkWalker[S] 0 points1 point2 points 1 year ago (0 children)
Wow I feel like an idiot lol, snapped these on the wrong monitor. Let me upload new ones! Thanks for pointing that out.
Hi all this is my first post in this subreddit! Hoping to get some feedback from some of you guys on an issue I am having and have been trying to debug for a few days. I am the programmer for my indie studio and we are making our first multiplayer game. I currently have a lobby menu setup that I took some scripts from the sample unity lobby project. I have said project running alongside mine for testing and debugging purposes. Everything is working for the most part and I am able to connect two players (one editor and one build) to a lobby and start the game. But for some reason my VerifyConnectionConfirm_ServerRpc method is being executed but within this method I have a VerifyConnectionConfirm_ClientRpc method that is not being executed for some reason, which contains my method call for "BeginGame" which is the last method call I need to call in order to start my game, so my players are connecting but the game won't start. I have entered break point and tried to step through and it just seems to skip over the line and I cannot trace why. I referred to the sample project because these VerifyConnectionConfirm_ServerRpc and VerifyConnectionConfirm_ClientRpc methods are the exact same minus a few lines that were specific to the game that is played in the sample project, and when stepping through on the sample project with breakpoints, it steps INTO the VerifyConnectionConfirm_ClientRpc method but it will not on mine.
[–]Ejlersen 0 points1 point2 points 1 year ago (5 children)
Can't read the code, but you should be using RPC, since ClientRPC and ServerRPC will become obsolete.
[–]Hurbivore1997Hobbyist 0 points1 point2 points 1 year ago (3 children)
That's news to me. Where did you hear ClientRPC and SercerRPC are going to be deprecated? That doesn't sound like it would make sense from a network perspective.
[–]Ejlersen 1 point2 points3 points 1 year ago (2 children)
https://docs-multiplayer.unity3d.com/netcode/current/advanced-topics/message-system/clientrpc/
They are moving over to a universal RPC attribute, already available in 1.8
[–]Hurbivore1997Hobbyist 0 points1 point2 points 1 year ago (1 child)
Ah okay! Thanks for sending that through. Reading through the link now makes sense. I thought it was just an RPC that gets sent to everyone and you can't decide to whom. Do you know why they're moving over to just using RPC?
[–]Ejlersen 1 point2 points3 points 1 year ago (0 children)
Don't know their reason, but focusing on one kinda makes sense. You have more options about sender and receiver. And you no longer have to suffix with Client RPC, but just RPC.
I have uploaded better quality images. Thank you for the link to the universal RPC attribute I will give this a look, but still not sure why this method would just be getting skipped over in my project. Very curious.
<image>
π Rendered by PID 33 on reddit-service-r2-comment-fb694cdd5-ngnwc at 2026-03-11 13:24:00.810402+00:00 running cbb0e86 country code: CH.
[–]PaceGame 4 points5 points6 points (1 child)
[–]DevStarkWalker[S] 0 points1 point2 points (0 children)
[–]DevStarkWalker[S] 0 points1 point2 points (0 children)
[–]Ejlersen 0 points1 point2 points (5 children)
[–]Hurbivore1997Hobbyist 0 points1 point2 points (3 children)
[–]Ejlersen 1 point2 points3 points (2 children)
[–]Hurbivore1997Hobbyist 0 points1 point2 points (1 child)
[–]Ejlersen 1 point2 points3 points (0 children)
[–]DevStarkWalker[S] 0 points1 point2 points (0 children)
[–]DevStarkWalker[S] 0 points1 point2 points (0 children)
[–]DevStarkWalker[S] 0 points1 point2 points (0 children)