Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4025076
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T10:48:05+00:00 2026-05-20T10:48:05+00:00

I am making a game for the Windows Phone using XNA framework C#. The

  • 0

I am making a game for the Windows Phone using XNA framework C#.

The main player in the game has to shoot. I have a bullet class, but how do you instantiate that bullet everytime the user clicks on the screen?

The bullet class basically draws itself and has a function called “Shoot”, this is used for the bullet to move in the direction of the player.

I am a noob at c# xD

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T10:48:06+00:00Added an answer on May 20, 2026 at 10:48 am

    A common method is in your game loop add in a check for the screen being touched and take action if it is.

    For XNA, on the Game class (which I think is called Game1 by default) create a field to store whether the screen was touched on the previous Loop:

    bool screenBeingTouched = false;
    

    This is to prevent multiple bullets being created on a single touch (unless that is what you want).

    Then in the Update method of the Game class check to see if the screen is currently being touched and take action:

    TouchCollection newScreenTouches = TouchPanel.GetState(); 
    
    if (!screenBeingTouched && newScreenTouches.Count > 0)  
    {  
        screenBeingTouched = true;  
    
        Bullet myBullet = new Bullet();
        myBullet.DoSomething(); // Such as render on the screen and move around.
    
    }  
    else if (newScreenTouches.Count == 0)  
    {  
        screenBeingTouched = false;  
    } 
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm making a simple 2 player game in XNA and started looking into saving
If I'm making a simple grid based game, for example, I might have a
I am making a game for windows, mac and GNU, I can built it
I'm making a game which you can see here, if you are on Windows
I'm making a game in Python, and it makes sense to have one of
I'm making a game in html5 canvas. I'm using jquery so I can get
I am making a game in JAVA where I want to come up with
With regards to making a game server, it seems Erlang always comes up as
I'd like to rank a collection of landscape images by making a game whereby
I am making a simple game in order to learn a new language. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.