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 - rpgmaker

Pages: [1]
1
General / When will SFML 2.0 be available for .Net?
« on: December 29, 2009, 11:02:00 pm »
Do we need to get the source and compile it ourselves to use it in .net?

Thanks,

2
Window / [Resolved]How to retrieve SFML window Handle?
« on: April 16, 2009, 04:24:54 am »
Can i use the FindWindow/FindWindowEx API to get SFML window handle?

3
Audio / What file formats does Sfml Audio Supports?
« on: March 23, 2009, 12:31:08 am »
Just as the topic states, which formats are supported?

4
DotNet / Question regarding String2D
« on: March 21, 2009, 12:16:34 pm »
Is it possible to draw an antialiased text and is it also possible to get the size of a specific character in a text?

Thanks

5
DotNet / Question: How to setup icon for SFML window
« on: March 17, 2009, 03:00:19 am »
As the question stated, how do i do it. When ever i try to setup the icon, it always comes out wierd. Below is my code that i use

Code: [Select]

System.Drawing.Icon icon = new System.Drawing.Icon("Game.ico");
                MemoryStream ms = new MemoryStream();
                icon.Save(ms);
                byte[] data = ms.ToArray();
                Render.SetIcon((uint)icon.Width, (uint)icon.Height, data);
                icon.Dispose();
                ms.Close();

6
DotNet / String2D#GetRect Crashes when called
« on: March 15, 2009, 03:34:33 am »
Just as the title states. When ever GetRect is called on String2D object it crashes and gives the below error.


Attempted to read or write protected memory. This is often an indication that other memory is corrupt.

Thanks for the help.

7
DotNet / RenderWindow#EnableKeyRepeat does nothing
« on: March 05, 2009, 01:48:42 am »
When i tried disable key repeat, it does nothing. It keeps repeating key when i hold it down. Is there a solution to fix this problem? Thanks for the help

8
DotNet / Image#CreateMaskFromColor does not seem to work
« on: February 06, 2009, 06:00:52 am »
I have tried using CreateMaskFromColor on an Image but it never makes the color that i selected to be transparent.

Thanks for the help.

9
DotNet / SDK does not work on vista
« on: January 28, 2009, 02:36:45 am »
As the topic states, the .net version of sfml since not work on the vista system. It always gives an error message when loading the graphics dll at RenderWindow. Thanks for the help

10
DotNet / Image#Pixels Property does not work
« on: January 24, 2009, 05:29:14 am »
When i try to retrieve the pixels for an Image, it always returns the wrong data (byte[]) which cannot be used to recreate the original image. it returns a byte array always contain data with repetition of 255s and 0s like this: 255, 255, 255, 0, 255, 255, 255.



Thanks for the help

11
Feature requests / Add more option to Image#Copy for .Net
« on: January 20, 2009, 02:29:06 am »
Is possible to add Dest Width/Height for the Copy method for Image Class? I mean something like this

Image#Copy(Image img, IntRect dest_rect, IntRect src_rect)

rather than

Image#Copy(Image img, int destx, int desty, IntRect src_rect)

12
DotNet / Crash occur after closing window
« on: January 18, 2009, 07:48:10 pm »
I get the error below everytime i close the window if i use Sprite2D

The instruction at "0x69081124" referenced memory at "0x08092778". The memory could not be "written".

13
DotNet / Problem with SubRect method for Sprite
« on: January 18, 2009, 07:27:20 am »
Everytime i try using the SubRect method it either crash or does nothing most of the time. I do understand that the .net binding is relatively new, and i appreciate your effort to create a wrapper. How can i resolve this problem? Thanks

Pages: [1]