Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Any news on a new release? #738

Open
Svartskogen opened this issue Sep 22, 2023 · 6 comments
Open

Any news on a new release? #738

Svartskogen opened this issue Sep 22, 2023 · 6 comments

Comments

@Svartskogen
Copy link

The last official release is 3 years old already, and I need to use some of the new API, is there maybe a guide on how to compile and bundle the necessary stuff to use the latest changes on my project?

@Consumedgrub2
Copy link

I had the same question until I just did more research on their wiki. Instructions are here: https://wiki.facepunch.com/steamworks/#howtobuildfrommasterbranch

@MoctezumaDev
Copy link

Talking about building from master I had issues with VS 2019 and .Net 6... I had to remove it and lef net46 as the target framework. Same for C# I had to chang the language from 10 to 8...

I also had other issue with this line

if (ename.StartsWith($"k_E{name}"))
    ename = ename[(name.Length + 3)..];

I had to change it to this to make it work

if (ename.StartsWith($"k_E{name}"))
{
    // Using substring to achieve the same effect as range syntax
    ename = ename.Substring(name.Length + 3);
}

I think it would be nicer to have a way to add it to the unity package manager just like steamworks.net do...

@achimmihca
Copy link

Building manually is cumbersome.

  • Are there maybe any forks with a more recent release?
  • Are there efforts to automate the build (e.g. GitHub Actions)?

Notably, I am interested in the events from this commit

@xzbobzx
Copy link

xzbobzx commented Mar 13, 2024

This bit in the README file is really funny, considering the latest release is now 4 years old.

2024-03-13_13-38-36_(chrome)_Dependable_Iceblueredtopzebra

I agree with the sentiment that building manually is really cumbersome. Not everyone who needs a library is tech savvy enough to manually build that library and deal with any errors that plop up.

@marcospgp
Copy link

If anyone is interested, I wrote this library as a sort of practical example of how to use the steamworks SDK in Unity/C# in the most direct way possible: https://github.com/marcospgp/steamworksnt

Readme includes some general guidance on calling C++ libraries from C#.

@muzboz
Copy link

muzboz commented Mar 26, 2024 via email

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

7 participants