It looks like you're new here. If you want to get involved, click one of these buttons!
I have recently tried to get into programming and am following brackeys tutorial from 2017, all was going well until I got to the second episode all about player movement. I typed the 'public Ridgidbody rb;' line of code and it didn't work, saying: "Assets\playermovment.cs(5,12): error CS0246: The type or namespace name 'Ridgidbody' could not be found (are you missing a using directive or an assembly reference?)" I was wondering if anyone had any similar problems and how they fixed it? Thanks!
Answers
It's "rigid" not "ridgit" ;)
you can write
private Ridgidbody rb;
void start( )
{
rb=Getcomponent<Ridgidbody>();
}