Skip to content

Commit

Permalink
0.1.2
Browse files Browse the repository at this point in the history
  • Loading branch information
igorseabra4 committed Apr 30, 2020
1 parent c84cbdb commit 202c042
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions IndustrialPark/Assets/Shared/AssetWithMotion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -60,15 +60,15 @@ public override Matrix LocalWorld()

if (found)
{
return PlatLocalTranslation() * PlatLocalRotation()
return PlatLocalRotation() * PlatLocalTranslation()
* Matrix.Scaling(_scale)
* Matrix.RotationYawPitchRoll(_yaw, _pitch, _roll)
* Matrix.Translation(Position - driver.Position)
* (useRotation ? driver.PlatLocalRotation() : Matrix.Identity)
* Matrix.Translation((Vector3)Vector3.Transform(Vector3.Zero, driver.LocalWorld()));
}

return PlatLocalTranslation() * PlatLocalRotation()
return PlatLocalRotation() * PlatLocalTranslation()
* Matrix.Scaling(_scale)
* Matrix.RotationYawPitchRoll(_yaw, _pitch, _roll)
* Matrix.Translation(Position);
Expand Down
4 changes: 2 additions & 2 deletions IndustrialPark/IndustrialPark.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<UpdateRequired>false</UpdateRequired>
<MapFileExtensions>true</MapFileExtensions>
<ApplicationRevision>0</ApplicationRevision>
<ApplicationVersion>0.1.1.%2a</ApplicationVersion>
<ApplicationVersion>0.1.2.%2a</ApplicationVersion>
<UseApplicationTrust>false</UseApplicationTrust>
<PublishWizardCompleted>true</PublishWizardCompleted>
<BootstrapperEnabled>true</BootstrapperEnabled>
Expand All @@ -42,7 +42,7 @@
</PropertyGroup>
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
<PlatformTarget>AnyCPU</PlatformTarget>
<DebugType>pdbonly</DebugType>
<DebugType>none</DebugType>
<Optimize>true</Optimize>
<OutputPath>bin\Release\</OutputPath>
<DefineConstants>TRACE</DefineConstants>
Expand Down
4 changes: 2 additions & 2 deletions IndustrialPark/Other/IPversion.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
{
public class IPversion
{
public string version = "v0.1.1";
public string versionName = "v0.1.1";
public string version = "v0.1.2";
public string versionName = "v0.1.2";
}
}
4 changes: 2 additions & 2 deletions IndustrialPark/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// É possível especificar todos os valores ou usar como padrão os Números de Build e da Revisão
// utilizando o "*" como mostrado abaixo:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.1.0")]
[assembly: AssemblyFileVersion("0.1.1.0")]
[assembly: AssemblyVersion("0.1.2.0")]
[assembly: AssemblyFileVersion("0.1.2.0")]
4 changes: 2 additions & 2 deletions IndustrialPark/Resources/ip_version.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"version": "v0.1.1",
"versionName": "\nv0.1.1\n\n* Adds presets on PIPT editor\n"
"version": "v0.1.2",
"versionName": "\nv0.1.2\n\n* Adds asset editor: SDFX. Can edit all fields, display (using radius from SGRP) and cross-version copy.\n* Updates asset editors: SGRP, PLAT.\n* Adds templates: SDFX and SoundGroup (SGRP) (Movie/Incredibles/ROTU).\n* Fixes issue that caused Import Multiple Assets to remove sound entries instead of adding when importing them!\n* Fixes issue that made it required for you to download vgmstream to extract sounds, for which it's not necessary.\n* Fixes editing of RandomRange in TIMR assets. Using that should work properly now.\n"
}

0 comments on commit 202c042

Please sign in to comment.