This commit is contained in:
Chuck Walbourn 2022-03-24 12:33:35 -07:00
Родитель 817a226c9a
Коммит d9e13e6f6e
5 изменённых файлов: 13 добавлений и 4 удалений

Просмотреть файл

@ -30,7 +30,7 @@ SpriteBatch - simple & efficient 2D sprite rendering
SpriteFont - bitmap based text rendering
VertexTypes - structures for commonly used vertex data formats
WICTextureLoader - WIC-based image file texture loader</description>
<releaseNotes>Matches the February 28, 2022 release on GitHub.
<releaseNotes>Matches the March 24, 2022 release on GitHub.
DirectX Tool Kit for Audio in this package uses XAudio2Redist NuGet package to support Windows 7 or later.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>

Просмотреть файл

@ -30,7 +30,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
SpriteFont - bitmap based text rendering
VertexTypes - structures for commonly used vertex data formats
WICTextureLoader - WIC-based image file texture loader</description>
<releaseNotes>Matches the February 28, 2022 release on GitHub.
<releaseNotes>Matches the March 24, 2022 release on GitHub.
DirectX Tool Kit for Audio in this package uses XAudio 2.9 which requires Windows 10 or later.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>

Просмотреть файл

@ -30,7 +30,7 @@ SpriteBatch - simple &amp; efficient 2D sprite rendering
SpriteFont - bitmap based text rendering
VertexTypes - structures for commonly used vertex data formats
WICTextureLoader - WIC-based image file texture loader</description>
<releaseNotes>Matches the February 28, 2022 release on GitHub.</releaseNotes>
<releaseNotes>Matches the March 24, 2022 release on GitHub.</releaseNotes>
<projectUrl>http://go.microsoft.com/fwlink/?LinkId=248929</projectUrl>
<repository type="git" url="https://github.com/microsoft/DirectXTK" />
<icon>images\icon.jpg</icon>

Просмотреть файл

@ -6,6 +6,13 @@ Release available for download on [GitHub](https://github.com/microsoft/DirectXT
## Release History
### March 24, 2022
* Fixed bug in UWP implementation of Mouse that combined vertical/horizontal scroll-wheel input
* Code refactoring for input classes (GamePad, Keyboard, and Mouse)
* Update build switches for SDL recommendations
* CMake project updates and UWP platform CMakePresets
* Dropped support for legacy Xbox One XDK prior to April 2018
### February 28, 2022
* SimpleMath Matrix updated with ToEuler and Vector3 version of CreateFromYawPitchRoll methods
* SimpleMath Quaternion updated with ToEuler, RotateTowards, FromToRotation, LookRotation, and Angle methods

Просмотреть файл

@ -6,7 +6,7 @@ http://go.microsoft.com/fwlink/?LinkId=248929
Copyright (c) Microsoft Corporation.
**February 28, 2022**
**March 24, 2022**
This package contains the "DirectX Tool Kit", a collection of helper classes for writing Direct3D 11 C++ code for Universal Windows Platform (UWP) apps for Windows 11, Windows 10, Xbox One, and Win32 desktop applications for Windows 7 Service Pack 1 or later.
@ -70,6 +70,8 @@ For the latest version of DirectXTK, bug reports, etc. please visit the project
## Release Notes
* As of the March 2022 release, legacy Xbox One XDK support requires the XDK April 2018 release or later.
* As of the October 2021 release, the DGSLEffect no longer directly supports skinning. Instead, make use of **SkinnedDGSLEffect** which is derived from DGSLEffect.
* As of the August 2021 release, **MakeSpriteFont** requires the .NET version 4.7.2 targeting pack to be installed to build. For VS 2017, this is an optional individual component *.NET Framework 4.7.2 development tools* (``Microsoft.Net.Component.4.7.2.TargetingPack``).