user12132
0
Q:

how to call something once in update

bool isDone = false;

void Update() {
    if (!isDone) {
        // put your code that runs once here
        isDone = true;
    }
}
2

New to Communities?

Join the community