mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Fixed up some item inhand images. Converted toolbox to template.
This commit is contained in:
@@ -107,7 +107,7 @@
|
||||
<ItemGroup>
|
||||
<Compile Include="Atom\Atom.cs" />
|
||||
<Compile Include="Atom\AtomManager.cs" />
|
||||
<Compile Include="Atom\Item\Container\Toolbox.cs" />
|
||||
<None Include="Atom\Item\Container\Toolbox.cs" />
|
||||
<Compile Include="Atom\Item\Item.cs" />
|
||||
<None Include="Atom\Item\Misc\Flashlight.cs" />
|
||||
<None Include="Atom\Item\Tool\Crowbar.cs" />
|
||||
@@ -231,6 +231,9 @@
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="app.config" />
|
||||
<Content Include="EntityTemplates\Containers.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
<Content Include="EntityTemplates\Lights.xml">
|
||||
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
|
||||
</Content>
|
||||
|
||||
15
SS3D_Client/EntityTemplates/Containers.xml
Normal file
15
SS3D_Client/EntityTemplates/Containers.xml
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8" ?>
|
||||
<EntityTemplates>
|
||||
<EntityTemplate name="Toolbox" atomname="Atom.Item.Container.Toolbox">
|
||||
<Components>
|
||||
<Component name="NetworkMoverComponent"></Component>
|
||||
<Component name="ItemSpriteComponent">
|
||||
<Parameters>
|
||||
<Parameter name="basename" type="string" value="toolbox_r" />
|
||||
</Parameters>
|
||||
</Component>
|
||||
<Component name="ClickableComponent"></Component>
|
||||
<Component name="BasicItemComponent"></Component>
|
||||
</Components>
|
||||
</EntityTemplate>
|
||||
</EntityTemplates>
|
||||
6
SS3d.sln
6
SS3d.sln
@@ -27,6 +27,12 @@ Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerServices", "ServerSer
|
||||
EndProject
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "ServerInterfaces", "ServerInterfaces\ServerInterfaces.csproj", "{54D36F17-8D71-4DD8-8B29-12CAD489F0D9}"
|
||||
EndProject
|
||||
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{A06E14B0-1C84-4B9D-ADA5-CF16179A4718}"
|
||||
ProjectSection(SolutionItems) = preProject
|
||||
XMLSchemas\EntityTemplates.xsd = XMLSchemas\EntityTemplates.xsd
|
||||
XMLSchemas\KeyBindings.xsd = XMLSchemas\KeyBindings.xsd
|
||||
EndProjectSection
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
|
||||
43
XMLSchemas/EntityTemplates.xsd
Normal file
43
XMLSchemas/EntityTemplates.xsd
Normal file
@@ -0,0 +1,43 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema id="EntityTemplates" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xs:element name="EntityTemplates" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="EntityTemplate">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Components" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Component" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Parameters" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:sequence>
|
||||
<xs:element name="Parameter" minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="name" type="xs:string" />
|
||||
<xs:attribute name="type" type="xs:string" />
|
||||
<xs:attribute name="value" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="name" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:sequence>
|
||||
<xs:attribute name="name" type="xs:string" />
|
||||
<xs:attribute name="atomname" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
||||
1
XMLSchemas/KeyBindings.xsc
Normal file
1
XMLSchemas/KeyBindings.xsc
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
15
XMLSchemas/KeyBindings.xsd
Normal file
15
XMLSchemas/KeyBindings.xsd
Normal file
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<xs:schema id="KeyBindings" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xs:element name="KeyBindings" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
|
||||
<xs:complexType>
|
||||
<xs:choice minOccurs="0" maxOccurs="unbounded">
|
||||
<xs:element name="Binding">
|
||||
<xs:complexType>
|
||||
<xs:attribute name="Key" type="xs:string" />
|
||||
<xs:attribute name="Function" type="xs:string" />
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:choice>
|
||||
</xs:complexType>
|
||||
</xs:element>
|
||||
</xs:schema>
|
||||
1
XMLSchemas/KeyBindings.xss
Normal file
1
XMLSchemas/KeyBindings.xss
Normal file
@@ -0,0 +1 @@
|
||||
|
||||
Reference in New Issue
Block a user