Forum: C# Mar 5th, 2009 |
| Replies: 5 Views: 550 Ok that explains quite a bit for me. Thank you Liz. I will get to working on the code right.
I believe this bit of code here is the heart of what I want to do.
for(int i=0; i< nFrames; i++)... |
Forum: C# Mar 5th, 2009 |
| Replies: 5 Views: 550 Yeah I saved it in 24-bit bmp format. All a straight line of 8 individual animations. So what do I do? I know I'm supposed to make a private int for the frame variable.
so should I have something... |
Forum: C# Mar 4th, 2009 |
| Replies: 5 Views: 550 What I want to do is take my rpg man sprite and understand how I can access each of his eight animations with methods. I've looked at code that does something like this but I'm not quite getting it.... |
Forum: C# Mar 4th, 2009 |
| Replies: 2 Views: 509 Thanks for the advice but I already tried that. I did manage to solve the problem by making use of the MakeTransparent(); method. YAY!!!
It works something like this:
if (HeroImage == null)
... |
Forum: C# Mar 3rd, 2009 |
| Replies: 2 Views: 509 I have a hero sprite which I have implemented in in my game. He walks around in a grass field. Unfortunately, he is surrounded by a white border that is also in the btmap(or JPG in this case). Any... |
Forum: C# Aug 29th, 2008 |
| Replies: 5 Views: 983 That is what I am trying to do. My assignment is to make the Calcpoints method abstract and I want to know how I can access it from my child class Ultimate Warrior, Dragoon and KarateWizard. By the I... |
Forum: C# Aug 28th, 2008 |
| Replies: 5 Views: 983 I am making a character generator for school. What I have to do is make my CalcPoints method abstract. Unfortunately I keep getting These three error for each of my derived character classes and I... |
Forum: C# Aug 28th, 2008 |
| Replies: 3 Views: 391 Well We aren't going to write the code for you! What have you got so far? |
Forum: C# Aug 20th, 2008 |
| Replies: 1 Views: 461 Never mind, I fixed it. This is how I did it.
namespace ConsoleApplication2
{
class Program
{
static void Main(string[] args)
{ |
Forum: C# Aug 20th, 2008 |
| Replies: 1 Views: 461 I was hoping you guys could help me out as you have in the past. I am kind of new to C# coming from C++.
I get two of each of these errors.
C:\Users\Hector Rosario\Documents\Visual Studio... |
Forum: C# Aug 11th, 2008 |
| Replies: 4 Views: 650 You are going to have to do this the hard and just learn by buying books on C# or taking a class on it at your local college. Also youtube offers some interesting tutorials on C# |