gpt4 book ai didi

c#-4.0 - 内容.Load ("Round");找不到 Round.png 文件

转载 作者:行者123 更新时间:2023-12-02 21:33:36 25 4
gpt4 key购买 nike

Possible Duplicate:
XNA - File not found problem

这里我尝试在 Windows Phone 7 应用程序项目中加载 Round.png 文件。我不知道如何在运行时加载此图像。如果这是一个愚蠢的问题,我真的很抱歉,因为我是 Windows 应用程序开发的新手。请帮忙...提前致谢!!!

     /// <summary>
/// This is the main type for your game
/// </summary>
public class Game1 : Microsoft.Xna.Framework.Game
{
GraphicsDeviceManager graphics;
SpriteBatch spriteBatch;
Texture2D texRound;
Rectangle HitRegion;
bool isSelected = false;

TouchCollection touches = TouchPanel.GetState();

//start position of round, in the center of screen
int positionX = 400;
int positionY = 240;

//random number Axis X and Y
Random randomX;
Random randomY;

//the range for random number of start and end of X, Y
int startX, endX;
int startY, endY;

//total time
float milliseconds = 0f;

//score count
int count = 0;

//game font
SpriteFont font;

public Game1()
{
graphics = new GraphicsDeviceManager(this);
Content.RootDirectory = "Content";

// Frame rate is 30 fps by default for Windows Phone.
TargetElapsedTime = TimeSpan.FromTicks(333333);

// Extend battery life under lock.
InactiveSleepTime = TimeSpan.FromSeconds(1);
}

/// <summary>
/// Allows the game to perform any initialization it needs to before starting to run.
/// This is where it can query for any required services and load any non-graphic
/// related content. Calling base.Initialize will enumerate through any components
/// and initialize them as well.
/// </summary>

protected override void Initialize()
{
// TODO: Add your initialization logic here

base.Initialize();
}

/// <summary>
/// LoadContent will be called once per game and is the place to load
/// all of your content.
/// </summary>
protected override void LoadContent()
{
// Create a new SpriteBatch, which can be used to draw textures.

spriteBatch = new SpriteBatch(GraphicsDevice);
texRound = Content.Load<Texture2D>("Round");
randomX = new Random();
randomY = new Random();

// The X axis bound range of touch for ball
startX = texRound.Width;
endX = GraphicsDevice.Viewport.Width - texRound.Width;

// The X axis bound range of touch for ball
startY = texRound.Height;
endY = GraphicsDevice.Viewport.Height - texRound.Height;

// Define the HitRegion of ball in the middle of touchscreen
HitRegion = new Rectangle(positionX - texRound.Width / 2,
positionY - texRound.Height / 2, texRound.Width,
texRound.Height);

// Load the font definition file
font = Content.Load<SpriteFont>("gamefont");

// TODO: use this.Content to load your game content here
}

/// <summary>
/// UnloadContent will be called once per game and is the place to unload
/// all content.
/// </summary>
protected override void UnloadContent()
{
// TODO: Unload any non ContentManager content here
}

/// <summary>
/// Allows the game to run logic such as updating the world,
/// checking for collisions, gathering input, and playing audio.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Update(GameTime gameTime)
{
// Allows the game to exit
if (GamePad.GetState(PlayerIndex.One).Buttons.Back == ButtonState.Pressed)
this.Exit();

// TODO: Add your update logic here

// Accumulate the elapsed milliseconds every frame
milliseconds +=
(float)gameTime.ElapsedGameTime.TotalMilliseconds;
if (milliseconds > 1000)
{
// When the milliseconds greater than 1000 milliseconds,
// randomly locate a new position for the ball
HitRegion.X = randomX.Next(startX, endX + 1);
HitRegion.Y = randomY.Next(startY, endY + 1);
// Reset the milliseconds to zero for new milliseconds
// count
// make the ball not been selected
milliseconds = 0f;
if (isSelected)
isSelected = false;
}
base.Update(gameTime);

Point touchPoint = new Point((int)touches[0].Position.X, (int)touches[0].Position.Y);
if (HitRegion.Contains(touchPoint))
{
isSelected = true;
count++;
}
else
{
isSelected = false;
}
}

/// <summary>
/// This is called when the game should draw itself.
/// </summary>
/// <param name="gameTime">Provides a snapshot of timing values.</param>
protected override void Draw(GameTime gameTime)
{
GraphicsDevice.Clear(Color.Green);

// TODO: Add your drawing code here

spriteBatch.Begin();
if (isSelected)
{
spriteBatch.Draw(texRound, HitRegion, Color.Red);
}
else
{
spriteBatch.Draw(texRound, HitRegion, Color.White);
}
spriteBatch.DrawString(font, "Score:" + count.ToString(),
new Vector2(0f, 0f), Color.White);
spriteBatch.End();

base.Draw(gameTime);
}
}

Error Details

this is the error message

最佳答案

内部异常中的路径看起来正确:\"Content\\Round.xnb\" ,额外的斜杠只是因为它被转义了。这是可执行文件的相对路径,默认情况下它类似于: Visual Studio Projects\MyCoolGame\MyCoolGame\bin\x86\Debug\Content\Round.xnb 。您应该将此路径与 Round.xnb 的真实路径进行比较文件,而不是 png。

  • 如果Round.xnb任何地方都不存在,那么您的 png 文件不是内容项目的一部分,或者内容项目尚未构建
  • 如果文件确实存在,但位于子目录中,则在加载纹理时指定子目录的名称,例如:Content.Load<Texture2D>("myDir\\Round");

由于内部异常不是在寻找“Round.png.xnb”,因此您的名字正确,@Ricket 的答案不会为您提供任何进一步的帮助。

关于c#-4.0 - 内容.Load<Texture2D> ("Round");找不到 Round.png 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12730375/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com