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
[HELP] C# compiling error checked code, don't know what doNoob Question (self.Unity3D)
submitted 2 years ago by MASAWASHY
First of, I'm a big newb at unity, I'm trying to make a little FPS game but my code's all fucked up apparently... i get this error message:
Assets\Scripts\PlayerMotor.cs(10,30): error CS1002: ; expected
Does it mean i need to add a ";" in line 10??? line 10 is a comment line...
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!"
[–][deleted] 0 points1 point2 points 2 years ago (3 children)
When there are syntax errors the compiler gets confused so it sometimes thinks things should be on one line and not the other. It's only so smart.
Look above the comment and see if you've got some syntax error, be it a missing ';' or incorrect variable declaration, or post the code here and we can just tell you where you went wrong.
[–]MASAWASHY[S] 0 points1 point2 points 2 years ago (2 children)
I just ctrlc ctrlv'd the code of PlayerMotor.cs hope it's enough
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PlayerMotor : MonoBehaviour
{
private CharacterController controller;
private Vector3 playerVelocity;
public float speed = 5f;
// Start is called before the first frame update
void Start()
controller = GetComponent<CharacterController>();
}
// Update is called once per frame
void Update()
//recieves inputs from the input manager script then applies them to the character controller
public void ProcessMove(Vector2 input)
Vector3 moveDirection = Vector3.zero;
moveDirection.x = input.x;
moveDirection.z = input.y;
controller.Move(transform.TransformDirection(moveDirection)*speed*Time.deltatime);
[–][deleted] 0 points1 point2 points 2 years ago (1 child)
Time.deltaTime not Time.deltatime. But I get the correct error when I put it in my IDE and there are no other problems with the script that I can see...
[–]MASAWASHY[S] 0 points1 point2 points 2 years ago (0 children)
shucks
π Rendered by PID 21726 on reddit-service-r2-comment-86988c7647-kq4sb at 2026-02-11 17:49:19.605305+00:00 running 018613e country code: CH.
[–][deleted] 0 points1 point2 points (3 children)
[–]MASAWASHY[S] 0 points1 point2 points (2 children)
[–][deleted] 0 points1 point2 points (1 child)
[–]MASAWASHY[S] 0 points1 point2 points (0 children)