IndexOutOfRangeException: tanks index is invalid , i was trying to add new Tank in Tanks!!! game but get this error , iam new in coding
//Returns whether a tank for a given index is unlocked. public bool IsTankUnlocked(int index) { if (m_Data.unlockedTanks.Length > index && index >= 0) { return m_Data.unlockedTanks[index]; }
return false;
}
//Allows a tank index's unlocked status to be set. Defaults to unlocking the tank.
public void SetTankUnlocked(int index, bool setUnlocked = true)
{
if (m_Data.unlockedTanks.Length > index && index >= 0)
{
m_Data.unlockedTanks[index] = setUnlocked;
}
else
{
throw new IndexOutOfRangeException("Tank index invalid");
}
SaveData();
}
//Returns whether a decoration for a given index is unlocked.
public bool IsDecorationUnlocked(int index)
{
if (m_Data.decorations.Length > index && index >= 0)
{
return m_Data.decorations[index].unlocked;
}
return false;
}
//Allows a decoration index's unlocked status to be set. Defaults to unlocking the decoration.
public void SetDecorationUnlocked(int index, bool setUnlocked = true)
{
if (m_Data.decorations.Length > index && index >= 0)
{
m_Data.decorations[index].unlocked = setUnlocked;
}
else
{
throw new IndexOutOfRangeException("Tank index invalid");
}
SaveData();
}
Answer by fnaveedshah · Jun 13, 2017 at 07:48 PM
no body reply here , unity community is very small i guess , or nobody cares
The problem is not that the community is small. It's that the community is big and consists about 95% of beginners who don't know how UA works, and 5% of people capable of answering questions here.
For example, the amount of comments posted as answers to questions nowadays is astounding... cough
Not to mention people flooding the place by posting the same question multiple times cough cough
Just a few years ago a question like this wouldn't even have been allowed here. From the moderation quidelines:
Reasons for a question to get rejected
Debugging questions: ... discussion around program$$anonymous$$g basics, user has followed a tutorial but is stuck or user is asking others to debug their code.
Your answer
Follow this Question
Related Questions
How to make a cleaning effect similar to the one in dumb ways to die? 0 Answers
Turning on an option with GPS 0 Answers
Unity no funciona en Windows 7 0 Answers
Input Dispatching issue ANR reports in Unity 3D Game on Android platform 0 Answers
Need help to move my character between different levels 0 Answers