• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Tags
Aucun tag

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

First Machine Age's Mods (Combined repo.)


Commit MetaInfo

Révision333d93b548274f35704aba800dcc9fbd299a20e8 (tree)
l'heure2020-09-10 07:26:21
Auteurmelchior <melchior@user...>
Commitermelchior

Message de Log

W.I.P. & fixes for model transforms...partly success

Change Summary

Modification

--- a/ElementalTools/Assignments.cs
+++ b/ElementalTools/Assignments.cs
@@ -350,7 +350,7 @@ attributes: {
350350 outputOverride: "fma:zzzzzzz"
351351 },
352352
353-
354-
353+* Item: Sickle - 2x2 hand-held harvest tool (works on reeds, crops, grass, any plants)
354+* Sort out how Arrow's work with item merging...
355355
356356 ******************************/
--- a/ElementalTools/ElementalTools.csproj
+++ b/ElementalTools/ElementalTools.csproj
@@ -300,6 +300,9 @@
300300 <None Include="assets\fma\recipes\smithing\dory_speartip.json">
301301 <CopyToOutputDirectory>Always</CopyToOutputDirectory>
302302 </None>
303+ <None Include="assets\fma\shapes\item\tools\drawplate.json">
304+ <CopyToOutputDirectory>Always</CopyToOutputDirectory>
305+ </None>
303306 </ItemGroup>
304307 <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
305308 </Project>
\ No newline at end of file
--- a/ElementalTools/Items/SteeIWrapItem.cs
+++ b/ElementalTools/Items/SteeIWrapItem.cs
@@ -117,7 +117,12 @@ namespace ElementalTools
117117 WrappedItem.AttackRange = this.AttackRange;
118118 WrappedItem.ToolTier = this.ToolTier;
119119 WrappedItem.MaxStackSize = this.MaxStackSize;
120- WrappedItem.MaterialDensity = this.MaterialDensity;
120+ WrappedItem.MaterialDensity = this.MaterialDensity;
121+ WrappedItem.GuiTransform = this.GuiTransform;
122+ WrappedItem.FpHandTransform = this.FpHandTransform;
123+ WrappedItem.TpHandTransform = this.TpHandTransform;
124+ WrappedItem.GroundTransform = this.GroundTransform;
125+
121126
122127 WrappedItem.OnLoadedNative(api);//Hacky - but needed?
123128 }
--- a/ElementalTools/Properties/AssemblyInfo.cs
+++ b/ElementalTools/Properties/AssemblyInfo.cs
@@ -4,12 +4,16 @@ using System.Runtime.CompilerServices;
44 // Information about this assembly is defined by the following attributes.
55 // Change them to the values specific to your project.
66
7-[assembly: AssemblyTitle("ElementalTools")]
8-[assembly: AssemblyDescription("")]
9-[assembly: AssemblyConfiguration("")]
7+[assembly: AssemblyTitle("Era_Of_Steel")]
8+[assembly: AssemblyDescription("Mod plugin for V.S.")]
9+#if DEBUG
10+[assembly: AssemblyConfiguration("DEBUG")]
11+#else
12+[assembly: AssemblyConfiguration("RELEASE")]
13+#endif
1014 [assembly: AssemblyCompany("")]
11-[assembly: AssemblyProduct("")]
12-[assembly: AssemblyCopyright("librarian")]
15+[assembly: AssemblyProduct("First_Machine_Age_component")]
16+[assembly: AssemblyCopyright("Melchior")]
1317 [assembly: AssemblyTrademark("")]
1418 [assembly: AssemblyCulture("")]
1519
--- a/ElementalTools/assets/fma/blocktypes/metallurgy/pack_carburization.json
+++ b/ElementalTools/assets/fma/blocktypes/metallurgy/pack_carburization.json
@@ -13,7 +13,7 @@
1313 }
1414 },
1515 SteelTransitionTemp:750,
16- SteelTransitionTime:38,
16+ SteelTransitionTime:60,
1717 },
1818 variantgroups: [
1919 { code: "type", states: ["unfired","fired"] },
@@ -32,7 +32,7 @@
3232 combustiblePropsByType: {
3333 "pack_carbirization-unfired": {
3434 meltingPoint: 750,
35- meltingDuration: 38,
35+ meltingDuration: 60,
3636 smeltedRatio: 1,
3737 smeltingType: "convert",
3838 smeltedStack: { type: "block", code: "pack_carbirization-fired" },
--- a/ElementalTools/assets/fma/itemtypes/arms/spear.json
+++ b/ElementalTools/assets/fma/itemtypes/arms/spear.json
@@ -60,10 +60,10 @@
6060 },
6161 creativeinventory: { "general": ["*"], "items": ["*"], "tools": ["*"] },
6262 guiTransform: {
63- translation: { x: 0, y: 0, z: 0 },
64- rotation: { x: -77, y: 53, z: 25 },
63+ translation: { x: 0.5, y: 0.5, z: 0.5 },
64+ rotation: { x: -2, y: -38, z: -38 },
6565 origin: { x: 0.4, y: 0.1, z: 0.4 },
66- scale: 0.9
66+ scale: 0.65
6767 },
6868 fpHandTransform: {
6969 translation: { x: 0.3, y: 0.5, z: 0.16 },
@@ -77,10 +77,10 @@
7777 origin: { x: 0.5, y: 0, z: 0.5 },
7878 scale: 3.4
7979 },
80- tpHandTransformByType: {
81- translation: { x: -1.24, y: -0.01, z: -0.56 },
82- rotation: { x: -81, y: 0, z: 0 },
83- origin: { x: 0.6, y: 0, z: 0.5 },
84- scale: 0.8
80+ tpHandTransform: {
81+ translation: { x: -1.35, y: -0.5, z: -1.21 },
82+ rotation: { x: -34, y: 4, z: -1 },
83+ origin: { x: 0.495, y: 0.485, z: 0.5 },
84+ scale: 0.5
8585 },
8686 }
--- a/ElementalTools/assets/fma/recipes/grid/metallurgy/pack_carburization.json
+++ b/ElementalTools/assets/fma/recipes/grid/metallurgy/pack_carburization.json
@@ -240,7 +240,7 @@ ingredientPattern: "CCC KXK CCC",
240240 width: 3,
241241 height: 3,
242242 attributes: {
243- outputOverride: "spear-blister_steel",
243+ outputOverride: "speartip-blister_steel",
244244 extraCookTime:20,
245245 },
246246 output: { type: "block", code: "pack_carburization-unfired" }
--- a/ElementalTools/assets/fma/shapes/item/tools/files.json
+++ b/ElementalTools/assets/fma/shapes/item/tools/files.json
@@ -130,5 +130,35 @@
130130 }
131131 }
132132 ]
133+ },
134+ {
135+ "name": "FileSurface4",
136+ "from": [ 3.75, 0.0, 0.2 ],
137+ "to": [ 11.55, 0.38, 0.58 ],
138+ "rotationOrigin": [ 2.4, 0.48, 4.2 ],
139+ "rotationY": -1.0,
140+ "faces": {
141+ "north": { "texture": "#metal", "uv": [ 0.0, 0.0, 7.5, 0.5 ] },
142+ "east": { "texture": "#metal", "uv": [ 0.0, 0.0, 0.5, 0.5 ] },
143+ "south": { "texture": "#metal", "uv": [ 0.0, 0.0, 7.5, 0.5 ] },
144+ "west": { "texture": "#metal", "uv": [ 0.0, 0.0, 0.5, 0.5 ] },
145+ "up": { "texture": "#metal", "uv": [ 0.0, 0.0, 7.5, 0.5 ] },
146+ "down": { "texture": "#metal", "uv": [ 0.0, 0.0, 7.5, 0.5 ] }
147+ },
148+ "children": [
149+ {
150+ "name": "FileTang4",
151+ "from": [ -1.8, 0.125, 0.02 ],
152+ "to": [ 0.0, 0.215, 0.32 ],
153+ "faces": {
154+ "north": { "texture": "#metal", "uv": [ 0.0, 0.0, 1.5, 0.5 ] },
155+ "east": { "texture": "#metal", "uv": [ 0.0, 0.0, 0.5, 0.5 ] },
156+ "south": { "texture": "#metal", "uv": [ 0.0, 0.0, 1.5, 0.5 ] },
157+ "west": { "texture": "#metal", "uv": [ 0.0, 0.0, 0.5, 0.5 ] },
158+ "up": { "texture": "#metal", "uv": [ 0.0, 0.0, 1.5, 0.5 ] },
159+ "down": { "texture": "#metal", "uv": [ 0.0, 0.0, 1.5, 0.5 ] }
160+ }
161+ }
162+ ]
133163 }
134164 ]}
\ No newline at end of file