Quick Links: Download Gideros Studio | Gideros Documentation | Gideros Development Center | Gideros community chat | DONATE
Uploading finished. — Gideros Forum

Uploading finished.

JackoJacko Member
edited March 2015 in General questions
Hi, is there any possibility to check how long my program is loading?

Comments

  • ar2rsawseenar2rsawseen Maintainer
    Define loading, like from player start till displaying first scene?
  • ar2rsawseenar2rsawseen Maintainer
    you would need to create init.lua as it will be the first file to be executed in Gideros and first line in it should be
    startTime = os.timer()
    Then inside your first scene put this code:
    endTime = os.timer()
    print("Loading time: "..(endTime-startTime))
    ;)
  • JackoJacko Member
    Thank you:)
Sign In or Register to comment.