Setup executed twice when orientation(LANDSCAPE) is part of the setup

edited January 2018 in Android Mode

A little question: I just notice that the setup is executed twice when orientation(LANDSCAPE) is part of the setup. Is it a normal behaviour?

Ex: void setup(){ println("toto"); size(500, 650); }

=>toto writen in the console

void setup(){ println("toto"); orientation(LANDSCAPE); size(500, 650); }

=>toto writen in the console =>toto writen in the console

Tagged:

Answers

Sign In or Register to comment.