- Home /
Problème de protection du niveau ?
Bonjour, J'ai un problème quand je veux lancer mon jeu ça me marque : *Assets/FlammeScript.cs(16,97): error CS0122: `NewBehaviourScript.remainingfuel' is inaccessible due to its protection level
S'il vous plaît aider moi Merci
Answer by unil · Oct 14, 2017 at 08:25 PM
You need to make the variable/method public if you want to access it from other classes:
public Type remainingfuel;
public ReturnType MyMethod() { //code }
Answer by vincentamato · Oct 15, 2017 at 12:34 AM
Oui, il faut que vous changiez votre variable. Essayez de la changer à public. Excuse-moi, je ne parle pas bien le français, j'apprends encore!
Your answer
Follow this Question
Related Questions
Can't access variable due to its protection level? 2 Answers
Move to next level on collide 4 Answers
load level problem when building to ipad 2 Answers
Procedural level generation for a 3D side-scroller 2 Answers