Welcome, Guest. Please login or register. Did you miss your activation email?

Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Geoffry_the_Deprogrammer

Pages: [1]
1
I am attempting to pass a integer variable into another class, and get it to increase on a condition, the code itself doesn't seem to have any problem, until I run the program, at which point I am met with the error "Object reference not set to an instance of an object" does anyone know what I might be doing wrong...?

2
General / Trying to Figure out how to show a new Window
« on: November 02, 2014, 11:04:13 pm »
I am using SFML in C# and am having difficulties figuring out how to Display a second window in my program, there are no errors obvious with the code, as it runs fine, however it does not display the second window when commanded... I have no idea why, and I cant see any obvious issues having tried replicating the code for the first window...

If anyone has any idea what I might be doing wrong, or can tell me what I should try doing that would be much appreciated...  :)

3
General / Help with understanding the tutorials
« on: October 26, 2014, 12:47:18 am »
Im attemting to use SFML in C# (because windows 8 cant run XNA) however because of this the tutorials are difficult to understand as i have no experience in C++, most of all, all the tutorials refer to "sf::" what does this actually mean, and is there a similar method i could use instead...?

4
I apologise if this is difficult to make sense of, but i am having immense difficulty figuring out how to use spritesheets, as I am currently trying to take a portion of the spritesheet and make that the player sprite, however, i cannot figure out how to set a portion of an image as the sprite... thanks for any and all help...

5
Graphics / How do I use Spite Sheets to animate something in C# SFML
« on: September 05, 2014, 04:47:34 am »
I've created a sprite sheet, but I haven't got a clue as to how i'm supposed to implement it into my game, and all the Tutorials are for C++, thanks for any and all help...

6
General / why am I getting an error on Void...?
« on: August 27, 2014, 08:36:19 am »
it says "expected class, delegate, enum, interface, or struct" It was working before, I could have accidentally deleted something, but its Unlikely... I have no idea what this means... here is my code...


        public void Draw(RenderWindow window, float delta)
        {
            window.Draw(background);
            window.Draw(player);
            window.Draw(enemy);
            window.Draw(dead);

        }
    }

7
General / im completely lost on Camera movement in SFML C#
« on: August 22, 2014, 04:39:47 am »
I cant seem to figure out how to make the camera move, ive read tutorials etc. and im lost... if i simply wanted to move the camera up, upon the press of the "W" key, what code do i need, and which class should i put it in...?

Pages: [1]