Rufen Sie einmal auf Update Unity auf
bool isDone = false;
void Update() {
if (!isDone) {
// put your code that runs once here
isDone = true;
}
}
Comfortable Capybara