Construct 3 r393

You're viewing a single comment in a conversation. View all the comments
  • 2 Comments

  • Order by
  • What does "being able to reset all static local variables" mean? Aren't local variables always reset when they go in/out of scope? The word static also confuses me since I've never seen that used in the context of C3.

      • [-] [+]
      • 2
      • Ashley's avatar
      • Ashley
      • Construct Team Founder
      • 2 points
      • (0 children)

      The manual covers static variables: they don't reset, and act more like a global variable with a limited scope. The term "static" comes from the keyword used in C++ which does the same thing for local variables there.