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.


Messages - jynks

Pages: [1]
1
It's best to start a new .NET Core project

like make a console project?

2
I can not work out how to install SFML.net...

The download page dose not say anything about how to use the files.. the link just goes to...

https://www.nuget.org/packages/SFML.Net/

but everytime you click on a link in dependencies it takes you to another page.. there is some kind of URL you can copy.. but I have no idea what it is or how to use it.

I have found a few tutorials.. but I cna not make heads or tales fomr them, as I cnano get past step 1... downlaod SFML
Like... " Alternatively you can also get pre-compiled binaries for SFML and CSFML."... so where do you get them?

https://github.com/SFML/SFML/wiki/Tutorial%3A-SFML.Net-on-Windows
https://github.com/SFML/SFML.Net/wiki/.NET-Core-2

Thanks!



3
General / Re: Code Blocks and Ubuntu + Static linking
« on: April 25, 2012, 06:04:57 am »
found this in search.... can you get it running at all?

Don't use static libraries on Linux, it will make things more complicated for you. Static libraries are useful only on Windows, other OSes manage shared libraries really well.

4
General / Ubuntu + Code:Blocks - SFML2 Snapshot
« on: April 25, 2012, 05:51:32 am »
I am trying to get the SFML2 Snap shot working in code:blocks for SFML2... but unable to do so.. I followed the instructions and was able to get cmake to build everything (I think)

I extracted the SFML2 snapshot file into ~/Development/SFML2 and ran cmake there, as you can see all the files seamed to have been created?



In Code:Blocks I seam to be unable to compile the test clock application.....




but when i try to compile the test code...

I get this strange error about the functions not being in sf:: ??

#include <SFML/System.hpp>
#include <iostream>

int main()
{
    sf::Clock Clock;
    while (Clock.GetElapsedTime() < 5.f)
    {
        std::cout << Clock.GetElapsedTime() << std::endl;
        sf::Sleep(0.5f);
    }

    return 0;
}

error: 'Class sf::Clock' has no member named 'GetElapsedTime'
error: Sleep' is not a member function of 'sf'


Pages: [1]