Skip to content
This repository has been archived by the owner on Sep 16, 2019. It is now read-only.

Commit

Permalink
0.1.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
LogicAndTrick committed Dec 30, 2013
1 parent b7769ad commit 41ff934
Show file tree
Hide file tree
Showing 4 changed files with 30 additions and 23 deletions.
7 changes: 7 additions & 0 deletions Sledge.Editor/Milestones.txt
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,13 @@ Post-Alpha
Animation?
Fix rotations
Set angles value on rotate/transform
Helpers
Entity text labels (2D)
Box dimension labels (2D)
Tools
Select tool
Advanced manipulator (3D)


1. Goldsource Support
Formats
Expand Down
4 changes: 2 additions & 2 deletions Sledge.Editor/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -32,5 +32,5 @@
// You can specify all the values or you can default the Build and Revision Numbers
// by using the '*' as shown below:
// [assembly: AssemblyVersion("1.0.*")]
[assembly: AssemblyVersion("0.1.0.15")]
[assembly: AssemblyFileVersion("0.1.0.15")]
[assembly: AssemblyVersion("0.1.0.16")]
[assembly: AssemblyFileVersion("0.1.0.16")]
40 changes: 20 additions & 20 deletions Sledge.Editor/Settings/SettingsForm.Designer.cs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Sledge.Providers/Model/MdlProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -677,7 +677,7 @@ private static void ReadAnimationGoldsource(BinaryReader br, DataStructures.Mode

for (var i = 0; i < 6; i++) // For each offset [X, Y, Z, XR, YR, ZR]
{
if (offsets[i] == 0) continue;
if (offsets[i] <= 0) continue;
br.BaseStream.Position = offsetPos + offsets[i];
var values = ReadRLEEncodedAnimationFrameValues(br, numframes);
for (var f = 0; f < numframes; f++)
Expand Down

0 comments on commit 41ff934

Please sign in to comment.