Announcement

Collapse
No announcement yet.

Space Shooter Example

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Space Shooter Example

    Simple 2d space shooter example. Contribute to Elem8100/2D-SpaceShooter development by creating an account on GitHub.


    Click image for larger version

Name:	kWuCbst.jpg
Views:	411
Size:	202.7 KB
ID:	229




  • #2
    Damn... great job! Looks great.

    Comment


    • #3
      Nice!

      Amazing demo, remember me the times of PowerDraw and Asphyre Extreme 3.1

      Thanks

      Comment


      • #4
        Originally posted by DraculaLin View Post
        Can you share a compiled demo?

        Thanks in advance!

        Comment


        • #5
          I downloaded the pre-compiled binary from GitHub but I was unable to run it!

          Click image for larger version

Name:	Error.jpg
Views:	391
Size:	13.7 KB
ID:	234​

          Comment


          • #6
            Originally posted by linkbr View Post

            Can you share a compiled demo?

            Thanks in advance!
            You are not familiar with Github ?
            Simple 2d space shooter example. Contribute to Elem8100/2D-SpaceShooter development by creating an account on GitHub.
            Last edited by DraculaLin; 08-07-2020, 12:20 AM.

            Comment


            • linkbr
              linkbr commented
              Editing a comment
              I got this error:

              0.15 is not a valid floating point value for Single type.

              and a Window without the render

              Thanks

            • linkbr
              linkbr commented
              Editing a comment
              I got a error message when tried to open it.

          • #7
            Video showing the error on Windows 10 x64
            Attached Files

            Comment


            • #8
              Worked fine for me. Really can't help.
              You have to re-compile with Delphi 10.3 or 10.4

              Comment


              • #9
                Hello,
                2 Years too late but the solutions is pretty simple.

                Line 210 : RandNumber: array[0..1] of string = ('-0.15', '0.15');

                Suppose because of Windows Format Settings you need to change this to RandNumber: array[0..1] of string = ('-0,15', '0,15');
                and it works.

                Regards
                Robert

                Comment


                • #10
                  Originally posted by robert83 View Post
                  Hello,
                  2 Years too late but the solutions is pretty simple.

                  Line 210 : RandNumber: array[0..1] of string = ('-0.15', '0.15');

                  Suppose because of Windows Format Settings you need to change this to RandNumber: array[0..1] of string = ('-0,15', '0,15');
                  and it works.

                  Regards
                  Robert
                  Thank you!

                  Comment

                  Working...
                  X