mirror of
https://github.com/space-wizards/RobustToolboxTemplate.git
synced 2026-02-10 16:24:49 -05:00
Update template to latest RobustToolbox version.
This commit is contained in:
parent
a70054ac44
commit
b417f4355e
4 changed files with 18 additions and 6 deletions
|
|
@ -1,4 +1,5 @@
|
||||||
using Robust.Client;
|
using Robust.Client;
|
||||||
|
using Robust.Client.Graphics;
|
||||||
using Robust.Shared.ContentPack;
|
using Robust.Shared.ContentPack;
|
||||||
using Robust.Shared.GameObjects;
|
using Robust.Shared.GameObjects;
|
||||||
using Robust.Shared.IoC;
|
using Robust.Shared.IoC;
|
||||||
|
|
@ -31,6 +32,8 @@ namespace Content.Client
|
||||||
|
|
||||||
IoCManager.BuildGraph();
|
IoCManager.BuildGraph();
|
||||||
|
|
||||||
|
factory.GenerateNetIds();
|
||||||
|
|
||||||
// DEVNOTE: This is generally where you'll be setting up the IoCManager further.
|
// DEVNOTE: This is generally where you'll be setting up the IoCManager further.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -38,6 +41,9 @@ namespace Content.Client
|
||||||
{
|
{
|
||||||
base.PostInit();
|
base.PostInit();
|
||||||
|
|
||||||
|
// DEVNOTE: The line below will disable lighting, so you can see in-game sprites without the need for lights
|
||||||
|
//IoCManager.Resolve<ILightManager>().Enabled = false;
|
||||||
|
|
||||||
// DEVNOTE: Further setup...
|
// DEVNOTE: Further setup...
|
||||||
var client = IoCManager.Resolve<IBaseClient>();
|
var client = IoCManager.Resolve<IBaseClient>();
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,5 @@
|
||||||
using Robust.Client;
|
using Robust.Client;
|
||||||
|
using Robust.Shared.Utility;
|
||||||
|
|
||||||
namespace Content.Client
|
namespace Content.Client
|
||||||
{
|
{
|
||||||
|
|
@ -16,8 +17,11 @@ namespace Content.Client
|
||||||
{
|
{
|
||||||
// DEVNOTE: Your options here.
|
// DEVNOTE: Your options here.
|
||||||
Sandboxing = false,
|
Sandboxing = false,
|
||||||
});
|
SplashLogo = new ResourcePath("/path/to/splash/logo.png"),
|
||||||
*/
|
// Check "RobustToolbox/Resources/Textures/Logo/icon" for an example window icon set.
|
||||||
|
WindowIconSet = new ResourcePath("/path/to/folder/with/window/icon/set"),
|
||||||
|
DefaultWindowTitle = "Robust Template"
|
||||||
|
});*/
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -25,6 +25,8 @@ namespace Content.Server
|
||||||
|
|
||||||
IoCManager.BuildGraph();
|
IoCManager.BuildGraph();
|
||||||
|
|
||||||
|
factory.GenerateNetIds();
|
||||||
|
|
||||||
// DEVNOTE: This is generally where you'll be setting up the IoCManager further.
|
// DEVNOTE: This is generally where you'll be setting up the IoCManager further.
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +1 @@
|
||||||
Subproject commit 986ec3ef062bd6977cedf357c77d049e4e18a017
|
Subproject commit 4ba56542531c4d810556455d2891a3ed82a53f86
|
||||||
Loading…
Add table
Add a link
Reference in a new issue