Fix typos
This commit is contained in:
@@ -5,11 +5,6 @@
|
||||
#include "Engine/Animations/Config.h"
|
||||
#include "Engine/Core/Log.h"
|
||||
#include "Engine/Core/Math/Matrix.h"
|
||||
#include "Engine/Core/Math/Matrix3x4.h"
|
||||
|
||||
SkinnedMeshDrawData::SkinnedMeshDrawData()
|
||||
{
|
||||
}
|
||||
|
||||
SkinnedMeshDrawData::~SkinnedMeshDrawData()
|
||||
{
|
||||
|
||||
@@ -36,11 +36,6 @@ public:
|
||||
Array<byte> Data;
|
||||
|
||||
public:
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="SkinnedMeshDrawData"/> class.
|
||||
/// </summary>
|
||||
SkinnedMeshDrawData();
|
||||
|
||||
/// <summary>
|
||||
/// Finalizes an instance of the <see cref="SkinnedMeshDrawData"/> class.
|
||||
/// </summary>
|
||||
@@ -76,7 +71,7 @@ public:
|
||||
void OnDataChanged(bool dropHistory);
|
||||
|
||||
/// <summary>
|
||||
/// After bones Data has been send to the GPU buffer.
|
||||
/// After bones Data has been sent to the GPU buffer.
|
||||
/// </summary>
|
||||
void OnFlush()
|
||||
{
|
||||
|
||||
@@ -1002,7 +1002,7 @@ void AnimatedModel::Draw(RenderContext& renderContext)
|
||||
if (renderContext.View.Pass == DrawPass::GlobalSDF)
|
||||
return;
|
||||
if (renderContext.View.Pass == DrawPass::GlobalSurfaceAtlas)
|
||||
return; // No supported
|
||||
return; // Not supported
|
||||
ACTOR_GET_WORLD_MATRIX(this, view, world);
|
||||
GEOMETRY_DRAW_STATE_EVENT_BEGIN(_drawState, world);
|
||||
|
||||
|
||||
@@ -12,25 +12,25 @@
|
||||
|
||||
bool FileSystemBase::ShowOpenFileDialog(Window* parentWindow, const StringView& initialDirectory, const StringView& filter, bool multiSelect, const StringView& title, Array<String, HeapAllocation>& filenames)
|
||||
{
|
||||
// No supported
|
||||
// Not supported
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FileSystemBase::ShowSaveFileDialog(Window* parentWindow, const StringView& initialDirectory, const StringView& filter, bool multiSelect, const StringView& title, Array<String, HeapAllocation>& filenames)
|
||||
{
|
||||
// No supported
|
||||
// Not supported
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FileSystemBase::ShowBrowseFolderDialog(Window* parentWindow, const StringView& initialDirectory, const StringView& title, String& path)
|
||||
{
|
||||
// No supported
|
||||
// Not supported
|
||||
return true;
|
||||
}
|
||||
|
||||
bool FileSystemBase::ShowFileExplorer(const StringView& path)
|
||||
{
|
||||
// No supported
|
||||
// Not supported
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user