init method
void
init()
Implementation
void init() {
for(Component c in components) {
c.init();
}
for(Entity e in children) {
e.init();
}
transform.forceUpdate = true;
}
void init() {
for(Component c in components) {
c.init();
}
for(Entity e in children) {
e.init();
}
transform.forceUpdate = true;
}