Navigation

    Fuze Arena Logo
    • Register
    • Login
    • Search
    • Categories
    • Recent
    • Popular
    • Users
    • Groups
    • Help
    • Discord

    Bug List

    Bug Reporting (FUZE 4 Nintendo Switch)
    3
    7
    333
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • jacobmph
      jacobmph last edited by

      I'd happily add these to a bugtracker, but in the meantime I'll add them here as I find them. Apologies for duplicates with other posts, but it's hard to correlate (as I'm sure you will be finding!)

      • Printing a newline character ("/n") increments the cursor line, but doesn't reset the cursor column back to the LHS.
      • sprite.rotation = x interprets x in radians (in degree mode) while setSpriteRotation() does not.
      • similarly sprite.rotation returns the rotation in radians (in degree mode) while getSpriteRotation() does not.
      ITzTravelInTime 1 Reply Last reply Reply Quote 2
      • ITzTravelInTime
        ITzTravelInTime F @jacobmph last edited by

        @jacobmph Probably for the new line you need to use both the CR and LF characters (see an ascii table for reference)

        1 Reply Last reply Reply Quote 0
        • jacobmph
          jacobmph last edited by

          @ITzTravelInTime It looks like its to do with where you put the newline. The unicode value for CR ("\n") is 10 and LF is 13

          print( "Hello\n")
          print("World\n")
          print("******\n")
          print( "\nHello")
          print("\nWorld")
          print("\n******")
          print( chr(10) )
          print("Hello")
          print( chr(13) )
          print( "World" )
          update()
          sleep(5)
          

          results in (approximately):

          Hello
          World
          ******
          
          Hello
               World
                    ******
                          HelloWorld
          
          ITzTravelInTime 1 Reply Last reply Reply Quote 1
          • M
            MikeDX last edited by

            This is fixed in the patch that's currently in for approval 🙂

            1 Reply Last reply Reply Quote 3
            • jacobmph
              jacobmph last edited by

              Great. Enjoying playing with it very much!

              1 Reply Last reply Reply Quote 0
              • ITzTravelInTime
                ITzTravelInTime F @jacobmph last edited by

                @jacobmph In some systems both CR and LF characters are needed for a new line from start, so that's why i mentioned it, i just don't know th standard useb by fuze, but good to know that it has been fixed.

                jacobmph 1 Reply Last reply Reply Quote 1
                • jacobmph
                  jacobmph @ITzTravelInTime last edited by

                  @ITzTravelInTime Yes, they did, didn’t they. Fuze feels like a (good) history lesson :-)

                  1 Reply Last reply Reply Quote 1
                  • First post
                    Last post