mirror of
https://github.com/Facepunch/Facepunch.Steamworks.git
synced 2024-12-25 22:25:49 +03:00
Merge branch 'master' of https://github.com/Facepunch/Facepunch.Steamworks
This commit is contained in:
commit
c58fc3f217
@ -480,6 +480,14 @@ internal void OnUserInvitedToLobbyAPI( LobbyInvite_t callback )
|
|||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Activates the steam overlay to invite friends to the CurrentLobby the user is in.
|
||||||
|
/// </summary>
|
||||||
|
public void OpenFriendInviteOverlay()
|
||||||
|
{
|
||||||
|
client.native.friends.ActivateGameOverlayInviteDialog(CurrentLobby);
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Called when a user invites the current user to a lobby. The first parameter is the lobby the user was invited to, the second is the CSteamID of the person who invited this user
|
/// Called when a user invites the current user to a lobby. The first parameter is the lobby the user was invited to, the second is the CSteamID of the person who invited this user
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
@ -48,19 +48,20 @@ internal static Item From( SteamNative.SteamUGCDetails_t details, Workshop works
|
|||||||
return item;
|
return item;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Download( bool highPriority = true )
|
public bool Download( bool highPriority = true )
|
||||||
{
|
{
|
||||||
if ( Installed ) return;
|
if ( Installed ) return true;
|
||||||
if ( Downloading ) return;
|
if ( Downloading ) return true;
|
||||||
|
|
||||||
if ( !workshop.ugc.DownloadItem( Id, highPriority ) )
|
if ( !workshop.ugc.DownloadItem( Id, highPriority ) )
|
||||||
{
|
{
|
||||||
Console.WriteLine( "Download Failed" );
|
Console.WriteLine( "Download Failed" );
|
||||||
return;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
workshop.OnFileDownloaded += OnFileDownloaded;
|
workshop.OnFileDownloaded += OnFileDownloaded;
|
||||||
workshop.OnItemInstalled += OnItemInstalled;
|
workshop.OnItemInstalled += OnItemInstalled;
|
||||||
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void Subscribe()
|
public void Subscribe()
|
||||||
|
@ -112,8 +112,18 @@ public float GetFloat( ulong steamid, string name, float defaultValue = 0 )
|
|||||||
return data;
|
return data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// <summary>
|
||||||
|
/// Unlocks the specified achievement for the specified user. Must have called Refresh on a steamid first.
|
||||||
|
/// Remember to use Commit after use.
|
||||||
|
/// </summary>
|
||||||
|
public bool SetAchievement( ulong steamid, string name )
|
||||||
|
{
|
||||||
|
return server.native.gameServerStats.SetUserAchievement( steamid, name );
|
||||||
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Resets the unlock status of an achievement for the specified user. Must have called Refresh on a steamid first.
|
/// Resets the unlock status of an achievement for the specified user. Must have called Refresh on a steamid first.
|
||||||
|
/// Remember to use Commit after use.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public bool ClearAchievement( ulong steamid, string name )
|
public bool ClearAchievement( ulong steamid, string name )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user