From 8c9a3055e147472ad27528763b9138ca3c115034 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Fri, 6 Jan 2023 14:11:14 +0100 Subject: [PATCH 01/14] Fix foliage paint brush transparency --- Content/Editor/Gizmo/FoliageBrushMaterial.flax | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Content/Editor/Gizmo/FoliageBrushMaterial.flax b/Content/Editor/Gizmo/FoliageBrushMaterial.flax index a776b52a1..8a3cdb2df 100644 --- a/Content/Editor/Gizmo/FoliageBrushMaterial.flax +++ b/Content/Editor/Gizmo/FoliageBrushMaterial.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fd05cf1d1f5e1f2d7e1546712ac0513f08a58b7aaca081112e56d1cc4ebbb690 -size 36263 +oid sha256:485cedb18db31cb18c7991dbda99dcc3440b48b0f49b219b563731e5304504c5 +size 38691 From 70cce0e1ee957c698f76882dfee114be3ff66801 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Mon, 9 Jan 2023 16:06:47 +0100 Subject: [PATCH 02/14] Fix regression crash when using DoF, optimize DoF usage of GPU memory --- Source/Engine/Renderer/DepthOfFieldPass.cpp | 62 +++++++-------------- Source/Engine/Renderer/DepthOfFieldPass.h | 6 +- Source/Engine/Renderer/MotionBlurPass.cpp | 14 ++--- Source/Engine/Renderer/MotionBlurPass.h | 6 +- Source/Engine/Renderer/Renderer.cpp | 6 +- 5 files changed, 34 insertions(+), 60 deletions(-) diff --git a/Source/Engine/Renderer/DepthOfFieldPass.cpp b/Source/Engine/Renderer/DepthOfFieldPass.cpp index e3a76ad84..aad8a035f 100644 --- a/Source/Engine/Renderer/DepthOfFieldPass.cpp +++ b/Source/Engine/Renderer/DepthOfFieldPass.cpp @@ -200,10 +200,10 @@ GPUTexture* DepthOfFieldPass::getDofBokehShape(DepthOfFieldSettings& dofSettings return result ? result->GetTexture() : nullptr; } -GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* input) +void DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture*& frame, GPUTexture*& tmp) { if (!_platformSupportsDoF || checkIfSkipPass()) - return nullptr; + return; auto device = GPUDevice::Instance; auto context = device->GetMainContext(); const auto depthBuffer = renderContext.Buffers->DepthBuffer; @@ -211,7 +211,7 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i DepthOfFieldSettings& dofSettings = renderContext.List->Settings.DepthOfField; const bool useDoF = _platformSupportsDoF && (renderContext.View.Flags & ViewFlags::DepthOfField) != 0 && dofSettings.Enabled; if (!useDoF) - return nullptr; + return; PROFILE_GPU_CPU("Depth Of Field"); context->ResetSR(); @@ -222,8 +222,8 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i const int32 dofResolutionDivider = 1; const int32 bokehResolutionDivider = 1; // TODO: in low-res DoF maybe use shared HalfResDepth? - const int32 w1 = input->Width(); - const int32 h1 = input->Height(); + const int32 w1 = frame->Width(); + const int32 h1 = frame->Height(); const int32 cocWidth = w1 / cocResolutionDivider; const int32 cocHeight = h1 / cocResolutionDivider; const int32 dofWidth = w1 / dofResolutionDivider; @@ -241,8 +241,6 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i // TODO: maybe we could render particles (whole transparency in general) to the depth buffer to apply DoF on them as well? - // TODO: reduce amount of used temporary render targets, we could plan rendering steps in more static way and hardcode some logic to make it run faster with less memory usage (less bandwitch) - // Setup constant buffer { float nearPlane = renderContext.View.Near; @@ -299,8 +297,6 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i // Peek temporary render target for dof pass auto dofFormat = renderContext.Buffers->GetOutputFormat(); tempDesc = GPUTextureDescription::New2D(dofWidth, dofHeight, dofFormat); - GPUTexture* dofInput = RenderTargetPool::Get(tempDesc); - RENDER_TARGET_POOL_SET_NAME(dofInput, "DOF.Output"); // Do the bokeh point generation, or just do a copy if disabled bool isBokehGenerationEnabled = dofSettings.BokehEnabled && _platformSupportsBokeh && dofSettings.BokehBrightness > 0.0f && dofSettings.BokehSize > 0.0f; @@ -318,7 +314,7 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i if (_bokehBuffer->Init(GPUBufferDescription::StructuredAppend(minRequiredElements, elementStride))) { LOG(Fatal, "Cannot create buffer {0}.", TEXT("Bokeh Buffer")); - return nullptr; + return; } } @@ -326,10 +322,10 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i context->ResetCounter(_bokehBuffer); // Generate bokeh points - context->BindSR(0, input); + context->BindSR(0, frame); context->BindSR(1, depthBlurTarget); context->BindUA(1, _bokehBuffer->View()); - context->SetRenderTarget(*dofInput); + context->SetRenderTarget(*tmp); context->SetViewportAndScissors((float)dofWidth, (float)dofHeight); context->SetState(_psBokehGeneration); context->DrawFullscreenTriangle(); @@ -337,33 +333,26 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i else { // Generate bokeh points - context->BindSR(0, input); + context->BindSR(0, frame); context->BindSR(1, depthBlurTarget); - context->SetRenderTarget(*dofInput); + context->SetRenderTarget(*tmp); context->SetViewportAndScissors((float)dofWidth, (float)dofHeight); context->SetState(_psDoNotGenerateBokeh); context->DrawFullscreenTriangle(); } + Swap(frame, tmp); // Do depth of field (using compute shaders in full resolution) - GPUTexture* dofOutput; context->ResetRenderTarget(); context->ResetSR(); context->ResetUA(); context->FlushState(); { - // Peek temporary targets for two blur passes - tempDesc = GPUTextureDescription::New2D(dofWidth, dofHeight, dofFormat, GPUTextureFlags::ShaderResource | GPUTextureFlags::RenderTarget | GPUTextureFlags::UnorderedAccess); - auto dofTargetH = RenderTargetPool::Get(tempDesc); - auto dofTargetV = RenderTargetPool::Get(tempDesc); - RENDER_TARGET_POOL_SET_NAME(dofTargetH, "DOF.TargetH"); - RENDER_TARGET_POOL_SET_NAME(dofTargetV, "DOF.TargetV"); - // Horizontal pass - context->BindSR(0, dofInput); + context->BindSR(0, frame); context->BindSR(1, depthBlurTarget); // - context->BindUA(0, dofTargetH->View()); + context->BindUA(0, tmp->View()); // uint32 groupCountX = (dofWidth / DOF_GRID_SIZE) + ((dofWidth % DOF_GRID_SIZE) > 0 ? 1 : 0); uint32 groupCountY = dofHeight; @@ -376,9 +365,9 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i context->ResetSR(); // Vertical pass - context->BindUA(0, dofTargetV->View()); + context->BindUA(0, frame->View()); // - context->BindSR(0, dofTargetH); + context->BindSR(0, tmp); context->BindSR(1, depthBlurTarget); // groupCountX = dofWidth; @@ -391,20 +380,14 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i // Cleanup context->ResetUA(); context->ResetSR(); - RenderTargetPool::Release(dofTargetH); - - dofOutput = dofTargetV; } - // Cleanup temporary texture - RenderTargetPool::Release(dofInput); - // Render the bokeh points if (isBokehGenerationEnabled) { tempDesc = GPUTextureDescription::New2D(bokehTargetWidth, bokehTargetHeight, dofFormat); auto bokehTarget = RenderTargetPool::Get(tempDesc); - RENDER_TARGET_POOL_SET_NAME(depthBlurTarget, "DOF.Bokeh"); + RENDER_TARGET_POOL_SET_NAME(bokehTarget, "DOF.Bokeh"); context->Clear(*bokehTarget, Color::Black); { @@ -426,24 +409,17 @@ GPUTexture* DepthOfFieldPass::Render(RenderContext& renderContext, GPUTexture* i } // Composite the bokeh rendering results with the depth of field result - tempDesc = GPUTextureDescription::New2D(dofWidth, dofHeight, dofFormat); - auto compositeTarget = RenderTargetPool::Get(tempDesc); - RENDER_TARGET_POOL_SET_NAME(depthBlurTarget, "DOF.Composite"); context->BindSR(0, bokehTarget); - context->BindSR(1, dofOutput); - context->SetRenderTarget(*compositeTarget); + context->BindSR(1, frame); + context->SetRenderTarget(*tmp); context->SetViewportAndScissors((float)dofWidth, (float)dofHeight); context->SetState(_psBokehComposite); context->DrawFullscreenTriangle(); context->ResetRenderTarget(); RenderTargetPool::Release(bokehTarget); - RenderTargetPool::Release(dofOutput); - dofOutput = compositeTarget; + Swap(frame, tmp); } RenderTargetPool::Release(depthBlurTarget); - - // Return output temporary render target - return dofOutput; } diff --git a/Source/Engine/Renderer/DepthOfFieldPass.h b/Source/Engine/Renderer/DepthOfFieldPass.h index 9b2841fbd..5350e59be 100644 --- a/Source/Engine/Renderer/DepthOfFieldPass.h +++ b/Source/Engine/Renderer/DepthOfFieldPass.h @@ -42,9 +42,9 @@ public: /// Perform Depth Of Field rendering for the input task /// /// The rendering context. - /// Target with rendered HDR frame - /// Allocated temporary render target, should be released by the called. Can be null if pass skipped. - GPUTexture* Render(RenderContext& renderContext, GPUTexture* input); + /// Input and output frame (leave unchanged when not using this effect). + /// Temporary frame (the same format as frame) + void Render(RenderContext& renderContext, GPUTexture*& frame, GPUTexture*& tmp); private: GPUTexture* getDofBokehShape(DepthOfFieldSettings& dofSettings); diff --git a/Source/Engine/Renderer/MotionBlurPass.cpp b/Source/Engine/Renderer/MotionBlurPass.cpp index ba7b20569..dbb9b801e 100644 --- a/Source/Engine/Renderer/MotionBlurPass.cpp +++ b/Source/Engine/Renderer/MotionBlurPass.cpp @@ -258,15 +258,15 @@ void MotionBlurPass::RenderDebug(RenderContext& renderContext, GPUTextureView* f context->ResetSR(); } -void MotionBlurPass::Render(RenderContext& renderContext, GPUTexture*& input, GPUTexture*& output) +void MotionBlurPass::Render(RenderContext& renderContext, GPUTexture*& frame, GPUTexture*& tmp) { const bool isCameraCut = renderContext.Task->IsCameraCut; const auto motionVectors = renderContext.Buffers->MotionVectors; ASSERT(motionVectors); auto context = GPUDevice::Instance->GetMainContext(); MotionBlurSettings& settings = renderContext.List->Settings.MotionBlur; - const int32 screenWidth = input->Width(); - const int32 screenHeight = input->Height(); + const int32 screenWidth = frame->Width(); + const int32 screenHeight = frame->Height(); const int32 motionVectorsWidth = screenWidth / static_cast(settings.MotionVectorsResolution); const int32 motionVectorsHeight = screenHeight / static_cast(settings.MotionVectorsResolution); if ((renderContext.View.Flags & ViewFlags::MotionBlur) == 0 || @@ -368,13 +368,13 @@ void MotionBlurPass::Render(RenderContext& renderContext, GPUTexture*& input, GP // Render motion blur context->ResetRenderTarget(); - context->SetRenderTarget(*output); + context->SetRenderTarget(*tmp); context->SetViewportAndScissors((float)screenWidth, (float)screenHeight); - context->BindSR(0, input->View()); + context->BindSR(0, frame->View()); context->BindSR(1, motionVectors->View()); context->BindSR(2, vMaxNeighborBuffer->View()); context->BindSR(3, renderContext.Buffers->DepthBuffer->View()); - data.Input0SizeInv = Float2(1.0f / (float)input->Width(), 1.0f / (float)input->Height()); + data.Input0SizeInv = Float2(1.0f / (float)screenWidth, 1.0f / (float)screenHeight); data.Input2SizeInv = Float2(1.0f / (float)renderContext.Buffers->DepthBuffer->Width(), 1.0f / (float)renderContext.Buffers->DepthBuffer->Height()); context->UpdateCB(cb, &data); context->SetState(_psMotionBlur); @@ -384,5 +384,5 @@ void MotionBlurPass::Render(RenderContext& renderContext, GPUTexture*& input, GP RenderTargetPool::Release(vMaxNeighborBuffer); context->ResetSR(); context->ResetRenderTarget(); - Swap(output, input); + Swap(frame, tmp); } diff --git a/Source/Engine/Renderer/MotionBlurPass.h b/Source/Engine/Renderer/MotionBlurPass.h index 3ea11897d..1ff1dc8eb 100644 --- a/Source/Engine/Renderer/MotionBlurPass.h +++ b/Source/Engine/Renderer/MotionBlurPass.h @@ -46,9 +46,9 @@ public: /// Renders the motion blur. Swaps the input with output if rendering is performed. Does nothing if rendering is not performed. /// /// The rendering context. - /// The input frame. - /// The output frame. - void Render(RenderContext& renderContext, GPUTexture*& input, GPUTexture*& output); + /// Input and output frame (leave unchanged when not using this effect). + /// Temporary frame (the same format as frame) + void Render(RenderContext& renderContext, GPUTexture*& frame, GPUTexture*& tmp); private: diff --git a/Source/Engine/Renderer/Renderer.cpp b/Source/Engine/Renderer/Renderer.cpp index 0ab25f6e5..f7f5c88ba 100644 --- a/Source/Engine/Renderer/Renderer.cpp +++ b/Source/Engine/Renderer/Renderer.cpp @@ -397,7 +397,7 @@ void RenderInner(SceneRenderTask* task, RenderContext& renderContext, RenderCont // Get the light accumulation buffer auto outputFormat = renderContext.Buffers->GetOutputFormat(); - auto tempDesc = GPUTextureDescription::New2D(renderContext.Buffers->GetWidth(), renderContext.Buffers->GetHeight(), outputFormat); + auto tempDesc = GPUTextureDescription::New2D(renderContext.Buffers->GetWidth(), renderContext.Buffers->GetHeight(), outputFormat, GPUTextureFlags::ShaderResource | GPUTextureFlags::RenderTarget | GPUTextureFlags::UnorderedAccess); auto lightBuffer = RenderTargetPool::Get(tempDesc); RENDER_TARGET_POOL_SET_NAME(lightBuffer, "LightBuffer"); @@ -587,8 +587,7 @@ void RenderInner(SceneRenderTask* task, RenderContext& renderContext, RenderCont } // Depth of Field - auto dofTemporary = DepthOfFieldPass::Instance()->Render(renderContext, frameBuffer); - frameBuffer = dofTemporary ? dofTemporary : frameBuffer; + DepthOfFieldPass::Instance()->Render(renderContext, frameBuffer, tempBuffer); // Motion Blur MotionBlurPass::Instance()->Render(renderContext, frameBuffer, tempBuffer); @@ -600,7 +599,6 @@ void RenderInner(SceneRenderTask* task, RenderContext& renderContext, RenderCont EyeAdaptationPass::Instance()->Render(renderContext, frameBuffer); PostProcessingPass::Instance()->Render(renderContext, frameBuffer, tempBuffer, colorGradingLUT); RenderTargetPool::Release(colorGradingLUT); - RenderTargetPool::Release(dofTemporary); Swap(frameBuffer, tempBuffer); // Cleanup From 67c63f14102899c8ed073b009d28694eb71e2751 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Fri, 6 Jan 2023 08:56:03 +0100 Subject: [PATCH 03/14] Optimize GPU Resource name to prevent memory allocs when changing name frequently --- Source/Engine/Graphics/GPUDevice.cpp | 28 +++++++++++++++---- Source/Engine/Graphics/GPUResource.h | 7 +++-- Source/Engine/Graphics/GPUSwapChain.cpp | 2 +- .../DirectX/DX12/GPUBufferDX12.cpp | 2 +- .../GraphicsDevice/Vulkan/GPUBufferVulkan.cpp | 2 +- 5 files changed, 29 insertions(+), 12 deletions(-) diff --git a/Source/Engine/Graphics/GPUDevice.cpp b/Source/Engine/Graphics/GPUDevice.cpp index 432acc548..27de419be 100644 --- a/Source/Engine/Graphics/GPUDevice.cpp +++ b/Source/Engine/Graphics/GPUDevice.cpp @@ -195,7 +195,11 @@ GPUResource::~GPUResource() { #if !BUILD_RELEASE && GPU_ENABLE_RESOURCE_NAMING if (_memoryUsage != 0) - LOG(Error, "{0} '{1}' has not been disposed before destruction", ScriptingObject::ToString(), _name); + LOG(Error, "{0} '{1}' has not been disposed before destruction", ScriptingObject::ToString(), GetName()); +#endif +#if GPU_ENABLE_RESOURCE_NAMING + if (_namePtr) + Platform::Free(_namePtr); #endif } @@ -208,14 +212,26 @@ static_assert((GPU_ENABLE_RESOURCE_NAMING) == (!BUILD_RELEASE), "Update build co #if GPU_ENABLE_RESOURCE_NAMING -String GPUResource::GetName() const +StringView GPUResource::GetName() const { - return _name; + return StringView(_namePtr, _nameSize); } void GPUResource::SetName(const StringView& name) { - _name = name; + if (_nameCapacity < name.Length() + 1) + { + if (_namePtr) + Platform::Free(_namePtr); + _nameCapacity = name.Length() + 1; + _namePtr = (Char*)Platform::Allocate(_nameCapacity * sizeof(Char), 16); + } + _nameSize = name.Length(); + if (name.HasChars()) + { + Platform::MemoryCopy(_namePtr, name.Get(), _nameSize * sizeof(Char)); + _namePtr[_nameSize] = 0; + } } #endif @@ -243,8 +259,8 @@ void GPUResource::OnReleaseGPU() String GPUResource::ToString() const { #if GPU_ENABLE_RESOURCE_NAMING - if (_name.HasChars()) - return _name; + if (_namePtr) + return String(_namePtr, _nameSize); #endif return ScriptingObject::ToString(); } diff --git a/Source/Engine/Graphics/GPUResource.h b/Source/Engine/Graphics/GPUResource.h index 5e27d679b..434220fa7 100644 --- a/Source/Engine/Graphics/GPUResource.h +++ b/Source/Engine/Graphics/GPUResource.h @@ -49,7 +49,8 @@ API_CLASS(Abstract, NoSpawn) class FLAXENGINE_API GPUResource : public Scripting protected: uint64 _memoryUsage = 0; #if GPU_ENABLE_RESOURCE_NAMING - String _name; + Char* _namePtr = nullptr; + int32 _nameSize = 0, _nameCapacity = 0; #endif public: @@ -95,7 +96,7 @@ public: /// /// Gets the resource name. /// - API_PROPERTY() String GetName() const; + API_PROPERTY() StringView GetName() const; /// /// Sets the resource name. @@ -149,7 +150,7 @@ public: { #if GPU_ENABLE_RESOURCE_NAMING if (name.HasChars()) - GPUResource::_name = name; + GPUResource::SetName(name); #endif device->AddResource(this); } diff --git a/Source/Engine/Graphics/GPUSwapChain.cpp b/Source/Engine/Graphics/GPUSwapChain.cpp index 43a2582ca..31f751fcb 100644 --- a/Source/Engine/Graphics/GPUSwapChain.cpp +++ b/Source/Engine/Graphics/GPUSwapChain.cpp @@ -38,7 +38,7 @@ public: GPUSwapChain::GPUSwapChain() { #if GPU_ENABLE_RESOURCE_NAMING - _name = TEXT("Swap Chain (backbuffers)"); + SetName(TEXT("Swap Chain (backbuffers)")); #endif } diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp index 946c7f987..325528514 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp @@ -174,7 +174,7 @@ bool GPUBufferDX12::OnInit() if (_desc.Flags & GPUBufferFlags::Counter || _desc.Flags & GPUBufferFlags::Append) { #if GPU_ENABLE_RESOURCE_NAMING - String name = GetName() + TEXT(".Counter"); + String name = String(GetName()) + TEXT(".Counter"); _counter = ::New(_device, name); #else _counter = ::New(_device, String::Empty); diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp index e4e432f98..bfc88c14c 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp @@ -165,7 +165,7 @@ bool GPUBufferVulkan::OnInit() if (_desc.Flags & GPUBufferFlags::Counter || _desc.Flags & GPUBufferFlags::Append) { #if GPU_ENABLE_RESOURCE_NAMING - String name = GetName() + TEXT(".Counter"); + String name = String(GetName()) + TEXT(".Counter"); Counter = ::New(_device, name); #else Counter = ::New(_device, StringView::Empty); From e2aa6b8970260c0bfd6395c34573c0559584d164 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Wed, 4 Jan 2023 14:29:00 +0100 Subject: [PATCH 04/14] Fix default value in viewport options --- Source/Editor/Options/ViewportOptions.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Editor/Options/ViewportOptions.cs b/Source/Editor/Options/ViewportOptions.cs index 7f42d36d0..7807a535f 100644 --- a/Source/Editor/Options/ViewportOptions.cs +++ b/Source/Editor/Options/ViewportOptions.cs @@ -35,14 +35,14 @@ namespace FlaxEditor.Options /// /// Gets or sets the default near clipping plane distance for the viewport camera. /// - [DefaultValue(8.0f), Limit(0.001f, 1000.0f)] + [DefaultValue(10.0f), Limit(0.001f, 1000.0f)] [EditorDisplay("Defaults"), EditorOrder(120), Tooltip("The default near clipping plane distance for the viewport camera.")] public float DefaultNearPlane { get; set; } = 10.0f; /// /// Gets or sets the default far clipping plane distance for the viewport camera. /// - [DefaultValue(10000.0f), Limit(10.0f)] + [DefaultValue(40000.0f), Limit(10.0f)] [EditorDisplay("Defaults"), EditorOrder(130), Tooltip("The default far clipping plane distance for the viewport camera.")] public float DefaultFarPlane { get; set; } = 40000.0f; From 0595f38fe4729448d85a1f5436e029ae75811723 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Wed, 4 Jan 2023 12:06:56 +0100 Subject: [PATCH 05/14] Fix threading issues with GPU buffers mapping --- Source/Engine/Graphics/GPUDevice.cpp | 3 ++- .../GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp | 10 ++++++++-- .../Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h | 1 + .../GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp | 3 ++- .../Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h | 2 +- Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp | 2 +- 6 files changed, 15 insertions(+), 6 deletions(-) diff --git a/Source/Engine/Graphics/GPUDevice.cpp b/Source/Engine/Graphics/GPUDevice.cpp index 27de419be..6332aa9e1 100644 --- a/Source/Engine/Graphics/GPUDevice.cpp +++ b/Source/Engine/Graphics/GPUDevice.cpp @@ -463,6 +463,8 @@ void GPUDevice::preDispose() SAFE_DELETE_GPU_RESOURCE(_res->PS_Clear); SAFE_DELETE_GPU_RESOURCE(_res->FullscreenTriangleVB); + Locker.Unlock(); + // Release GPU resources memory and unlink from device // Note: after that no GPU resources should be used/created, only deleted _resourcesLock.Lock(); @@ -472,7 +474,6 @@ void GPUDevice::preDispose() } _resources.Clear(); _resourcesLock.Unlock(); - Locker.Unlock(); } void GPUDevice::DrawBegin() diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp index ecf9e7bba..b82375cb4 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp @@ -21,6 +21,7 @@ void* GPUBufferDX11::Map(GPUResourceMapMode mode) { if (!IsInMainThread()) _device->Locker.Lock(); + ASSERT(!_mapped); D3D11_MAPPED_SUBRESOURCE map; map.pData = nullptr; @@ -46,13 +47,18 @@ void* GPUBufferDX11::Map(GPUResourceMapMode mode) const HRESULT result = _device->GetIM()->Map(_resource, 0, mapType, mapFlags, &map); if (result != DXGI_ERROR_WAS_STILL_DRAWING) LOG_DIRECTX_RESULT(result); + _mapped = map.pData != nullptr; return map.pData; } void GPUBufferDX11::Unmap() { - _device->GetIM()->Unmap(_resource, 0); - + if (_mapped) + { + _mapped = false; + _device->GetIM()->Unmap(_resource, 0); + } + if (!IsInMainThread()) _device->Locker.Unlock(); } diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h index cdae2b846..a870c4de9 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h @@ -101,6 +101,7 @@ private: ID3D11Buffer* _resource = nullptr; GPUBufferViewDX11 _view; + bool _mapped = false; public: diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp index 325528514..b82dbd9fd 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp @@ -77,9 +77,10 @@ void GPUBufferDX12::Unmap() writtenRangePtr = nullptr; break; default: - CRASH; + return; } _resource->Unmap(0, writtenRangePtr); + _lastMapMode = (GPUResourceMapMode)255; } GPUResource* GPUBufferDX12::AsGPUResource() const diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h index 0f3410b17..9c13dacd9 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h @@ -113,7 +113,7 @@ private: GPUBufferViewDX12 _view; GPUBufferDX12* _counter = nullptr; - GPUResourceMapMode _lastMapMode; + GPUResourceMapMode _lastMapMode = (GPUResourceMapMode)255; public: diff --git a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp index e67ba36b2..c7dc2f990 100644 --- a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp +++ b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp @@ -684,13 +684,13 @@ bool GlobalSurfaceAtlasPass::Render(RenderContext& renderContext, GPUContext* co if (data) { uint32 counter = data[surfaceAtlasData.CulledObjectsCounterIndex]; - _culledObjectsSizeBuffer->Unmap(); if (counter > 0) { objectsBufferCapacity = counter; notReady = false; } } + _culledObjectsSizeBuffer->Unmap(); // Allow to be ready if the buffer was already used if (notReady && surfaceAtlasData.CulledObjectsBuffer && surfaceAtlasData.CulledObjectsBuffer->IsAllocated()) From 17f9219cd0a78726c0ebed8296e23aee8f2effe4 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 9 Jan 2023 17:59:11 +0100 Subject: [PATCH 06/14] Add `TargetCompiler` to `Flax.Build` toolchains --- .../Bindings/BindingsGenerator.Cpp.cs | 4 ++-- Source/Tools/Flax.Build/Build/Toolchain.cs | 21 +++++++++++++++++++ .../Platforms/Unix/UnixToolchain.cs | 3 +++ .../Platforms/Windows/WindowsToolchainBase.cs | 3 +++ 4 files changed, 29 insertions(+), 2 deletions(-) diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs index 4cf911131..1d69efc78 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs @@ -245,7 +245,7 @@ namespace Flax.Build.Bindings public static void GenerateCppVirtualWrapperCallBaseMethod(BuildData buildData, StringBuilder contents, VirtualClassInfo classInfo, FunctionInfo functionInfo, string scriptVTableBase, string scriptVTableOffset) { contents.AppendLine(" // Prevent stack overflow by calling native base method"); - if (buildData.Toolchain is Platforms.UnixToolchain) + if (buildData.Toolchain.Compiler == TargetCompiler.Clang) { // Clang compiler // TODO: secure VTableFunctionInjector with mutex (even at cost of performance) @@ -1448,7 +1448,7 @@ namespace Flax.Build.Bindings } var t = functionInfo.IsConst ? " const" : string.Empty; contents.AppendLine($" typedef {functionInfo.ReturnType} ({classInfo.NativeName}::*{functionInfo.UniqueName}_Signature)({thunkParams}){t};"); - if (!(buildData.Toolchain is Platforms.UnixToolchain)) + if (buildData.Toolchain.Compiler != TargetCompiler.Clang) { // MSVC or other compiler contents.AppendLine($" typedef {functionInfo.ReturnType} ({classInfo.NativeName}Internal::*{functionInfo.UniqueName}_Internal_Signature)({thunkParams}){t};"); diff --git a/Source/Tools/Flax.Build/Build/Toolchain.cs b/Source/Tools/Flax.Build/Build/Toolchain.cs index 4ef77fabb..de3e0518c 100644 --- a/Source/Tools/Flax.Build/Build/Toolchain.cs +++ b/Source/Tools/Flax.Build/Build/Toolchain.cs @@ -6,6 +6,22 @@ using Flax.Build.NativeCpp; namespace Flax.Build { + /// + /// The target platform compiler types. + /// + public enum TargetCompiler + { + /// + /// Microsoft C++ (MSVC) C and C++ compiler and linker. + /// + MSVC, + + /// + /// LLVM-based open source compiler. + /// + Clang, + } + /// /// The base class for all build toolchains. /// @@ -51,6 +67,11 @@ namespace Flax.Build /// public abstract string DllImport { get; } + /// + /// Gets the compiler type. + /// + public abstract TargetCompiler Compiler { get; } + /// /// Initializes a new instance of the class. /// diff --git a/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs b/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs index 5418575c6..ca2d8b966 100644 --- a/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs @@ -220,6 +220,9 @@ namespace Flax.Build.Platforms /// public override string DllImport => ""; + /// + public override TargetCompiler Compiler => TargetCompiler.Clang; + /// public override void LogInfo() { diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs index 3919fcafa..50afc88b3 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs @@ -344,6 +344,9 @@ namespace Flax.Build.Platforms /// public override string DllImport => "__declspec(dllimport)"; + /// + public override TargetCompiler Compiler => TargetCompiler.MSVC; + /// public override void LogInfo() { From a74b847e65da6c52f09470122c13e1e918b751ee Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Mon, 9 Jan 2023 18:03:14 +0100 Subject: [PATCH 07/14] Fix `ScriptingObject::FromInterface` to return object if the pointer is already valid object --- Source/Engine/Scripting/ScriptingObject.cpp | 40 +++++++++++++-------- 1 file changed, 26 insertions(+), 14 deletions(-) diff --git a/Source/Engine/Scripting/ScriptingObject.cpp b/Source/Engine/Scripting/ScriptingObject.cpp index ee3dfc438..2ef15718f 100644 --- a/Source/Engine/Scripting/ScriptingObject.cpp +++ b/Source/Engine/Scripting/ScriptingObject.cpp @@ -108,21 +108,33 @@ ScriptingObject* ScriptingObject::FromInterface(void* interfaceObj, const Script if (type.Type != ScriptingTypes::Script) continue; auto interfaceImpl = type.GetInterface(interfaceType); - if (interfaceImpl && interfaceImpl->IsNative) + if (!interfaceImpl || !interfaceImpl->IsNative) + continue; + + // Get vtable for this type + void* vtable = type.Script.VTable; + if (!vtable && type.GetDefaultInstance()) { - ScriptingObject* predictedObj = (ScriptingObject*)((byte*)interfaceObj - interfaceImpl->VTableOffset); - void* predictedVTable = *(void***)predictedObj; - void* vtable = type.Script.VTable; - if (!vtable && type.GetDefaultInstance()) - { - // Use vtable from default instance of this type - vtable = *(void***)type.GetDefaultInstance(); - } - if (vtable == predictedVTable) - { - ASSERT(predictedObj->GetType().GetInterface(interfaceType)); - return predictedObj; - } + // Use vtable from default instance of this type + vtable = *(void***)type.GetDefaultInstance(); + } + + // Check if object interface vtable matches the type interface vtable value + ScriptingObject* predictedObj = (ScriptingObject*)((byte*)interfaceObj - interfaceImpl->VTableOffset); + void* predictedVTable = *(void***)predictedObj; + if (vtable == predictedVTable) + { + ASSERT(predictedObj->GetType().GetInterface(interfaceType)); + return predictedObj; + } + + // Check for case of passing object directly + predictedObj = (ScriptingObject*)interfaceObj; + predictedVTable = *(void***)predictedObj; + if (vtable == predictedVTable) + { + ASSERT(predictedObj->GetType().GetInterface(interfaceType)); + return predictedObj; } } } From ca2e2e1f41046ad0a6c33fa9868b3527fe962807 Mon Sep 17 00:00:00 2001 From: Wojtek Figat Date: Tue, 10 Jan 2023 11:43:39 +0100 Subject: [PATCH 08/14] Fix native scripting interface method override in managed scripts on Clang-platforms --- .../Bindings/BindingsGenerator.Cpp.cs | 79 ++++++++++++++++++- 1 file changed, 78 insertions(+), 1 deletion(-) diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs index 1d69efc78..ae60a032b 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs @@ -1500,7 +1500,10 @@ namespace Flax.Build.Bindings var langInfo = ScriptingLangInfos[i]; if (!langInfo.Enabled) continue; - contents.AppendLine(count == 0 ? " if (wrapperIndex == 0)" : $" else if (wrapperIndex == {count})"); + if (count == 0) + contents.AppendLine(" if (wrapperIndex == 0)"); + else + contents.AppendLine($" else if (wrapperIndex == {count})"); contents.AppendLine(" {"); contents.AppendLine($" auto thunkPtr = &{classInfo.NativeName}Internal::{functionInfo.UniqueName}{langInfo.VirtualWrapperMethodsPostfix};"); contents.AppendLine(" vtable[vtableIndex] = *(void**)&thunkPtr;"); @@ -1516,6 +1519,50 @@ namespace Flax.Build.Bindings scriptVTableIndex++; } + + // Native interfaces override in managed code requires vtables hacking which requires additional inject on Clang-platforms + if (buildData.Toolchain.Compiler == TargetCompiler.Clang && classInfo.IsClass && classInfo.Interfaces != null) + { + // Override vtable entries of interface methods (for each virtual function in each interface) + foreach (var interfaceInfo in classInfo.Interfaces) + { + if (interfaceInfo.Access == AccessLevel.Private) + continue; + foreach (var functionInfo in interfaceInfo.Functions) + { + if (!functionInfo.IsVirtual) + continue; + contents.AppendLine(" {"); + { + var thunkParams = string.Empty; + var separator = false; + for (var i = 0; i < functionInfo.Parameters.Count; i++) + { + var parameterInfo = functionInfo.Parameters[i]; + if (separator) + thunkParams += ", "; + separator = true; + thunkParams += parameterInfo.Type; + } + var t = functionInfo.IsConst ? " const" : string.Empty; + contents.AppendLine($" typedef {functionInfo.ReturnType} ({classInfo.NativeName}::*{functionInfo.UniqueName}_Signature)({thunkParams}){t};"); + } + contents.AppendLine($" {functionInfo.UniqueName}_Signature funcPtr = &{classInfo.NativeName}::{functionInfo.Name};"); + contents.AppendLine(" const int32 vtableIndex = GetVTableIndex(vtable, entriesCount, *(void**)&funcPtr);"); + contents.AppendLine(" if (vtableIndex >= 0 && vtableIndex < entriesCount)"); + contents.AppendLine(" {"); + contents.AppendLine($" extern void {interfaceInfo.NativeName}Internal_{functionInfo.UniqueName}_VTableOverride(void*& vtableEntry, int32 wrapperIndex);"); + contents.AppendLine($" {interfaceInfo.NativeName}Internal_{functionInfo.UniqueName}_VTableOverride(vtable[vtableIndex], wrapperIndex);"); + contents.AppendLine(" }"); + contents.AppendLine(" else"); + contents.AppendLine(" {"); + contents.AppendLine($" LOG(Error, \"Failed to find the vtable entry for method {{0}} in class {{1}}\", TEXT(\"{functionInfo.Name}\"), TEXT(\"{classInfo.Name}\"));"); + contents.AppendLine(" }"); + contents.AppendLine(" }"); + } + } + } + contents.AppendLine(" }"); contents.AppendLine(""); @@ -2318,6 +2365,36 @@ namespace Flax.Build.Bindings contents.Append('}').Append(';').AppendLine(); contents.AppendLine(); + // Native interfaces override in managed code requires vtables hacking which requires additional inject on Clang-platforms + if (buildData.Toolchain.Compiler == TargetCompiler.Clang) + { + // Generate functions that inject script wrappers into vtable entry + foreach (var functionInfo in interfaceInfo.Functions) + { + if (!functionInfo.IsVirtual) + continue; + contents.AppendLine($"void {interfaceInfo.NativeName}Internal_{functionInfo.UniqueName}_VTableOverride(void*& vtableEntry, int32 wrapperIndex)"); + contents.AppendLine("{"); + for (int i = 0, count = 0; i < ScriptingLangInfos.Count; i++) + { + var langInfo = ScriptingLangInfos[i]; + if (!langInfo.Enabled) + continue; + if (count == 0) + contents.AppendLine(" if (wrapperIndex == 0)"); + else + contents.AppendLine($" else if (wrapperIndex == {count})"); + contents.AppendLine(" {"); + contents.AppendLine($" auto thunkPtr = &{interfaceInfo.NativeName}Internal::{functionInfo.UniqueName}{langInfo.VirtualWrapperMethodsPostfix};"); + contents.AppendLine(" vtableEntry = *(void**)&thunkPtr;"); + contents.AppendLine(" }"); + count++; + } + contents.AppendLine("}"); + contents.AppendLine(""); + } + } + // Type initializer contents.Append($"ScriptingTypeInitializer {interfaceTypeNameNative}::TypeInitializer((BinaryModule*)GetBinaryModule{moduleInfo.Name}(), "); contents.Append($"StringAnsiView(\"{interfaceTypeNameManaged}\", {interfaceTypeNameManaged.Length}), &{interfaceTypeNameInternal}Internal::InitRuntime,"); From 442641eeabb303a01942d644f3cb7640dc00f43a Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 13:41:23 +0100 Subject: [PATCH 09/14] Add running Tests on Windows in Github Actions CI --- .github/workflows/tests.yml | 26 +++++++++++++++++++++++++- 1 file changed, 25 insertions(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index e326fa28d..dc258824f 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,7 +3,7 @@ on: [push, pull_request] jobs: - # Tests + # Tests on Linux tests-linux: name: Tests (Linux) runs-on: "ubuntu-20.04" @@ -36,3 +36,27 @@ jobs: run: | ./Development/Scripts/Linux/CallBuildTool.sh -build -log -arch=x64 -platform=Linux -configuration=Development -buildtargets=FlaxTestsTarget -UseLargeWorlds=true Binaries/Editor/Linux/Development/FlaxTests + + # Tests on Windows + tests-windows: + name: Tests (Windows) + runs-on: "windows-2019" + steps: + - name: Checkout repo + uses: actions/checkout@v3 + - name: Checkout LFS + run: | + git lfs version + git lfs pull + - name: Build + run: | + .\GenerateProjectFiles.bat -vs2019 + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Development -buildtargets=FlaxTestsTarget + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Debug -buildtargets=FlaxEditor -BuildBindingsOnly + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Debug -buildtargets="FlaxEngine.Tests" + .\Development\Scripts\Windows\CallBuildTool.bat -build -log -arch=x64 -platform=Windows -configuration=Debug -buildtargets="Flax.Build.Tests" + - name: Test + run: | + Binaries\Editor\Win64\Development\FlaxTests.exe + Source\Platforms\DotNet\NUnit\nunit3-console.exe Binaries\Tools\FlaxEngine.Tests.dll --framework=net-4.5.2 + Source\Platforms\DotNet\NUnit\nunit3-console.exe Binaries\Tools\Flax.Build.Tests.dll --framework=net-4.5.2 From 4d6f7589943b7c5e621534a4872aada5aa3bbf9f Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 13:41:58 +0100 Subject: [PATCH 10/14] Update NUnit to `3.16.1` --- .../Platforms/DotNet/NUnit/nunit.engine.api.dll | 2 +- .../DotNet/NUnit/nunit.engine.core.dll | 4 ++-- Source/Platforms/DotNet/NUnit/nunit.engine.dll | 2 +- .../Platforms/DotNet/NUnit/nunit3-console.exe | 4 ++-- .../DotNet/NUnit/nunit3-console.exe.config | 17 +++++++++++++++++ .../NUnit/testcentric.engine.metadata.dll | 4 ++-- 6 files changed, 25 insertions(+), 8 deletions(-) diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll index a45e82745..8097fec02 100644 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll +++ b/Source/Platforms/DotNet/NUnit/nunit.engine.api.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6a0a660f2dccf4e3afd4c0bbe505f37b9886417bbd15934b967b5531d92c9f5 +oid sha256:695191d3cc03eea28fee47cc265d977a8cb884bf0a8e8403a8006c0141edbca1 size 18432 diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll index 935b70004..e70119fd5 100644 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll +++ b/Source/Platforms/DotNet/NUnit/nunit.engine.core.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b41b23f245b05e16838d0fa6dfba0e378c9f87f6017ce501871f324c85f9a0ac -size 107520 +oid sha256:56d27370c602bf1b6f4cb1d14ac634e71d693c7cea3e256d6d578f057509c0fa +size 111616 diff --git a/Source/Platforms/DotNet/NUnit/nunit.engine.dll b/Source/Platforms/DotNet/NUnit/nunit.engine.dll index 4c113f5fe..efe00b34b 100644 --- a/Source/Platforms/DotNet/NUnit/nunit.engine.dll +++ b/Source/Platforms/DotNet/NUnit/nunit.engine.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4d41aada1f54dc87a4b26db80a3a04ef879a76c55cddfcd42586ee28565b98ae +oid sha256:2c4873d02f61aa83738c9265b6f11a5ea13b0620fa2fb331a40e3ceb2e191599 size 65024 diff --git a/Source/Platforms/DotNet/NUnit/nunit3-console.exe b/Source/Platforms/DotNet/NUnit/nunit3-console.exe index 107e5526f..f17d502cb 100644 --- a/Source/Platforms/DotNet/NUnit/nunit3-console.exe +++ b/Source/Platforms/DotNet/NUnit/nunit3-console.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:44535aeab2d5bf758bda9ed7783d8afdb8494f7518f9e71004ae857e7c958a97 -size 166912 +oid sha256:3a83a53495d68679a5edb1b8ca72fc8ca44e571d6754015bd74d82ed69ee88d4 +size 165376 diff --git a/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config b/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config index 086bd73df..bf784cbb9 100644 --- a/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config +++ b/Source/Platforms/DotNet/NUnit/nunit3-console.exe.config @@ -1,12 +1,29 @@ + + + + + + + \ No newline at end of file diff --git a/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll b/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll index f2f4e639f..8d16a9559 100644 --- a/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll +++ b/Source/Platforms/DotNet/NUnit/testcentric.engine.metadata.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9b6975c9821f1bd152de573516847cf0d7bfde33a7dae52553e8149a0cd490e4 -size 177152 +oid sha256:b08bf44fd3270243def47673d606959915ba723db7e694e58cb44a92145b0ebb +size 176640 From 79864ffd5ff53c9959a0e38823e2a4db4ef978a5 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 13:51:29 +0100 Subject: [PATCH 11/14] Change missing VulkanSDK error to be logged once per session --- Source/ThirdParty/volk/volk.Build.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Source/ThirdParty/volk/volk.Build.cs b/Source/ThirdParty/volk/volk.Build.cs index 21ca2a75e..356afaf92 100644 --- a/Source/ThirdParty/volk/volk.Build.cs +++ b/Source/ThirdParty/volk/volk.Build.cs @@ -9,6 +9,8 @@ using Flax.Build.NativeCpp; /// public class volk : ThirdPartyModule { + private bool _missingSDKError; + /// public override void Init() { @@ -52,7 +54,7 @@ public class volk : ThirdPartyModule } else { - Log.Error("Missing VulkanSDK."); + Log.ErrorOnce("Missing VulkanSDK.", ref _missingSDKError); } } } From 6b076e4fd4b56e8cb673b062e85e9950783cdd6f Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 14:26:26 +0100 Subject: [PATCH 12/14] Update NUnit to `3.16.1` --- .../DotNet/NUnit/agents/net40/nunit-agent.exe | 4 +- .../NUnit/agents/net40/nunit.agent.addins | 1 - .../NUnit/agents/net40/nunit.engine.api.dll | 2 +- .../NUnit/agents/net40/nunit.engine.core.dll | 4 +- .../NUnit/agents/net462/nunit-agent.exe | 3 ++ .../agents/net462/nunit-agent.exe.config | 41 +++++++++++++++++++ .../NUnit/agents/net462/nunit.engine.api.dll | 3 ++ .../NUnit/agents/net462/nunit.engine.core.dll | 3 ++ .../net462/testcentric.engine.metadata.dll | 3 ++ 9 files changed, 58 insertions(+), 6 deletions(-) delete mode 100644 Source/Platforms/DotNet/NUnit/agents/net40/nunit.agent.addins create mode 100644 Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe create mode 100644 Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe.config create mode 100644 Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.api.dll create mode 100644 Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.core.dll create mode 100644 Source/Platforms/DotNet/NUnit/agents/net462/testcentric.engine.metadata.dll diff --git a/Source/Platforms/DotNet/NUnit/agents/net40/nunit-agent.exe b/Source/Platforms/DotNet/NUnit/agents/net40/nunit-agent.exe index dd1c1932f..7bc50563f 100644 --- a/Source/Platforms/DotNet/NUnit/agents/net40/nunit-agent.exe +++ b/Source/Platforms/DotNet/NUnit/agents/net40/nunit-agent.exe @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e7b4b2dbd4ffa955a1ae369859816f734969e0d7f6e45f38ffb00e79e11a0315 -size 73728 +oid sha256:a8a26526f2be945e95f4265f7fc18de2f88a2de24562273e69dba98790dd2dd1 +size 73216 diff --git a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.agent.addins b/Source/Platforms/DotNet/NUnit/agents/net40/nunit.agent.addins deleted file mode 100644 index 1558d5f75..000000000 --- a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.agent.addins +++ /dev/null @@ -1 +0,0 @@ -../../ # refer to the directory containing the engine and runner diff --git a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.api.dll b/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.api.dll index a45e82745..10ebce4cf 100644 --- a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.api.dll +++ b/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.api.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f6a0a660f2dccf4e3afd4c0bbe505f37b9886417bbd15934b967b5531d92c9f5 +oid sha256:20a0a64fb8bc3c178bb9671bc5195194652506c8a2322446f54f9e1d0a14d6ba size 18432 diff --git a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.core.dll b/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.core.dll index 935b70004..8eff3bb65 100644 --- a/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.core.dll +++ b/Source/Platforms/DotNet/NUnit/agents/net40/nunit.engine.core.dll @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b41b23f245b05e16838d0fa6dfba0e378c9f87f6017ce501871f324c85f9a0ac -size 107520 +oid sha256:4f886039e18809ae43587d2fbcb6f6bc7d308b4d49e595f5e4fcb253938eb160 +size 108032 diff --git a/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe b/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe new file mode 100644 index 000000000..b58f57419 --- /dev/null +++ b/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:d2850e815cd4d4fb57de86e18e5556b64e8f76dd02685eb647d7ef14939024cc +size 73216 diff --git a/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe.config b/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe.config new file mode 100644 index 000000000..f72511441 --- /dev/null +++ b/Source/Platforms/DotNet/NUnit/agents/net462/nunit-agent.exe.config @@ -0,0 +1,41 @@ + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.api.dll b/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.api.dll new file mode 100644 index 000000000..8097fec02 --- /dev/null +++ b/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.api.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:695191d3cc03eea28fee47cc265d977a8cb884bf0a8e8403a8006c0141edbca1 +size 18432 diff --git a/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.core.dll b/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.core.dll new file mode 100644 index 000000000..e70119fd5 --- /dev/null +++ b/Source/Platforms/DotNet/NUnit/agents/net462/nunit.engine.core.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:56d27370c602bf1b6f4cb1d14ac634e71d693c7cea3e256d6d578f057509c0fa +size 111616 diff --git a/Source/Platforms/DotNet/NUnit/agents/net462/testcentric.engine.metadata.dll b/Source/Platforms/DotNet/NUnit/agents/net462/testcentric.engine.metadata.dll new file mode 100644 index 000000000..8d16a9559 --- /dev/null +++ b/Source/Platforms/DotNet/NUnit/agents/net462/testcentric.engine.metadata.dll @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:b08bf44fd3270243def47673d606959915ba723db7e694e58cb44a92145b0ebb +size 176640 From e7f40a4c0e7712e90d4593380e61028036dbfb05 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 14:33:51 +0100 Subject: [PATCH 13/14] Fix unit test if running under .net 4.6.2 unit test agent --- Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs b/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs index 5ff507e34..6ccf95c0a 100644 --- a/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs +++ b/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs @@ -1,5 +1,8 @@ // Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +using System; +using System.Globalization; +using System.Threading; using NUnit.Framework; namespace FlaxEngine.Tests @@ -16,6 +19,8 @@ namespace FlaxEngine.Tests [Test] public void TestFormatFloat() { + Thread.CurrentThread.CurrentCulture = CultureInfo.InvariantCulture; + Assert.AreEqual("0", FlaxEditor.Utilities.Utils.FormatFloat(0.0f)); Assert.AreEqual("0", FlaxEditor.Utilities.Utils.FormatFloat(0.0d)); Assert.AreEqual("0.1234", FlaxEditor.Utilities.Utils.FormatFloat(0.1234f)); @@ -37,8 +42,8 @@ namespace FlaxEngine.Tests { double value1 = sign * value; string text = FlaxEditor.Utilities.Utils.FormatFloat(value1); - Assert.IsFalse(text.Contains("e")); - Assert.IsFalse(text.Contains("E")); + Assert.IsFalse(text.IndexOf("e", StringComparison.Ordinal) != -1); + Assert.IsFalse(text.IndexOf("E", StringComparison.Ordinal) != -1); double value2 = double.Parse(text); Assert.AreEqual(value2, value1); } @@ -49,8 +54,8 @@ namespace FlaxEngine.Tests { float value1 = (float)(sign * value); string text = FlaxEditor.Utilities.Utils.FormatFloat(value1); - Assert.IsFalse(text.Contains("e")); - Assert.IsFalse(text.Contains("E")); + Assert.IsFalse(text.IndexOf("e", StringComparison.Ordinal) != -1); + Assert.IsFalse(text.IndexOf("E", StringComparison.Ordinal) != -1); float value2 = float.Parse(text); Assert.AreEqual(value2, value1); } From 9626e9bbb6e261ee6a1ec2f5f2d93b0ea197a2f9 Mon Sep 17 00:00:00 2001 From: Wojciech Figat Date: Tue, 10 Jan 2023 15:29:37 +0100 Subject: [PATCH 14/14] Update copyright year --- Content/Shaders/AtmospherePreCompute.flax | 4 ++-- Content/Shaders/BakeLightmap.flax | 4 ++-- Content/Shaders/BitonicSort.flax | 4 ++-- Content/Shaders/ColorGrading.flax | 4 ++-- Content/Shaders/DebugDraw.flax | 4 ++-- Content/Shaders/DepthOfField.flax | 4 ++-- Content/Shaders/Editor/LightmapUVsDensity.flax | 4 ++-- Content/Shaders/Editor/MaterialComplexity.flax | 4 ++-- Content/Shaders/Editor/QuadOverdraw.flax | 4 ++-- Content/Shaders/Editor/VertexColors.flax | 4 ++-- Content/Shaders/EyeAdaptation.flax | 4 ++-- Content/Shaders/FXAA.flax | 4 ++-- Content/Shaders/Fog.flax | 4 ++-- Content/Shaders/Forward.flax | 4 ++-- Content/Shaders/GBuffer.flax | 4 ++-- Content/Shaders/GI/DDGI.flax | 4 ++-- Content/Shaders/GI/GlobalSurfaceAtlas.flax | 4 ++-- Content/Shaders/GPUParticlesSorting.flax | 4 ++-- Content/Shaders/GUI.flax | 4 ++-- Content/Shaders/GlobalSignDistanceField.flax | 4 ++-- Content/Shaders/Histogram.flax | 4 ++-- Content/Shaders/Lights.flax | 4 ++-- Content/Shaders/MotionBlur.flax | 4 ++-- Content/Shaders/MultiScaler.flax | 4 ++-- Content/Shaders/PostProcessing.flax | 4 ++-- Content/Shaders/ProbesFilter.flax | 4 ++-- Content/Shaders/Quad.flax | 4 ++-- Content/Shaders/Reflections.flax | 4 ++-- Content/Shaders/SMAA.flax | 4 ++-- Content/Shaders/SSAO.flax | 4 ++-- Content/Shaders/SSR.flax | 4 ++-- Content/Shaders/Shadows.flax | 4 ++-- Content/Shaders/Sky.flax | 4 ++-- Content/Shaders/TAA.flax | 4 ++-- Content/Shaders/VolumetricFog.flax | 4 ++-- Development/Scripts/Linux/CallBuildTool.sh | 2 +- Development/Scripts/Mac/CallBuildTool.sh | 2 +- Development/Scripts/Mac/XCodeBuild.sh | 2 +- Development/Scripts/Windows/CallBuildTool.bat | 2 +- Development/Scripts/Windows/GetMSBuildPath.bat | 2 +- Flax.flaxproj | 2 +- GenerateProjectFiles.bat | 2 +- GenerateProjectFiles.command | 2 +- GenerateProjectFiles.sh | 2 +- PackageAll.bat | 2 +- PackageEditor.bat | 2 +- PackageEditor.command | 2 +- PackageEditor.sh | 2 +- PackagePlatforms.bat | 2 +- PackagePlatforms.command | 2 +- PackagePlatforms.sh | 2 +- RegisterEngineLocation.bat | 2 +- Source/Editor/Analytics/EditorAnalytics.cpp | 2 +- Source/Editor/Analytics/EditorAnalytics.h | 2 +- Source/Editor/Analytics/EditorAnalyticsController.cpp | 2 +- Source/Editor/Analytics/EditorAnalyticsController.h | 2 +- Source/Editor/Content/AssetItemConverter.cs | 2 +- Source/Editor/Content/Create/CreateFileEntry.cs | 2 +- Source/Editor/Content/Create/CreateFilesDialog.cs | 2 +- Source/Editor/Content/Create/ParticleEmitterCreateEntry.cs | 2 +- Source/Editor/Content/Create/SettingsCreateEntry.cs | 2 +- Source/Editor/Content/Create/VisualScriptCreateEntry.cs | 2 +- Source/Editor/Content/GUI/ContentNavigationButton.cs | 2 +- Source/Editor/Content/GUI/ContentView.DragDrop.cs | 2 +- Source/Editor/Content/GUI/ContentView.cs | 2 +- Source/Editor/Content/IFileEntryAction.cs | 2 +- Source/Editor/Content/Import/AssetImportEntry.cs | 2 +- Source/Editor/Content/Import/AudioImportSettings.cs | 2 +- Source/Editor/Content/Import/FolderImportEntry.cs | 2 +- Source/Editor/Content/Import/ImportFileEntry.cs | 2 +- Source/Editor/Content/Import/ImportFilesDialog.cs | 2 +- Source/Editor/Content/Import/ModelImportEntry.cs | 2 +- Source/Editor/Content/Import/Request.cs | 2 +- Source/Editor/Content/Import/TextureImportEntry.cs | 2 +- Source/Editor/Content/Items/AssetItem.cs | 2 +- Source/Editor/Content/Items/BinaryAssetItem.cs | 2 +- Source/Editor/Content/Items/CSharpScriptItem.cs | 2 +- Source/Editor/Content/Items/ContentFolder.cs | 2 +- Source/Editor/Content/Items/ContentItem.cs | 2 +- Source/Editor/Content/Items/CppScriptItem.cs | 2 +- Source/Editor/Content/Items/FileItem.cs | 2 +- Source/Editor/Content/Items/JsonAssetItem.cs | 2 +- Source/Editor/Content/Items/NewItem.cs | 2 +- Source/Editor/Content/Items/PrefabItem.cs | 2 +- Source/Editor/Content/Items/SceneItem.cs | 2 +- Source/Editor/Content/Items/ScriptItem.cs | 2 +- Source/Editor/Content/Items/ShaderSourceItem.cs | 2 +- Source/Editor/Content/Items/VisualScriptItem.cs | 2 +- Source/Editor/Content/PreviewsCache.cpp | 2 +- Source/Editor/Content/PreviewsCache.cs | 2 +- Source/Editor/Content/PreviewsCache.h | 2 +- Source/Editor/Content/Proxy/AnimationGraphFunctionProxy.cs | 2 +- Source/Editor/Content/Proxy/AnimationGraphProxy.cs | 2 +- Source/Editor/Content/Proxy/AnimationProxy.cs | 2 +- Source/Editor/Content/Proxy/AssetProxy.cs | 2 +- Source/Editor/Content/Proxy/AudioClipProxy.cs | 2 +- Source/Editor/Content/Proxy/BinaryAssetProxy.cs | 2 +- Source/Editor/Content/Proxy/CSharpScriptProxy.cs | 2 +- Source/Editor/Content/Proxy/CollisionDataProxy.cs | 2 +- Source/Editor/Content/Proxy/ContentProxy.cs | 2 +- Source/Editor/Content/Proxy/CppProxy.cs | 2 +- Source/Editor/Content/Proxy/CubeTextureProxy.cs | 2 +- Source/Editor/Content/Proxy/FileProxy.cs | 2 +- Source/Editor/Content/Proxy/FontProxy.cs | 2 +- Source/Editor/Content/Proxy/GameplayGlobalsProxy.cs | 2 +- Source/Editor/Content/Proxy/IESProfileProxy.cs | 2 +- Source/Editor/Content/Proxy/JsonAssetProxy.cs | 2 +- Source/Editor/Content/Proxy/LocalizedStringTableProxy.cs | 2 +- Source/Editor/Content/Proxy/MaterialFunctionProxy.cs | 2 +- Source/Editor/Content/Proxy/MaterialInstanceProxy.cs | 2 +- Source/Editor/Content/Proxy/MaterialProxy.cs | 2 +- Source/Editor/Content/Proxy/ModelProxy.cs | 2 +- Source/Editor/Content/Proxy/ParticleEmitterFunctionProxy.cs | 2 +- Source/Editor/Content/Proxy/ParticleEmitterProxy.cs | 2 +- Source/Editor/Content/Proxy/ParticleSystemProxy.cs | 2 +- Source/Editor/Content/Proxy/PrefabProxy.cs | 2 +- Source/Editor/Content/Proxy/PreviewsCacheProxy.cs | 2 +- Source/Editor/Content/Proxy/SceneAnimationProxy.cs | 2 +- Source/Editor/Content/Proxy/SceneProxy.cs | 2 +- Source/Editor/Content/Proxy/ScriptProxy.cs | 2 +- Source/Editor/Content/Proxy/SettingsProxy.cs | 2 +- Source/Editor/Content/Proxy/ShaderProxy.cs | 2 +- Source/Editor/Content/Proxy/ShaderSourceProxy.cs | 2 +- Source/Editor/Content/Proxy/SkeletonMaskProxy.cs | 2 +- Source/Editor/Content/Proxy/SkinnedModelProxy.cs | 2 +- Source/Editor/Content/Proxy/SpriteAtlasProxy.cs | 2 +- Source/Editor/Content/Proxy/TextureProxy.cs | 2 +- Source/Editor/Content/Proxy/VisualScriptProxy.cs | 2 +- Source/Editor/Content/Settings/BuildPreset.cs | 2 +- Source/Editor/Content/Settings/BuildTarget.cs | 2 +- Source/Editor/Content/Thumbnails/ThumbnailRequest.cs | 2 +- Source/Editor/Content/Thumbnails/ThumbnailsModule.cs | 2 +- Source/Editor/Content/Tree/ContentTreeNode.cs | 2 +- Source/Editor/Content/Tree/MainContentTreeNode.cs | 2 +- Source/Editor/Content/Tree/ProjectTreeNode.cs | 2 +- Source/Editor/Content/Tree/RootContentTreeNode.cs | 2 +- Source/Editor/Cooker/CookingData.h | 2 +- Source/Editor/Cooker/GameCooker.cpp | 2 +- Source/Editor/Cooker/GameCooker.cs | 2 +- Source/Editor/Cooker/GameCooker.h | 2 +- Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.cpp | 2 +- Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.h | 2 +- Source/Editor/Cooker/Steps/CollectAssetsStep.cpp | 2 +- Source/Editor/Cooker/Steps/CollectAssetsStep.h | 2 +- Source/Editor/Cooker/Steps/CompileScriptsStep.cpp | 2 +- Source/Editor/Cooker/Steps/CompileScriptsStep.h | 2 +- Source/Editor/Cooker/Steps/CookAssetsStep.cpp | 2 +- Source/Editor/Cooker/Steps/CookAssetsStep.h | 2 +- Source/Editor/Cooker/Steps/DeployDataStep.cpp | 2 +- Source/Editor/Cooker/Steps/DeployDataStep.h | 2 +- Source/Editor/Cooker/Steps/PostProcessStep.cpp | 2 +- Source/Editor/Cooker/Steps/PostProcessStep.h | 2 +- Source/Editor/Cooker/Steps/PrecompileAssembliesStep.cpp | 2 +- Source/Editor/Cooker/Steps/PrecompileAssembliesStep.h | 2 +- Source/Editor/Cooker/Steps/ValidateStep.cpp | 2 +- Source/Editor/Cooker/Steps/ValidateStep.h | 2 +- Source/Editor/CustomEditorWindow.cs | 2 +- Source/Editor/CustomEditors/CustomEditor.cs | 2 +- Source/Editor/CustomEditors/CustomEditorPresenter.cs | 2 +- Source/Editor/CustomEditors/CustomEditorsUtil.cpp | 2 +- Source/Editor/CustomEditors/CustomEditorsUtil.cs | 2 +- Source/Editor/CustomEditors/CustomEditorsUtil.h | 2 +- Source/Editor/CustomEditors/Dedicated/ActorEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/CurveObjectEditor.cs | 2 +- .../Editor/CustomEditors/Dedicated/EnvironmentProbeEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/FontReferenceEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/LayersMaskEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/LayersMatrixEditor.cs | 2 +- .../CustomEditors/Dedicated/LocalizationSettingsEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/NavAgentMaskEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/ParticleEffectEditor.cs | 2 +- .../Editor/CustomEditors/Dedicated/PhysicalMaterialEditor.cs | 2 +- .../CustomEditors/Dedicated/PostProcessSettingsEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/RagdollEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/SkyLightEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/SplineEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/TerrainEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/TextureGroupEditor.cs | 2 +- Source/Editor/CustomEditors/Dedicated/UIControlEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ActorLayerEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ActorStaticFlagsEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ActorTagEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ActorTransformEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ArrayEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/AssetRefEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/BooleanEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/CollectionEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ColorEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ColorTrackball.cs | 2 +- Source/Editor/CustomEditors/Editors/CultureInfoEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/DictionaryEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/DoubleEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/EnumEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/FlaxObjectRefEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/FloatEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/GenericEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/GuidEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/IBrushEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/IntegerEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ListEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/LocalizedStringEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/MarginEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/MatrixEditor.cs | 2 +- .../Editor/CustomEditors/Editors/ModelInstanceEntryEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/ObjectSwitcherEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/QuaternionEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/SkeletonNodeEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/SpriteHandleEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/StringEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/StyleEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/TypeEditor.cs | 2 +- Source/Editor/CustomEditors/Editors/Vector2Editor.cs | 2 +- Source/Editor/CustomEditors/Editors/Vector3Editor.cs | 2 +- Source/Editor/CustomEditors/Editors/Vector4Editor.cs | 2 +- Source/Editor/CustomEditors/Editors/VersionEditor.cs | 2 +- Source/Editor/CustomEditors/Elements/ButtonElement.cs | 2 +- Source/Editor/CustomEditors/Elements/CheckBoxElement.cs | 2 +- Source/Editor/CustomEditors/Elements/ComboBoxElement.cs | 2 +- .../Editor/CustomEditors/Elements/Container/CustomElement.cs | 2 +- .../Editor/CustomEditors/Elements/Container/GroupElement.cs | 2 +- .../Elements/Container/HorizontalPanelElement.cs | 2 +- .../CustomEditors/Elements/Container/PropertiesListElement.cs | 2 +- .../Editor/CustomEditors/Elements/Container/SpaceElement.cs | 2 +- Source/Editor/CustomEditors/Elements/Container/TreeElement.cs | 2 +- .../CustomEditors/Elements/Container/TreeNodeElement.cs | 2 +- .../CustomEditors/Elements/Container/VerticalPanelElement.cs | 2 +- Source/Editor/CustomEditors/Elements/DoubleValueElement.cs | 2 +- Source/Editor/CustomEditors/Elements/EnumElement.cs | 2 +- Source/Editor/CustomEditors/Elements/FloatValueElement.cs | 2 +- Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs | 2 +- Source/Editor/CustomEditors/Elements/IIntegerValueEditor.cs | 2 +- Source/Editor/CustomEditors/Elements/ImageElement.cs | 2 +- Source/Editor/CustomEditors/Elements/IntegerValueElement.cs | 2 +- Source/Editor/CustomEditors/Elements/LabelElement.cs | 2 +- Source/Editor/CustomEditors/Elements/SliderElement.cs | 2 +- Source/Editor/CustomEditors/Elements/TextBoxElement.cs | 2 +- Source/Editor/CustomEditors/GUI/CheckablePropertyNameLabel.cs | 2 +- Source/Editor/CustomEditors/GUI/ClickablePropertyNameLabel.cs | 2 +- Source/Editor/CustomEditors/GUI/DraggablePropertyNameLabel.cs | 2 +- Source/Editor/CustomEditors/GUI/PropertiesList.cs | 2 +- Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs | 2 +- Source/Editor/CustomEditors/LayoutElement.cs | 2 +- Source/Editor/CustomEditors/LayoutElementsContainer.cs | 2 +- Source/Editor/CustomEditors/SyncPointEditor.cs | 2 +- Source/Editor/CustomEditors/Values/CustomValueContainer.cs | 2 +- .../Editor/CustomEditors/Values/DictionaryValueContainer.cs | 2 +- Source/Editor/CustomEditors/Values/ListValueContainer.cs | 2 +- Source/Editor/CustomEditors/Values/ReadOnlyValueContainer.cs | 2 +- Source/Editor/CustomEditors/Values/ValueContainer.cs | 2 +- Source/Editor/Editor.Build.cs | 2 +- Source/Editor/Editor.cpp | 2 +- Source/Editor/Editor.cs | 2 +- Source/Editor/Editor.h | 2 +- Source/Editor/EditorAssets.cs | 2 +- Source/Editor/EditorIcons.cs | 2 +- Source/Editor/GUI/AssetPicker.cs | 2 +- Source/Editor/GUI/ClickableLabel.cs | 2 +- Source/Editor/GUI/ColumnDefinition.cs | 2 +- Source/Editor/GUI/ComboBox.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenu.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenuBase.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenuButton.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenuChildMenu.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenuItem.cs | 2 +- Source/Editor/GUI/ContextMenu/ContextMenuSeparator.cs | 2 +- Source/Editor/GUI/CurveEditor.Access.cs | 2 +- Source/Editor/GUI/CurveEditor.Base.cs | 2 +- Source/Editor/GUI/CurveEditor.Contents.cs | 2 +- Source/Editor/GUI/CurveEditor.cs | 2 +- Source/Editor/GUI/Dialogs/ColorPickerDialog.cs | 2 +- Source/Editor/GUI/Dialogs/ColorSelector.cs | 2 +- Source/Editor/GUI/Dialogs/Dialog.cs | 2 +- Source/Editor/GUI/Docking/DockHintWindow.cs | 2 +- Source/Editor/GUI/Docking/DockPanel.cs | 2 +- Source/Editor/GUI/Docking/DockPanelProxy.cs | 2 +- Source/Editor/GUI/Docking/DockWindow.cs | 2 +- Source/Editor/GUI/Docking/FloatWindowDockPanel.cs | 2 +- Source/Editor/GUI/Docking/MasterDockPanel.cs | 2 +- Source/Editor/GUI/Drag/DragActorType.cs | 2 +- Source/Editor/GUI/Drag/DragActors.cs | 2 +- Source/Editor/GUI/Drag/DragAssets.cs | 2 +- Source/Editor/GUI/Drag/DragEventArgs.cs | 2 +- Source/Editor/GUI/Drag/DragHandlers.cs | 2 +- Source/Editor/GUI/Drag/DragHelper.cs | 2 +- Source/Editor/GUI/Drag/DragItems.cs | 2 +- Source/Editor/GUI/Drag/DragNames.cs | 2 +- Source/Editor/GUI/Drag/DragScriptItems.cs | 2 +- Source/Editor/GUI/Drag/DragScripts.cs | 2 +- Source/Editor/GUI/EnumComboBox.cs | 2 +- Source/Editor/GUI/IKeyframesEditor.cs | 2 +- Source/Editor/GUI/IKeyframesEditorContext.cs | 2 +- Source/Editor/GUI/Input/ColorValueBox.cs | 2 +- Source/Editor/GUI/Input/DoubleValueBox.cs | 2 +- Source/Editor/GUI/Input/FloatValueBox.cs | 2 +- Source/Editor/GUI/Input/IntValueBox.cs | 2 +- Source/Editor/GUI/Input/LongValueBox.cs | 2 +- Source/Editor/GUI/Input/SliderControl.cs | 2 +- Source/Editor/GUI/Input/UIntValueBox.cs | 2 +- Source/Editor/GUI/Input/ULongValueBox.cs | 2 +- Source/Editor/GUI/Input/ValueBox.cs | 2 +- Source/Editor/GUI/ItemsListContextMenu.cs | 2 +- Source/Editor/GUI/KeyframesEditorUtils.cs | 2 +- Source/Editor/GUI/MainMenu.cs | 2 +- Source/Editor/GUI/MainMenuButton.cs | 2 +- Source/Editor/GUI/NavigationBar.cs | 2 +- Source/Editor/GUI/NavigationButton.cs | 2 +- Source/Editor/GUI/PlatformSelector.cs | 2 +- Source/Editor/GUI/Popups/ActorSearchPopup.cs | 2 +- Source/Editor/GUI/Popups/AssetSearchPopup.cs | 2 +- Source/Editor/GUI/Popups/RenamePopup.cs | 2 +- Source/Editor/GUI/Popups/ScriptSearchPopup.cs | 2 +- Source/Editor/GUI/Popups/TypeSearchPopup.cs | 2 +- Source/Editor/GUI/PrefabDiffContextMenu.cs | 2 +- Source/Editor/GUI/Row.cs | 2 +- Source/Editor/GUI/StatusBar.cs | 2 +- Source/Editor/GUI/StyleValueEditor.cs | 2 +- Source/Editor/GUI/Table.cs | 2 +- Source/Editor/GUI/Tabs/Tab.cs | 2 +- Source/Editor/GUI/Tabs/Tabs.cs | 2 +- Source/Editor/GUI/Timeline/AnimationTimeline.cs | 2 +- Source/Editor/GUI/Timeline/GUI/Background.cs | 2 +- Source/Editor/GUI/Timeline/GUI/BackgroundArea.cs | 2 +- Source/Editor/GUI/Timeline/GUI/GradientEditor.cs | 2 +- Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs | 2 +- Source/Editor/GUI/Timeline/GUI/PositionHandle.cs | 2 +- Source/Editor/GUI/Timeline/GUI/TimelineEdge.cs | 2 +- Source/Editor/GUI/Timeline/Media.cs | 2 +- Source/Editor/GUI/Timeline/ParticleSystemTimeline.cs | 2 +- Source/Editor/GUI/Timeline/SceneAnimationTimeline.cs | 2 +- Source/Editor/GUI/Timeline/Timeline.Data.cs | 2 +- Source/Editor/GUI/Timeline/Timeline.UI.cs | 2 +- Source/Editor/GUI/Timeline/Timeline.cs | 2 +- Source/Editor/GUI/Timeline/Track.cs | 2 +- Source/Editor/GUI/Timeline/TrackArchetype.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ActorTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/AnimationChannelTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/AnimationEventTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/AudioTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/CameraCutTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ConductorTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/CurvePropertyTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/EventTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/FolderTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/KeyframesPropertyTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/MemberTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/NestedAnimationTrack.cs | 2 +- .../Editor/GUI/Timeline/Tracks/NestedSceneAnimationTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ObjectPropertyTrack.cs | 2 +- .../GUI/Timeline/Tracks/ObjectReferencePropertyTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ObjectTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ParticleEmitterTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/PostProcessMaterialTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ScreenFadeTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/ScriptTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/SingleMediaAssetTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/SingleMediaTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/StringPropertyTrack.cs | 2 +- Source/Editor/GUI/Timeline/Tracks/StructPropertyTrack.cs | 2 +- Source/Editor/GUI/Timeline/Undo/AddRemoveTrackAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/EditFpsAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/EditTimelineAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/EditTrackAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/RenameTrackAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/ReorderTrackAction.cs | 2 +- Source/Editor/GUI/Timeline/Undo/TimelineUndoBlock.cs | 2 +- Source/Editor/GUI/Timeline/Undo/TrackUndoBlock.cs | 2 +- Source/Editor/GUI/ToolStrip.cs | 2 +- Source/Editor/GUI/ToolStripButton.cs | 2 +- Source/Editor/GUI/ToolStripSeparator.cs | 2 +- Source/Editor/GUI/Tree/Tree.cs | 2 +- Source/Editor/GUI/Tree/TreeNode.cs | 2 +- Source/Editor/Gizmo/EditorPrimitives.cs | 2 +- Source/Editor/Gizmo/GizmoBase.cs | 2 +- Source/Editor/Gizmo/GizmosCollection.cs | 2 +- Source/Editor/Gizmo/GridGizmo.cs | 2 +- Source/Editor/Gizmo/IGizmoOwner.cs | 2 +- Source/Editor/Gizmo/SelectionOutline.cs | 2 +- Source/Editor/Gizmo/TransformGizmo.cs | 2 +- Source/Editor/Gizmo/TransformGizmoBase.Draw.cs | 2 +- Source/Editor/Gizmo/TransformGizmoBase.Selection.cs | 2 +- Source/Editor/Gizmo/TransformGizmoBase.Settings.cs | 2 +- Source/Editor/Gizmo/TransformGizmoBase.Types.cs | 2 +- Source/Editor/Gizmo/TransformGizmoBase.cs | 2 +- Source/Editor/History/HistoryStack.cs | 2 +- Source/Editor/History/IHistoryAction.cs | 2 +- Source/Editor/History/UndoActionObject.cs | 2 +- Source/Editor/IEditable.cs | 2 +- Source/Editor/Managed/ManagedEditor.Internal.cpp | 2 +- Source/Editor/Managed/ManagedEditor.cpp | 2 +- Source/Editor/Managed/ManagedEditor.h | 2 +- Source/Editor/Modules/ContentDatabaseModule.cs | 2 +- Source/Editor/Modules/ContentEditingModule.cs | 2 +- Source/Editor/Modules/ContentFindingModule.cs | 2 +- Source/Editor/Modules/ContentImportingModule.cs | 2 +- Source/Editor/Modules/EditorModule.cs | 2 +- Source/Editor/Modules/PrefabsModule.cs | 2 +- Source/Editor/Modules/ProgressReportingModule.cs | 2 +- Source/Editor/Modules/ProjectCacheModule.cs | 2 +- Source/Editor/Modules/SceneEditingModule.cs | 2 +- Source/Editor/Modules/SceneModule.cs | 2 +- Source/Editor/Modules/SimulationModule.cs | 2 +- .../SourceCodeEditing/CachedCustomAnimGraphNodesCollection.cs | 2 +- .../Editor/Modules/SourceCodeEditing/CachedTypesCollection.cs | 2 +- Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs | 2 +- Source/Editor/Modules/SourceCodeEditing/CodeEditingModule.cs | 2 +- .../Modules/SourceCodeEditing/DefaultSourceCodeEditor.cs | 2 +- Source/Editor/Modules/SourceCodeEditing/ISourceCodeEditor.cs | 2 +- .../Modules/SourceCodeEditing/InBuildSourceCodeEditor.cs | 2 +- Source/Editor/Modules/UIModule.cs | 2 +- Source/Editor/Modules/WindowsModule.cs | 2 +- Source/Editor/Options/Editor.cs | 2 +- Source/Editor/Options/EditorOptions.cs | 2 +- Source/Editor/Options/GeneralOptions.cs | 2 +- Source/Editor/Options/InputBinding.cs | 2 +- Source/Editor/Options/InputOptions.cs | 2 +- Source/Editor/Options/InterfaceOptions.cs | 2 +- Source/Editor/Options/OptionsModule.cs | 2 +- Source/Editor/Options/SourceCodeOptions.cs | 2 +- Source/Editor/Options/ThemeOptions.cs | 2 +- Source/Editor/Options/ViewportOptions.cs | 2 +- Source/Editor/Options/VisualOptions.cs | 2 +- Source/Editor/Plugins/EditorPlugin.cs | 2 +- Source/Editor/Plugins/PluginUtils.cs | 2 +- Source/Editor/Progress/Handlers/BakeEnvProbesProgress.cs | 2 +- Source/Editor/Progress/Handlers/BakeLightmapsProgress.cs | 2 +- Source/Editor/Progress/Handlers/BuildingGameProgress.cs | 2 +- Source/Editor/Progress/Handlers/CodeEditorOpenProgress.cs | 2 +- Source/Editor/Progress/Handlers/CompileScriptsProgress.cs | 2 +- .../Progress/Handlers/GenerateScriptsProjectFilesProgress.cs | 2 +- Source/Editor/Progress/Handlers/ImportAssetsProgress.cs | 2 +- Source/Editor/Progress/Handlers/NavMeshBuildingProgress.cs | 2 +- Source/Editor/Progress/ProgressHandler.cs | 2 +- Source/Editor/ProjectInfo.cpp | 2 +- Source/Editor/ProjectInfo.cs | 2 +- Source/Editor/ProjectInfo.h | 2 +- Source/Editor/SceneGraph/ActorChildNode.cs | 2 +- Source/Editor/SceneGraph/ActorNode.cs | 2 +- Source/Editor/SceneGraph/ActorNodeWithIcon.cs | 2 +- Source/Editor/SceneGraph/Actors/AnimatedModelNode.cs | 2 +- Source/Editor/SceneGraph/Actors/AudioListenerNode.cs | 2 +- Source/Editor/SceneGraph/Actors/AudioSourceNode.cs | 2 +- Source/Editor/SceneGraph/Actors/BoneSocketNode.cs | 2 +- Source/Editor/SceneGraph/Actors/BoxBrushNode.cs | 2 +- Source/Editor/SceneGraph/Actors/BoxColliderNode.cs | 2 +- Source/Editor/SceneGraph/Actors/BoxVolumeNode.cs | 2 +- Source/Editor/SceneGraph/Actors/CameraNode.cs | 2 +- Source/Editor/SceneGraph/Actors/ColliderNode.cs | 2 +- Source/Editor/SceneGraph/Actors/DecalNode.cs | 2 +- Source/Editor/SceneGraph/Actors/DirectionalLightNode.cs | 2 +- Source/Editor/SceneGraph/Actors/EnvironmentProbeNode.cs | 2 +- Source/Editor/SceneGraph/Actors/ExponentialHeightFogNode.cs | 2 +- Source/Editor/SceneGraph/Actors/FoliageNode.cs | 2 +- Source/Editor/SceneGraph/Actors/JointNode.cs | 2 +- Source/Editor/SceneGraph/Actors/NavLinkNode.cs | 2 +- Source/Editor/SceneGraph/Actors/NavMeshBoundsVolumeNode.cs | 2 +- Source/Editor/SceneGraph/Actors/NavModifierVolumeNode.cs | 2 +- Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs | 2 +- Source/Editor/SceneGraph/Actors/PointLightNode.cs | 2 +- Source/Editor/SceneGraph/Actors/PostFxVolumeNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SceneAnimationPlayerNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SceneNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SkyLightNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SkyNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SkyboxNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SplineNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SpotLightNode.cs | 2 +- Source/Editor/SceneGraph/Actors/SpriteRenderNode.cs | 2 +- Source/Editor/SceneGraph/Actors/StaticModelNode.cs | 2 +- Source/Editor/SceneGraph/Actors/TerrainNode.cs | 2 +- Source/Editor/SceneGraph/Actors/TextRenderNode.cs | 2 +- Source/Editor/SceneGraph/Actors/UICanvasNode.cs | 2 +- Source/Editor/SceneGraph/Actors/UIControlNode.cs | 2 +- Source/Editor/SceneGraph/GUI/ActorTreeNode.cs | 2 +- Source/Editor/SceneGraph/GUI/SceneTreeNode.cs | 2 +- Source/Editor/SceneGraph/LocalSceneGraph.cs | 2 +- Source/Editor/SceneGraph/RootNode.cs | 2 +- Source/Editor/SceneGraph/SceneGraphFactory.cs | 2 +- Source/Editor/SceneGraph/SceneGraphNode.cs | 2 +- Source/Editor/SceneGraph/SceneGraphTools.cs | 2 +- Source/Editor/Scripting/CodeEditor.cpp | 2 +- Source/Editor/Scripting/CodeEditor.h | 2 +- Source/Editor/Scripting/CodeEditors/RiderCodeEditor.cpp | 2 +- Source/Editor/Scripting/CodeEditors/RiderCodeEditor.h | 2 +- .../Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.cpp | 2 +- Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.h | 2 +- .../CodeEditors/VisualStudio/VisualStudioConnection.cpp | 2 +- .../CodeEditors/VisualStudio/VisualStudioConnection.h | 2 +- .../Scripting/CodeEditors/VisualStudio/VisualStudioEditor.cpp | 2 +- .../Scripting/CodeEditors/VisualStudio/VisualStudioEditor.h | 2 +- .../Editor/Scripting/CodeEditors/VisualStudioCodeEditor.cpp | 2 +- Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.h | 2 +- Source/Editor/Scripting/ScriptType.Custom.cs | 2 +- Source/Editor/Scripting/ScriptType.Interfaces.cs | 2 +- Source/Editor/Scripting/ScriptType.cs | 2 +- Source/Editor/Scripting/ScriptsBuilder.cpp | 2 +- Source/Editor/Scripting/ScriptsBuilder.cs | 2 +- Source/Editor/Scripting/ScriptsBuilder.h | 2 +- Source/Editor/Scripting/TypeUtils.cs | 2 +- Source/Editor/Scripting/Types.h | 2 +- Source/Editor/States/BuildingLightingState.cs | 2 +- Source/Editor/States/BuildingScenesState.cs | 2 +- Source/Editor/States/ChangingScenesState.cs | 2 +- Source/Editor/States/ClosingState.cs | 2 +- Source/Editor/States/EditingSceneState.cs | 2 +- Source/Editor/States/EditorState.cs | 2 +- Source/Editor/States/EditorStateMachine.cs | 2 +- Source/Editor/States/InvalidStateException.cs | 2 +- Source/Editor/States/LoadingState.cs | 2 +- Source/Editor/States/PlayingState.cs | 2 +- Source/Editor/States/ReloadingScriptsState.cs | 2 +- Source/Editor/Surface/AnimGraphSurface.cs | 2 +- Source/Editor/Surface/AnimationGraphFunctionSurface.cs | 2 +- Source/Editor/Surface/Archetypes/Animation.MultiBlend.cs | 2 +- Source/Editor/Surface/Archetypes/Animation.StateMachine.cs | 2 +- .../Editor/Surface/Archetypes/Animation.TransitionEditor.cs | 2 +- Source/Editor/Surface/Archetypes/Animation.cs | 2 +- Source/Editor/Surface/Archetypes/Bitwise.cs | 2 +- Source/Editor/Surface/Archetypes/Boolean.cs | 2 +- Source/Editor/Surface/Archetypes/Collections.cs | 2 +- Source/Editor/Surface/Archetypes/Comparisons.cs | 2 +- Source/Editor/Surface/Archetypes/Constants.cs | 2 +- Source/Editor/Surface/Archetypes/Custom.cs | 2 +- Source/Editor/Surface/Archetypes/Flow.cs | 2 +- Source/Editor/Surface/Archetypes/Function.cs | 2 +- Source/Editor/Surface/Archetypes/Layers.cs | 2 +- Source/Editor/Surface/Archetypes/Material.cs | 2 +- Source/Editor/Surface/Archetypes/Math.cs | 2 +- Source/Editor/Surface/Archetypes/Packing.cs | 2 +- Source/Editor/Surface/Archetypes/Parameters.cs | 2 +- Source/Editor/Surface/Archetypes/ParticleModules.cs | 2 +- Source/Editor/Surface/Archetypes/Particles.cs | 2 +- Source/Editor/Surface/Archetypes/Textures.cs | 2 +- Source/Editor/Surface/Archetypes/Tools.cs | 2 +- Source/Editor/Surface/AttributesEditor.cs | 2 +- Source/Editor/Surface/Constants.cs | 2 +- Source/Editor/Surface/ContextMenu/VisjectCM.cs | 2 +- Source/Editor/Surface/ContextMenu/VisjectCMGroup.cs | 2 +- Source/Editor/Surface/ContextMenu/VisjectCMItem.cs | 2 +- Source/Editor/Surface/Elements/ActorSelect.cs | 2 +- Source/Editor/Surface/Elements/AssetSelect.cs | 2 +- Source/Editor/Surface/Elements/BoolValue.cs | 2 +- Source/Editor/Surface/Elements/Box.cs | 2 +- Source/Editor/Surface/Elements/BoxValue.cs | 2 +- Source/Editor/Surface/Elements/ColorValue.cs | 2 +- Source/Editor/Surface/Elements/ComboBoxElement.cs | 2 +- Source/Editor/Surface/Elements/EnumValue.cs | 2 +- Source/Editor/Surface/Elements/FloatValue.cs | 2 +- Source/Editor/Surface/Elements/InputBox.cs | 2 +- Source/Editor/Surface/Elements/IntegerValue.cs | 2 +- Source/Editor/Surface/Elements/OutputBox.cs | 2 +- .../Editor/Surface/Elements/SkeletonBoneIndexSelectElement.cs | 2 +- .../Editor/Surface/Elements/SkeletonNodeNameSelectElement.cs | 2 +- Source/Editor/Surface/Elements/TextBoxView.cs | 2 +- Source/Editor/Surface/Elements/TextView.cs | 2 +- Source/Editor/Surface/Elements/UnsignedIntegerValue.cs | 2 +- Source/Editor/Surface/GUI/VisjectContextNavigationButton.cs | 2 +- Source/Editor/Surface/GroupArchetype.cs | 2 +- Source/Editor/Surface/IFunctionDependantNode.cs | 2 +- Source/Editor/Surface/IParametersDependantNode.cs | 2 +- Source/Editor/Surface/ISurfaceContext.cs | 2 +- Source/Editor/Surface/ISurfaceNodeElement.cs | 2 +- Source/Editor/Surface/IVisjectSurfaceOwner.cs | 2 +- Source/Editor/Surface/MaterialFunctionSurface.cs | 2 +- Source/Editor/Surface/MaterialSurface.cs | 2 +- Source/Editor/Surface/NodeArchetype.cs | 2 +- Source/Editor/Surface/NodeElementArchetype.cs | 2 +- Source/Editor/Surface/NodeElementType.cs | 2 +- Source/Editor/Surface/NodeFactory.cs | 2 +- Source/Editor/Surface/NodeFlags.cs | 2 +- Source/Editor/Surface/ParticleEmitterFunctionSurface.cs | 2 +- Source/Editor/Surface/ParticleEmitterSurface.cs | 2 +- Source/Editor/Surface/SurfaceComment.cs | 2 +- Source/Editor/Surface/SurfaceControl.cs | 2 +- Source/Editor/Surface/SurfaceMeta.cs | 2 +- Source/Editor/Surface/SurfaceNode.cs | 2 +- Source/Editor/Surface/SurfaceNodeElementControl.cs | 2 +- Source/Editor/Surface/SurfaceParameter.cs | 2 +- Source/Editor/Surface/SurfaceRootControl.cs | 2 +- Source/Editor/Surface/SurfaceStyle.cs | 2 +- Source/Editor/Surface/SurfaceUtils.cs | 2 +- Source/Editor/Surface/TransformCoordinateSystem.cs | 2 +- Source/Editor/Surface/Undo/AddRemoveNodeAction.cs | 2 +- Source/Editor/Surface/Undo/BoxHandle.cs | 2 +- Source/Editor/Surface/Undo/ConnectBoxesAction.cs | 2 +- Source/Editor/Surface/Undo/ContextHandle.cs | 2 +- Source/Editor/Surface/Undo/EditNodeConnections.cs | 2 +- Source/Editor/Surface/Undo/EditNodeValuesAction.cs | 2 +- Source/Editor/Surface/Undo/MoveNodesAction.cs | 2 +- Source/Editor/Surface/VisjectSurface.Connecting.cs | 2 +- Source/Editor/Surface/VisjectSurface.Context.cs | 2 +- Source/Editor/Surface/VisjectSurface.ContextMenu.cs | 2 +- Source/Editor/Surface/VisjectSurface.CopyPaste.cs | 2 +- Source/Editor/Surface/VisjectSurface.DragDrop.cs | 2 +- Source/Editor/Surface/VisjectSurface.Draw.cs | 2 +- Source/Editor/Surface/VisjectSurface.Input.cs | 2 +- Source/Editor/Surface/VisjectSurface.Paramaters.cs | 2 +- Source/Editor/Surface/VisjectSurface.Serialization.cs | 2 +- Source/Editor/Surface/VisjectSurface.cs | 2 +- Source/Editor/Surface/VisjectSurfaceContext.Serialization.cs | 2 +- Source/Editor/Surface/VisjectSurfaceContext.cs | 2 +- Source/Editor/Surface/VisjectSurfaceWindow.cs | 2 +- Source/Editor/Surface/VisualScriptSurface.cs | 2 +- Source/Editor/Tools/Foliage/Brush.cs | 2 +- Source/Editor/Tools/Foliage/EditFoliageGizmo.cs | 2 +- Source/Editor/Tools/Foliage/EditFoliageGizmoMode.cs | 2 +- Source/Editor/Tools/Foliage/EditFoliageSelectionOutline.cs | 2 +- Source/Editor/Tools/Foliage/EditTab.cs | 2 +- Source/Editor/Tools/Foliage/FoliageTab.cs | 2 +- Source/Editor/Tools/Foliage/FoliageTools.cpp | 2 +- Source/Editor/Tools/Foliage/FoliageTools.h | 2 +- Source/Editor/Tools/Foliage/FoliageTypesTab.cs | 2 +- Source/Editor/Tools/Foliage/PaintFoliageGizmo.cs | 2 +- Source/Editor/Tools/Foliage/PaintFoliageGizmoMode.cs | 2 +- Source/Editor/Tools/Foliage/PaintTab.cs | 2 +- Source/Editor/Tools/Foliage/Undo/DeleteInstanceAction.cs | 2 +- Source/Editor/Tools/Foliage/Undo/EditFoliageAction.cs | 2 +- Source/Editor/Tools/Foliage/Undo/EditInstanceAction.cs | 2 +- .../Tools/Foliage/Undo/EditSelectedInstanceIndexAction.cs | 2 +- Source/Editor/Tools/Terrain/Brushes/Brush.cs | 2 +- Source/Editor/Tools/Terrain/Brushes/CircleBrush.cs | 2 +- Source/Editor/Tools/Terrain/CarveTab.cs | 2 +- Source/Editor/Tools/Terrain/CreateTerrainDialog.cs | 2 +- Source/Editor/Tools/Terrain/EditTab.cs | 2 +- Source/Editor/Tools/Terrain/EditTerrainGizmo.cs | 2 +- Source/Editor/Tools/Terrain/EditTerrainGizmoMode.cs | 2 +- Source/Editor/Tools/Terrain/Paint/Mode.cs | 2 +- Source/Editor/Tools/Terrain/Paint/SingleLayerMode.cs | 2 +- Source/Editor/Tools/Terrain/PaintTab.cs | 2 +- Source/Editor/Tools/Terrain/PaintTerrainGizmo.cs | 2 +- Source/Editor/Tools/Terrain/PaintTerrainGizmoMode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/FlattenMode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/HolesMode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/Mode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/NoiseMode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/SculptMode.cs | 2 +- Source/Editor/Tools/Terrain/Sculpt/SmoothMode.cs | 2 +- Source/Editor/Tools/Terrain/SculptTab.cs | 2 +- Source/Editor/Tools/Terrain/SculptTerrainGizmo.cs | 2 +- Source/Editor/Tools/Terrain/SculptTerrainGizmoMode.cs | 2 +- Source/Editor/Tools/Terrain/TerrainTools.cpp | 2 +- Source/Editor/Tools/Terrain/TerrainTools.h | 2 +- .../Editor/Tools/Terrain/Undo/EditTerrainHeightMapAction.cs | 2 +- Source/Editor/Tools/Terrain/Undo/EditTerrainHolesMapAction.cs | 2 +- Source/Editor/Tools/Terrain/Undo/EditTerrainMapAction.cs | 2 +- Source/Editor/Tools/Terrain/Undo/EditTerrainSplatMapAction.cs | 2 +- Source/Editor/Tools/VertexPainting.cs | 2 +- Source/Editor/Undo/Actions/AddRemoveScriptAction.cs | 2 +- Source/Editor/Undo/Actions/BreakPrefabLinkAction.cs | 2 +- Source/Editor/Undo/Actions/ChangeScriptAction.cs | 2 +- Source/Editor/Undo/Actions/DeleteActorsAction.cs | 2 +- Source/Editor/Undo/Actions/EditSplineAction.cs | 2 +- Source/Editor/Undo/Actions/PasteActorsAction.cs | 2 +- Source/Editor/Undo/Actions/SelectionChangeAction.cs | 2 +- Source/Editor/Undo/Actions/TransformObjectsAction.cs | 2 +- Source/Editor/Undo/EditorUndo.cs | 2 +- Source/Editor/Undo/ISceneEditAction.cs | 2 +- Source/Editor/Undo/IUndoAction.cs | 2 +- Source/Editor/Undo/MultiUndoAction.cs | 2 +- Source/Editor/Undo/Undo.cs | 2 +- Source/Editor/Undo/UndoActionBase.cs | 2 +- Source/Editor/Undo/UndoBlock.cs | 2 +- Source/Editor/Undo/UndoMultiBlock.cs | 2 +- Source/Editor/Utilities/Constants.cs | 2 +- Source/Editor/Utilities/DuplicateScenes.cs | 2 +- Source/Editor/Utilities/EditorScene.cpp | 2 +- Source/Editor/Utilities/EditorScene.h | 2 +- Source/Editor/Utilities/EditorUtilities.cpp | 2 +- Source/Editor/Utilities/EditorUtilities.h | 2 +- Source/Editor/Utilities/Extensions.cs | 2 +- Source/Editor/Utilities/MemberComparison.cs | 2 +- Source/Editor/Utilities/MemberInfoPath.cs | 2 +- Source/Editor/Utilities/ObjectSnapshot.cs | 2 +- Source/Editor/Utilities/QueryFilterHelper.cs | 2 +- Source/Editor/Utilities/SelectionCache.cs | 2 +- Source/Editor/Utilities/ShuntingYardParser.cs | 2 +- Source/Editor/Utilities/Utils.cs | 2 +- Source/Editor/Utilities/VariantUtils.cs | 2 +- Source/Editor/Utilities/ViewportIconsRenderer.cpp | 2 +- Source/Editor/Utilities/ViewportIconsRenderer.h | 2 +- Source/Editor/Viewport/Cameras/ArcBallCamera.cs | 2 +- Source/Editor/Viewport/Cameras/FPSCamera.cs | 2 +- Source/Editor/Viewport/Cameras/IViewportCamera.cs | 2 +- Source/Editor/Viewport/Cameras/ViewportCamera.cs | 2 +- Source/Editor/Viewport/EditorGizmoViewport.cs | 2 +- Source/Editor/Viewport/EditorViewport.cs | 2 +- Source/Editor/Viewport/MainEditorGizmoViewport.Modes.cs | 2 +- Source/Editor/Viewport/MainEditorGizmoViewport.cs | 2 +- Source/Editor/Viewport/Modes/EditorGizmoMode.cs | 2 +- Source/Editor/Viewport/Modes/NoGizmoMode.cs | 2 +- Source/Editor/Viewport/Modes/TransformGizmoMode.cs | 2 +- Source/Editor/Viewport/PrefabWindowViewport.cs | 2 +- Source/Editor/Viewport/Previews/AnimatedModelPreview.cs | 2 +- Source/Editor/Viewport/Previews/AnimationPreview.cs | 2 +- Source/Editor/Viewport/Previews/AssetPreview.cs | 2 +- Source/Editor/Viewport/Previews/AudioClipPreview.cs | 2 +- Source/Editor/Viewport/Previews/CubeTexturePreview.cs | 2 +- Source/Editor/Viewport/Previews/IESProfilePreview.cs | 2 +- Source/Editor/Viewport/Previews/MaterialPreview.cs | 2 +- Source/Editor/Viewport/Previews/ModelBasePreview.cs | 2 +- Source/Editor/Viewport/Previews/ModelPreview.cs | 2 +- Source/Editor/Viewport/Previews/ParticleEmitterPreview.cs | 2 +- Source/Editor/Viewport/Previews/ParticleSystemPreview.cs | 2 +- Source/Editor/Viewport/Previews/PrefabPreview.cs | 2 +- Source/Editor/Viewport/Previews/TexturePreview.cs | 2 +- Source/Editor/Viewport/Widgets/ViewportWidgetButton.cs | 2 +- Source/Editor/Viewport/Widgets/ViewportWidgetsContainer.cs | 2 +- Source/Editor/ViewportDebugDrawData.cs | 2 +- Source/Editor/Windows/AboutDialog.cs | 4 ++-- Source/Editor/Windows/AssetReferencesGraphWindow.cs | 2 +- Source/Editor/Windows/Assets/AnimationGraphFunctionWindow.cs | 2 +- Source/Editor/Windows/Assets/AnimationGraphWindow.cs | 2 +- Source/Editor/Windows/Assets/AnimationWindow.cs | 2 +- Source/Editor/Windows/Assets/AssetEditorWindow.cs | 2 +- Source/Editor/Windows/Assets/AudioClipWindow.cs | 2 +- Source/Editor/Windows/Assets/CollisionDataWindow.cs | 2 +- Source/Editor/Windows/Assets/CubeTextureWindow.cs | 2 +- Source/Editor/Windows/Assets/FontWindow.cs | 2 +- Source/Editor/Windows/Assets/GameplayGlobalsWindow.cs | 2 +- Source/Editor/Windows/Assets/IESProfileWindow.cs | 2 +- Source/Editor/Windows/Assets/JsonAssetWindow.cs | 2 +- Source/Editor/Windows/Assets/LocalizedStringTableWindow.cs | 2 +- Source/Editor/Windows/Assets/MaterialFunctionWindow.cs | 2 +- Source/Editor/Windows/Assets/MaterialInstanceWindow.cs | 2 +- Source/Editor/Windows/Assets/MaterialWindow.cs | 2 +- Source/Editor/Windows/Assets/ModelBaseWindow.cs | 2 +- Source/Editor/Windows/Assets/ModelWindow.cs | 2 +- Source/Editor/Windows/Assets/ParticleEmitterFunctionWindow.cs | 2 +- Source/Editor/Windows/Assets/ParticleEmitterWindow.cs | 2 +- Source/Editor/Windows/Assets/ParticleSystemWindow.cs | 2 +- Source/Editor/Windows/Assets/PrefabWindow.Actions.cs | 2 +- Source/Editor/Windows/Assets/PrefabWindow.Hierarchy.cs | 2 +- Source/Editor/Windows/Assets/PrefabWindow.Selection.cs | 2 +- Source/Editor/Windows/Assets/PrefabWindow.cs | 2 +- Source/Editor/Windows/Assets/PreviewsCacheWindow.cs | 2 +- Source/Editor/Windows/Assets/SceneAnimationWindow.cs | 2 +- Source/Editor/Windows/Assets/SkeletonMaskWindow.cs | 2 +- Source/Editor/Windows/Assets/SkinnedModelWindow.cs | 2 +- Source/Editor/Windows/Assets/SpriteAtlasWindow.cs | 2 +- Source/Editor/Windows/Assets/TextureWindow.cs | 2 +- Source/Editor/Windows/Assets/VisjectFunctionSurfaceWindow.cs | 2 +- Source/Editor/Windows/Assets/VisualScriptWindow.cs | 2 +- Source/Editor/Windows/ContentWindow.ContextMenu.cs | 2 +- Source/Editor/Windows/ContentWindow.Navigation.cs | 2 +- Source/Editor/Windows/ContentWindow.Search.cs | 2 +- Source/Editor/Windows/ContentWindow.cs | 2 +- Source/Editor/Windows/DebugLogWindow.cs | 2 +- Source/Editor/Windows/EditGameWindow.cs | 2 +- Source/Editor/Windows/EditorOptionsWindow.cs | 2 +- Source/Editor/Windows/EditorWindow.cs | 2 +- Source/Editor/Windows/GameCookerWindow.cs | 2 +- Source/Editor/Windows/GameWindow.cs | 2 +- Source/Editor/Windows/GraphicsQualityWindow.cs | 2 +- Source/Editor/Windows/OutputLogWindow.cs | 2 +- Source/Editor/Windows/PluginsWindow.cs | 2 +- Source/Editor/Windows/Profiler/CPU.cs | 2 +- Source/Editor/Windows/Profiler/GPU.cs | 2 +- Source/Editor/Windows/Profiler/Memory.cs | 2 +- Source/Editor/Windows/Profiler/Overall.cs | 2 +- Source/Editor/Windows/Profiler/ProfilerMode.cs | 2 +- Source/Editor/Windows/Profiler/ProfilerWindow.cs | 2 +- Source/Editor/Windows/Profiler/SamplesBuffer.cs | 2 +- Source/Editor/Windows/Profiler/SingleChart.cs | 2 +- Source/Editor/Windows/Profiler/Timeline.cs | 2 +- Source/Editor/Windows/PropertiesWindow.cs | 2 +- Source/Editor/Windows/SceneEditorWindow.cs | 2 +- Source/Editor/Windows/SceneTreeWindow.ContextMenu.cs | 2 +- Source/Editor/Windows/SceneTreeWindow.cs | 2 +- Source/Editor/Windows/Search/ContentFinder.cs | 2 +- Source/Editor/Windows/Search/ContentSearchWindow.cs | 2 +- Source/Editor/Windows/Search/SearchItem.cs | 2 +- Source/Editor/Windows/SplashScreen.cpp | 2 +- Source/Editor/Windows/SplashScreen.h | 2 +- Source/Editor/Windows/StyleEditorWindow.cs | 2 +- Source/Editor/Windows/ToolboxWindow.cs | 2 +- Source/Editor/Windows/VisualScriptDebuggerWindow.cs | 2 +- Source/Engine/Animations/AlphaBlend.h | 2 +- Source/Engine/Animations/AnimEvent.cpp | 2 +- Source/Engine/Animations/AnimEvent.h | 2 +- Source/Engine/Animations/AnimationData.h | 2 +- Source/Engine/Animations/AnimationGraph.cs | 2 +- Source/Engine/Animations/AnimationUtils.h | 2 +- Source/Engine/Animations/Animations.Build.cs | 2 +- Source/Engine/Animations/Animations.cpp | 2 +- Source/Engine/Animations/Animations.h | 2 +- Source/Engine/Animations/Config.h | 2 +- Source/Engine/Animations/Curve.cs | 2 +- Source/Engine/Animations/Curve.h | 2 +- Source/Engine/Animations/CurveSerialization.h | 2 +- Source/Engine/Animations/Graph/AnimGraph.Base.cpp | 2 +- Source/Engine/Animations/Graph/AnimGraph.Custom.cpp | 2 +- Source/Engine/Animations/Graph/AnimGraph.cpp | 2 +- Source/Engine/Animations/Graph/AnimGraph.h | 2 +- Source/Engine/Animations/Graph/AnimGroup.Animation.cpp | 2 +- Source/Engine/Animations/InverseKinematics.cpp | 2 +- Source/Engine/Animations/InverseKinematics.h | 2 +- Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp | 2 +- Source/Engine/Animations/SceneAnimations/SceneAnimation.h | 2 +- .../Animations/SceneAnimations/SceneAnimationPlayer.cpp | 2 +- .../Engine/Animations/SceneAnimations/SceneAnimationPlayer.h | 2 +- Source/Engine/Audio/Audio.Build.cs | 2 +- Source/Engine/Audio/Audio.cpp | 2 +- Source/Engine/Audio/Audio.h | 2 +- Source/Engine/Audio/AudioBackend.h | 2 +- Source/Engine/Audio/AudioClip.cpp | 2 +- Source/Engine/Audio/AudioClip.h | 2 +- Source/Engine/Audio/AudioDevice.h | 2 +- Source/Engine/Audio/AudioListener.cpp | 2 +- Source/Engine/Audio/AudioListener.h | 2 +- Source/Engine/Audio/AudioSettings.h | 2 +- Source/Engine/Audio/AudioSource.cpp | 2 +- Source/Engine/Audio/AudioSource.h | 2 +- Source/Engine/Audio/Config.h | 2 +- Source/Engine/Audio/None/AudioBackendNone.cpp | 2 +- Source/Engine/Audio/None/AudioBackendNone.h | 2 +- Source/Engine/Audio/OpenAL/AudioBackendOAL.cpp | 2 +- Source/Engine/Audio/OpenAL/AudioBackendOAL.h | 2 +- Source/Engine/Audio/Types.h | 2 +- Source/Engine/Audio/XAudio2/AudioBackendXAudio2.cpp | 2 +- Source/Engine/Audio/XAudio2/AudioBackendXAudio2.h | 2 +- Source/Engine/CSG/Brush.h | 2 +- Source/Engine/CSG/CSG.Build.cs | 2 +- Source/Engine/CSG/CSGBuilder.cpp | 2 +- Source/Engine/CSG/CSGBuilder.h | 2 +- Source/Engine/CSG/CSGData.cpp | 2 +- Source/Engine/CSG/CSGData.h | 2 +- Source/Engine/CSG/CSGMesh.Build.cpp | 2 +- Source/Engine/CSG/CSGMesh.Split.cpp | 2 +- Source/Engine/CSG/CSGMesh.Triangulate.cpp | 2 +- Source/Engine/CSG/CSGMesh.cpp | 2 +- Source/Engine/CSG/CSGMesh.h | 2 +- Source/Engine/CSG/HalfEdge.h | 2 +- Source/Engine/CSG/Polygon.h | 2 +- Source/Engine/CSG/Types.h | 2 +- Source/Engine/Content/Asset.cpp | 2 +- Source/Engine/Content/Asset.cs | 2 +- Source/Engine/Content/Asset.h | 2 +- Source/Engine/Content/AssetInfo.h | 2 +- Source/Engine/Content/AssetReference.h | 2 +- Source/Engine/Content/Assets/Animation.cpp | 2 +- Source/Engine/Content/Assets/Animation.h | 2 +- Source/Engine/Content/Assets/AnimationGraph.cpp | 2 +- Source/Engine/Content/Assets/AnimationGraph.h | 2 +- Source/Engine/Content/Assets/AnimationGraphFunction.cpp | 2 +- Source/Engine/Content/Assets/AnimationGraphFunction.h | 2 +- Source/Engine/Content/Assets/CubeTexture.cpp | 2 +- Source/Engine/Content/Assets/CubeTexture.h | 2 +- Source/Engine/Content/Assets/IESProfile.cpp | 2 +- Source/Engine/Content/Assets/IESProfile.h | 2 +- Source/Engine/Content/Assets/Material.cpp | 2 +- Source/Engine/Content/Assets/Material.h | 2 +- Source/Engine/Content/Assets/MaterialBase.cpp | 2 +- Source/Engine/Content/Assets/MaterialBase.h | 2 +- Source/Engine/Content/Assets/MaterialFunction.cpp | 2 +- Source/Engine/Content/Assets/MaterialFunction.h | 2 +- Source/Engine/Content/Assets/MaterialInstance.cpp | 2 +- Source/Engine/Content/Assets/MaterialInstance.h | 2 +- Source/Engine/Content/Assets/Model.cpp | 2 +- Source/Engine/Content/Assets/Model.h | 2 +- Source/Engine/Content/Assets/ModelBase.h | 2 +- Source/Engine/Content/Assets/RawDataAsset.cpp | 2 +- Source/Engine/Content/Assets/RawDataAsset.h | 2 +- Source/Engine/Content/Assets/Shader.cpp | 2 +- Source/Engine/Content/Assets/Shader.h | 2 +- Source/Engine/Content/Assets/SkeletonMask.cpp | 2 +- Source/Engine/Content/Assets/SkeletonMask.h | 2 +- Source/Engine/Content/Assets/SkinnedModel.cpp | 2 +- Source/Engine/Content/Assets/SkinnedModel.h | 2 +- Source/Engine/Content/Assets/Texture.cpp | 2 +- Source/Engine/Content/Assets/Texture.h | 2 +- Source/Engine/Content/Assets/VisualScript.cpp | 2 +- Source/Engine/Content/Assets/VisualScript.h | 2 +- Source/Engine/Content/AssetsContainer.h | 2 +- Source/Engine/Content/BinaryAsset.cpp | 2 +- Source/Engine/Content/BinaryAsset.h | 2 +- Source/Engine/Content/Config.h | 2 +- Source/Engine/Content/Content.Build.cs | 2 +- Source/Engine/Content/Content.cpp | 2 +- Source/Engine/Content/Content.cs | 2 +- Source/Engine/Content/Content.h | 2 +- Source/Engine/Content/Factories/BinaryAssetFactory.cpp | 2 +- Source/Engine/Content/Factories/BinaryAssetFactory.h | 2 +- Source/Engine/Content/Factories/IAssetFactory.h | 2 +- Source/Engine/Content/Factories/JsonAssetFactory.h | 2 +- Source/Engine/Content/JsonAsset.cpp | 2 +- Source/Engine/Content/JsonAsset.cs | 2 +- Source/Engine/Content/JsonAsset.h | 2 +- Source/Engine/Content/Loading/ContentLoadTask.h | 2 +- Source/Engine/Content/Loading/ContentLoadingManager.cpp | 2 +- Source/Engine/Content/Loading/ContentLoadingManager.h | 2 +- Source/Engine/Content/Loading/Tasks/LoadAssetDataTask.h | 2 +- Source/Engine/Content/Loading/Tasks/LoadAssetTask.h | 2 +- Source/Engine/Content/MaterialBase.cs | 2 +- Source/Engine/Content/SkinnedModel.cs | 2 +- Source/Engine/Content/SoftAssetReference.h | 2 +- Source/Engine/Content/Storage/AssetHeader.h | 2 +- Source/Engine/Content/Storage/ContentStorageManager.cpp | 2 +- Source/Engine/Content/Storage/ContentStorageManager.h | 2 +- Source/Engine/Content/Storage/FlaxChunk.h | 2 +- Source/Engine/Content/Storage/FlaxFile.h | 2 +- Source/Engine/Content/Storage/FlaxPackage.h | 2 +- Source/Engine/Content/Storage/FlaxStorage.cpp | 2 +- Source/Engine/Content/Storage/FlaxStorage.h | 2 +- Source/Engine/Content/Storage/FlaxStorageReference.h | 2 +- Source/Engine/Content/Storage/JsonStorageProxy.cpp | 2 +- Source/Engine/Content/Storage/JsonStorageProxy.h | 2 +- Source/Engine/Content/Types.h | 2 +- Source/Engine/Content/Upgraders/AudioClipUpgrader.h | 2 +- Source/Engine/Content/Upgraders/BinaryAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/FontAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/IAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/MaterialInstanceUpgrader.h | 2 +- Source/Engine/Content/Upgraders/ModelAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/ShaderAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/SkeletonMaskUpgrader.h | 2 +- Source/Engine/Content/Upgraders/SkinnedModelAssetUpgrader.h | 2 +- Source/Engine/Content/Upgraders/TextureAssetUpgrader.h | 2 +- Source/Engine/Content/WeakAssetReference.h | 2 +- Source/Engine/ContentExporters/AssetExporters.h | 2 +- Source/Engine/ContentExporters/AssetsExportingManager.cpp | 2 +- Source/Engine/ContentExporters/AssetsExportingManager.h | 2 +- Source/Engine/ContentExporters/ContentExporters.Build.cs | 2 +- Source/Engine/ContentExporters/ExportAudio.cpp | 2 +- Source/Engine/ContentExporters/ExportModel.cpp | 2 +- Source/Engine/ContentExporters/ExportTexture.cpp | 2 +- Source/Engine/ContentExporters/Types.h | 2 +- Source/Engine/ContentImporters/AssetsImportingManager.cpp | 2 +- Source/Engine/ContentImporters/AssetsImportingManager.h | 2 +- Source/Engine/ContentImporters/ContentImporters.Build.cs | 2 +- Source/Engine/ContentImporters/CreateAnimation.h | 2 +- Source/Engine/ContentImporters/CreateAnimationGraph.cpp | 2 +- Source/Engine/ContentImporters/CreateAnimationGraph.h | 2 +- Source/Engine/ContentImporters/CreateAnimationGraphFunction.h | 2 +- Source/Engine/ContentImporters/CreateCollisionData.cpp | 2 +- Source/Engine/ContentImporters/CreateCollisionData.h | 2 +- Source/Engine/ContentImporters/CreateJson.cpp | 2 +- Source/Engine/ContentImporters/CreateJson.h | 2 +- Source/Engine/ContentImporters/CreateMaterial.cpp | 2 +- Source/Engine/ContentImporters/CreateMaterial.h | 2 +- Source/Engine/ContentImporters/CreateMaterialFunction.h | 2 +- Source/Engine/ContentImporters/CreateMaterialInstance.h | 2 +- Source/Engine/ContentImporters/CreateParticleEmitter.h | 2 +- .../Engine/ContentImporters/CreateParticleEmitterFunction.h | 2 +- Source/Engine/ContentImporters/CreateParticleSystem.h | 2 +- Source/Engine/ContentImporters/CreateRawData.h | 2 +- Source/Engine/ContentImporters/CreateSceneAnimation.h | 2 +- Source/Engine/ContentImporters/CreateSkeletonMask.h | 2 +- Source/Engine/ContentImporters/CreateVisualScript.h | 2 +- Source/Engine/ContentImporters/ImportAudio.cpp | 2 +- Source/Engine/ContentImporters/ImportAudio.h | 2 +- Source/Engine/ContentImporters/ImportFont.cpp | 2 +- Source/Engine/ContentImporters/ImportFont.h | 2 +- Source/Engine/ContentImporters/ImportIES.cpp | 2 +- Source/Engine/ContentImporters/ImportIES.h | 2 +- Source/Engine/ContentImporters/ImportModel.h | 2 +- Source/Engine/ContentImporters/ImportModelFile.cpp | 2 +- Source/Engine/ContentImporters/ImportModelFile.h | 2 +- Source/Engine/ContentImporters/ImportShader.cpp | 2 +- Source/Engine/ContentImporters/ImportShader.h | 2 +- Source/Engine/ContentImporters/ImportTexture.cpp | 2 +- Source/Engine/ContentImporters/ImportTexture.h | 2 +- Source/Engine/ContentImporters/Types.h | 2 +- Source/Engine/Core/Cache.cpp | 2 +- Source/Engine/Core/Cache.h | 2 +- Source/Engine/Core/Collections/Array.h | 2 +- Source/Engine/Core/Collections/ArrayExtensions.h | 2 +- Source/Engine/Core/Collections/BitArray.h | 2 +- Source/Engine/Core/Collections/ChunkedArray.h | 2 +- Source/Engine/Core/Collections/CircularBuffer.cs | 2 +- Source/Engine/Core/Collections/CollectionPoolCache.h | 2 +- Source/Engine/Core/Collections/Config.h | 2 +- Source/Engine/Core/Collections/Dictionary.h | 2 +- Source/Engine/Core/Collections/HashFunctions.h | 2 +- Source/Engine/Core/Collections/HashSet.h | 2 +- Source/Engine/Core/Collections/IOrderedDictionary.cs | 2 +- Source/Engine/Core/Collections/OrderedDictionary.cs | 2 +- Source/Engine/Core/Collections/RingBuffer.h | 2 +- Source/Engine/Core/Collections/SamplesBuffer.h | 2 +- Source/Engine/Core/Collections/Sorting.cpp | 2 +- Source/Engine/Core/Collections/Sorting.h | 2 +- Source/Engine/Core/Common.h | 2 +- Source/Engine/Core/Compiler.h | 2 +- Source/Engine/Core/Config.h | 2 +- Source/Engine/Core/Config/BuildSettings.cs | 2 +- Source/Engine/Core/Config/BuildSettings.h | 2 +- Source/Engine/Core/Config/GameSettings.cpp | 2 +- Source/Engine/Core/Config/GameSettings.cs | 2 +- Source/Engine/Core/Config/GameSettings.h | 2 +- Source/Engine/Core/Config/GraphicsSettings.cpp | 2 +- Source/Engine/Core/Config/GraphicsSettings.h | 2 +- Source/Engine/Core/Config/LayersAndTagsSettings.cs | 2 +- Source/Engine/Core/Config/LayersTagsSettings.h | 2 +- Source/Engine/Core/Config/PlatformSettings.h | 2 +- Source/Engine/Core/Config/PlatformSettingsBase.h | 2 +- Source/Engine/Core/Config/Settings.h | 2 +- Source/Engine/Core/Config/TimeSettings.h | 2 +- Source/Engine/Core/Core.Build.cs | 2 +- Source/Engine/Core/Core.h | 2 +- Source/Engine/Core/Delegate.h | 2 +- Source/Engine/Core/DeleteMe.h | 2 +- Source/Engine/Core/Encoding.h | 2 +- Source/Engine/Core/Enums.h | 2 +- Source/Engine/Core/Formatting.h | 2 +- Source/Engine/Core/ISerializable.h | 2 +- Source/Engine/Core/Log.cpp | 2 +- Source/Engine/Core/Log.h | 2 +- Source/Engine/Core/Math/AABB.h | 2 +- Source/Engine/Core/Math/BoundingBox.cpp | 2 +- Source/Engine/Core/Math/BoundingBox.cs | 2 +- Source/Engine/Core/Math/BoundingBox.h | 2 +- Source/Engine/Core/Math/BoundingFrustum.cpp | 2 +- Source/Engine/Core/Math/BoundingFrustum.cs | 2 +- Source/Engine/Core/Math/BoundingFrustum.h | 2 +- Source/Engine/Core/Math/BoundingSphere.cpp | 2 +- Source/Engine/Core/Math/BoundingSphere.cs | 2 +- Source/Engine/Core/Math/BoundingSphere.h | 2 +- Source/Engine/Core/Math/CollisionsHelper.cpp | 2 +- Source/Engine/Core/Math/CollisionsHelper.cs | 2 +- Source/Engine/Core/Math/CollisionsHelper.h | 2 +- Source/Engine/Core/Math/Color.Palette.cs | 2 +- Source/Engine/Core/Math/Color.cpp | 2 +- Source/Engine/Core/Math/Color.cs | 2 +- Source/Engine/Core/Math/Color.h | 2 +- Source/Engine/Core/Math/Color32.cpp | 2 +- Source/Engine/Core/Math/Color32.cs | 2 +- Source/Engine/Core/Math/Color32.h | 2 +- Source/Engine/Core/Math/ColorHSV.cs | 2 +- Source/Engine/Core/Math/Double2.cs | 2 +- Source/Engine/Core/Math/Double2.h | 2 +- Source/Engine/Core/Math/Double3.cs | 2 +- Source/Engine/Core/Math/Double3.h | 2 +- Source/Engine/Core/Math/Double4.cs | 2 +- Source/Engine/Core/Math/Double4.h | 2 +- Source/Engine/Core/Math/Float2.cs | 2 +- Source/Engine/Core/Math/Float3.cs | 2 +- Source/Engine/Core/Math/Float4.cs | 2 +- Source/Engine/Core/Math/FloatR10G10B10A2.cs | 2 +- Source/Engine/Core/Math/FloatR11G11B10.cs | 2 +- Source/Engine/Core/Math/Half.cpp | 2 +- Source/Engine/Core/Math/Half.cs | 2 +- Source/Engine/Core/Math/Half.h | 2 +- Source/Engine/Core/Math/Half2.cs | 2 +- Source/Engine/Core/Math/Half3.cs | 2 +- Source/Engine/Core/Math/Half4.cs | 2 +- Source/Engine/Core/Math/HalfUtils.cs | 2 +- Source/Engine/Core/Math/Int2.cs | 2 +- Source/Engine/Core/Math/Int2.h | 2 +- Source/Engine/Core/Math/Int3.cs | 2 +- Source/Engine/Core/Math/Int3.h | 2 +- Source/Engine/Core/Math/Int4.cs | 2 +- Source/Engine/Core/Math/Int4.h | 2 +- Source/Engine/Core/Math/Math.cpp | 2 +- Source/Engine/Core/Math/Math.h | 2 +- Source/Engine/Core/Math/Mathd.cs | 2 +- Source/Engine/Core/Math/Mathd.h | 2 +- Source/Engine/Core/Math/Mathf.cs | 2 +- Source/Engine/Core/Math/Matrix.cpp | 2 +- Source/Engine/Core/Math/Matrix.cs | 2 +- Source/Engine/Core/Math/Matrix.h | 2 +- Source/Engine/Core/Math/Matrix2x2.cs | 2 +- Source/Engine/Core/Math/Matrix3x3.cpp | 2 +- Source/Engine/Core/Math/Matrix3x3.cs | 2 +- Source/Engine/Core/Math/Matrix3x3.h | 2 +- Source/Engine/Core/Math/Matrix3x4.h | 2 +- Source/Engine/Core/Math/OrientedBoundingBox.cpp | 2 +- Source/Engine/Core/Math/OrientedBoundingBox.cs | 2 +- Source/Engine/Core/Math/OrientedBoundingBox.h | 2 +- Source/Engine/Core/Math/Packed.cpp | 2 +- Source/Engine/Core/Math/Packed.h | 2 +- Source/Engine/Core/Math/Plane.cpp | 2 +- Source/Engine/Core/Math/Plane.cs | 2 +- Source/Engine/Core/Math/Plane.h | 2 +- Source/Engine/Core/Math/Quaternion.cpp | 2 +- Source/Engine/Core/Math/Quaternion.cs | 2 +- Source/Engine/Core/Math/Quaternion.h | 2 +- Source/Engine/Core/Math/Ray.cpp | 2 +- Source/Engine/Core/Math/Ray.cs | 2 +- Source/Engine/Core/Math/Ray.h | 2 +- Source/Engine/Core/Math/Rectangle.cpp | 2 +- Source/Engine/Core/Math/Rectangle.cs | 2 +- Source/Engine/Core/Math/Rectangle.h | 2 +- Source/Engine/Core/Math/SphericalHarmonics.cs | 2 +- Source/Engine/Core/Math/Transform.cpp | 2 +- Source/Engine/Core/Math/Transform.cs | 2 +- Source/Engine/Core/Math/Transform.h | 2 +- Source/Engine/Core/Math/Triangle.h | 2 +- Source/Engine/Core/Math/TypeConverters/ColorConverter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Double2Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Double3Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Double4Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Float2Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Float3Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Float4Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Int2Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Int3Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Int4Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/QuaternionConverter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Vector2Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Vector3Converter.cs | 2 +- Source/Engine/Core/Math/TypeConverters/Vector4Converter.cs | 2 +- Source/Engine/Core/Math/Vector2.cpp | 2 +- Source/Engine/Core/Math/Vector2.cs | 2 +- Source/Engine/Core/Math/Vector2.h | 2 +- Source/Engine/Core/Math/Vector3.cpp | 2 +- Source/Engine/Core/Math/Vector3.cs | 2 +- Source/Engine/Core/Math/Vector3.h | 2 +- Source/Engine/Core/Math/Vector4.cpp | 2 +- Source/Engine/Core/Math/Vector4.cs | 2 +- Source/Engine/Core/Math/Vector4.h | 2 +- Source/Engine/Core/Math/Viewport.cpp | 2 +- Source/Engine/Core/Math/Viewport.cs | 2 +- Source/Engine/Core/Math/Viewport.h | 2 +- Source/Engine/Core/Memory/Allocation.h | 2 +- Source/Engine/Core/Memory/CrtAllocator.h | 2 +- Source/Engine/Core/Memory/Memory.h | 2 +- Source/Engine/Core/Memory/StlWrapper.h | 2 +- Source/Engine/Core/NonCopyable.h | 2 +- Source/Engine/Core/Object.h | 2 +- Source/Engine/Core/ObjectsRemovalService.cpp | 2 +- Source/Engine/Core/ObjectsRemovalService.h | 2 +- Source/Engine/Core/Random.h | 2 +- Source/Engine/Core/RandomStream.h | 2 +- Source/Engine/Core/SIMD.h | 2 +- Source/Engine/Core/Singleton.h | 2 +- Source/Engine/Core/Templates.h | 2 +- Source/Engine/Core/Types/BaseTypes.h | 2 +- Source/Engine/Core/Types/CommonValue.cpp | 2 +- Source/Engine/Core/Types/CommonValue.h | 2 +- Source/Engine/Core/Types/DataContainer.h | 2 +- Source/Engine/Core/Types/DateTime.cpp | 2 +- Source/Engine/Core/Types/DateTime.h | 2 +- Source/Engine/Core/Types/Guid.cpp | 2 +- Source/Engine/Core/Types/Guid.h | 2 +- Source/Engine/Core/Types/LayersMask.cs | 2 +- Source/Engine/Core/Types/LayersMask.h | 2 +- Source/Engine/Core/Types/Nullable.h | 2 +- Source/Engine/Core/Types/Pair.h | 2 +- Source/Engine/Core/Types/Span.h | 2 +- Source/Engine/Core/Types/String.cpp | 2 +- Source/Engine/Core/Types/String.h | 2 +- Source/Engine/Core/Types/StringBuilder.h | 2 +- Source/Engine/Core/Types/StringView.cpp | 2 +- Source/Engine/Core/Types/StringView.h | 2 +- Source/Engine/Core/Types/TimeSpan.cpp | 2 +- Source/Engine/Core/Types/TimeSpan.h | 2 +- Source/Engine/Core/Types/Variant.cpp | 2 +- Source/Engine/Core/Types/Variant.h | 2 +- Source/Engine/Core/Types/Version.cpp | 2 +- Source/Engine/Core/Types/Version.h | 2 +- Source/Engine/Core/Utilities.h | 2 +- Source/Engine/Debug/Assert.cs | 2 +- Source/Engine/Debug/AssertionException.cs | 2 +- Source/Engine/Debug/Debug.Build.cs | 2 +- Source/Engine/Debug/DebugDraw.cpp | 2 +- Source/Engine/Debug/DebugDraw.cs | 2 +- Source/Engine/Debug/DebugDraw.h | 2 +- Source/Engine/Debug/DebugLog.cpp | 2 +- Source/Engine/Debug/DebugLog.h | 2 +- Source/Engine/Debug/Exception.cpp | 2 +- Source/Engine/Debug/Exception.h | 2 +- Source/Engine/Debug/Exceptions/ArgumentException.h | 2 +- Source/Engine/Debug/Exceptions/ArgumentNullException.h | 2 +- Source/Engine/Debug/Exceptions/ArgumentOutOfRangeException.h | 2 +- Source/Engine/Debug/Exceptions/CLRInnerException.h | 2 +- Source/Engine/Debug/Exceptions/DivideByZeroException.h | 2 +- Source/Engine/Debug/Exceptions/Exceptions.h | 2 +- Source/Engine/Debug/Exceptions/FileNotFoundException.h | 2 +- Source/Engine/Debug/Exceptions/IOException.h | 2 +- Source/Engine/Debug/Exceptions/IndexOutOfRangeException.h | 2 +- Source/Engine/Debug/Exceptions/InvalidOperationException.h | 2 +- Source/Engine/Debug/Exceptions/JsonParseException.h | 2 +- Source/Engine/Debug/Exceptions/NotImplementedException.h | 2 +- Source/Engine/Debug/Exceptions/NotSupportedException.h | 2 +- Source/Engine/Debug/Exceptions/OverflowException.h | 2 +- Source/Engine/Debug/Exceptions/PathTooLongException.h | 2 +- .../Engine/Debug/Exceptions/PlatformNotSupportedException.h | 2 +- Source/Engine/Debug/Exceptions/TimeoutException.h | 2 +- Source/Engine/Debug/FloatComparer.cs | 2 +- Source/Engine/Engine/Android/AndroidGame.h | 2 +- Source/Engine/Engine/Application.h | 2 +- Source/Engine/Engine/Base/ApplicationBase.h | 2 +- Source/Engine/Engine/Base/GameBase.cpp | 2 +- Source/Engine/Engine/Base/GameBase.h | 2 +- Source/Engine/Engine/CommandLine.cpp | 2 +- Source/Engine/Engine/CommandLine.h | 2 +- Source/Engine/Engine/Debug.cs | 2 +- Source/Engine/Engine/DebugLogHandler.cs | 2 +- Source/Engine/Engine/Engine.Build.cs | 2 +- Source/Engine/Engine/Engine.cpp | 2 +- Source/Engine/Engine/Engine.h | 2 +- Source/Engine/Engine/EngineService.cpp | 2 +- Source/Engine/Engine/EngineService.h | 2 +- Source/Engine/Engine/Game.h | 2 +- Source/Engine/Engine/GameplayGlobals.cpp | 2 +- Source/Engine/Engine/GameplayGlobals.h | 2 +- Source/Engine/Engine/Globals.cpp | 2 +- Source/Engine/Engine/Globals.h | 2 +- Source/Engine/Engine/IDrawable.cs | 2 +- Source/Engine/Engine/ILogHandler.cs | 2 +- Source/Engine/Engine/ILogger.cs | 2 +- Source/Engine/Engine/InputAxis.cs | 2 +- Source/Engine/Engine/InputEvent.cs | 2 +- Source/Engine/Engine/Linux/LinuxGame.cpp | 2 +- Source/Engine/Engine/Linux/LinuxGame.h | 2 +- Source/Engine/Engine/Logger.cs | 2 +- Source/Engine/Engine/Mac/MacGame.cpp | 2 +- Source/Engine/Engine/Mac/MacGame.h | 2 +- Source/Engine/Engine/PostProcessEffect.cs | 2 +- Source/Engine/Engine/SceneReference.cs | 2 +- Source/Engine/Engine/Screen.cpp | 2 +- Source/Engine/Engine/Screen.h | 2 +- Source/Engine/Engine/Time.cpp | 2 +- Source/Engine/Engine/Time.h | 2 +- Source/Engine/Engine/UWP/UWPGame.cpp | 2 +- Source/Engine/Engine/UWP/UWPGame.h | 2 +- Source/Engine/Engine/Windows/WindowsGame.cpp | 2 +- Source/Engine/Engine/Windows/WindowsGame.h | 2 +- Source/Engine/Foliage/Config.h | 2 +- Source/Engine/Foliage/Foliage.Build.cs | 2 +- Source/Engine/Foliage/Foliage.cpp | 2 +- Source/Engine/Foliage/Foliage.h | 2 +- Source/Engine/Foliage/FoliageCluster.cpp | 2 +- Source/Engine/Foliage/FoliageCluster.h | 2 +- Source/Engine/Foliage/FoliageInstance.h | 2 +- Source/Engine/Foliage/FoliageType.cpp | 2 +- Source/Engine/Foliage/FoliageType.h | 2 +- Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.cpp | 2 +- Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.h | 2 +- Source/Engine/Graphics/Async/GPUSyncPoint.h | 2 +- Source/Engine/Graphics/Async/GPUTask.h | 2 +- Source/Engine/Graphics/Async/GPUTasksContext.cpp | 2 +- Source/Engine/Graphics/Async/GPUTasksContext.h | 2 +- Source/Engine/Graphics/Async/GPUTasksExecutor.cpp | 2 +- Source/Engine/Graphics/Async/GPUTasksExecutor.h | 2 +- Source/Engine/Graphics/Async/GPUTasksManager.cpp | 2 +- Source/Engine/Graphics/Async/GPUTasksManager.h | 2 +- Source/Engine/Graphics/Async/Tasks/GPUCopyResourceTask.h | 2 +- Source/Engine/Graphics/Async/Tasks/GPUCopySubresourceTask.h | 2 +- Source/Engine/Graphics/Async/Tasks/GPUUploadBufferTask.h | 2 +- Source/Engine/Graphics/Async/Tasks/GPUUploadTextureMipTask.h | 2 +- Source/Engine/Graphics/Config.h | 2 +- Source/Engine/Graphics/DynamicBuffer.cpp | 2 +- Source/Engine/Graphics/DynamicBuffer.h | 2 +- Source/Engine/Graphics/Enums.h | 2 +- Source/Engine/Graphics/GPUAdapter.h | 2 +- Source/Engine/Graphics/GPUBuffer.cpp | 2 +- Source/Engine/Graphics/GPUBuffer.h | 2 +- Source/Engine/Graphics/GPUBufferDescription.cs | 2 +- Source/Engine/Graphics/GPUBufferDescription.h | 2 +- Source/Engine/Graphics/GPUContext.cpp | 2 +- Source/Engine/Graphics/GPUContext.h | 2 +- Source/Engine/Graphics/GPUDevice.cpp | 2 +- Source/Engine/Graphics/GPUDevice.h | 2 +- Source/Engine/Graphics/GPULimits.h | 2 +- Source/Engine/Graphics/GPUPipelineState.h | 2 +- Source/Engine/Graphics/GPUPipelineStatePermutations.h | 2 +- Source/Engine/Graphics/GPUResource.h | 2 +- Source/Engine/Graphics/GPUResourceProperty.h | 2 +- Source/Engine/Graphics/GPUResourceState.h | 2 +- Source/Engine/Graphics/GPUResourcesCollection.cpp | 2 +- Source/Engine/Graphics/GPUResourcesCollection.h | 2 +- Source/Engine/Graphics/GPUSwapChain.cpp | 2 +- Source/Engine/Graphics/GPUSwapChain.h | 2 +- Source/Engine/Graphics/GPUTimerQuery.h | 2 +- Source/Engine/Graphics/Graphics.Build.cs | 2 +- Source/Engine/Graphics/Graphics.cpp | 2 +- Source/Engine/Graphics/Graphics.h | 2 +- Source/Engine/Graphics/MaterialInfo.cs | 2 +- Source/Engine/Graphics/MaterialParams.cs | 2 +- Source/Engine/Graphics/Materials/DecalMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/DecalMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/DeferredMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/DeferredMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/DeformableMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/DeformableMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/ForwardMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/ForwardMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/GUIMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/GUIMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/IMaterial.h | 2 +- Source/Engine/Graphics/Materials/MaterialInfo.h | 2 +- Source/Engine/Graphics/Materials/MaterialParams.cpp | 2 +- Source/Engine/Graphics/Materials/MaterialParams.h | 2 +- Source/Engine/Graphics/Materials/MaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/MaterialShader.h | 2 +- Source/Engine/Graphics/Materials/MaterialShaderFeatures.cpp | 2 +- Source/Engine/Graphics/Materials/MaterialShaderFeatures.h | 2 +- Source/Engine/Graphics/Materials/ParticleMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/ParticleMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/PostFxMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/PostFxMaterialShader.h | 2 +- Source/Engine/Graphics/Materials/TerrainMaterialShader.cpp | 2 +- Source/Engine/Graphics/Materials/TerrainMaterialShader.h | 2 +- .../Graphics/Materials/VolumeParticleMaterialShader.cpp | 2 +- .../Engine/Graphics/Materials/VolumeParticleMaterialShader.h | 2 +- Source/Engine/Graphics/Mesh.cs | 2 +- Source/Engine/Graphics/Model.cs | 2 +- Source/Engine/Graphics/Models/BlendShape.cpp | 2 +- Source/Engine/Graphics/Models/BlendShape.h | 2 +- Source/Engine/Graphics/Models/CollisionProxy.h | 2 +- Source/Engine/Graphics/Models/Config.h | 2 +- Source/Engine/Graphics/Models/MaterialSlot.h | 2 +- Source/Engine/Graphics/Models/Mesh.cpp | 2 +- Source/Engine/Graphics/Models/Mesh.h | 2 +- Source/Engine/Graphics/Models/MeshBase.h | 2 +- Source/Engine/Graphics/Models/ModelData.Tool.cpp | 2 +- Source/Engine/Graphics/Models/ModelData.cpp | 2 +- Source/Engine/Graphics/Models/ModelData.h | 2 +- Source/Engine/Graphics/Models/ModelInstanceEntry.cpp | 2 +- Source/Engine/Graphics/Models/ModelInstanceEntry.h | 2 +- Source/Engine/Graphics/Models/ModelLOD.cpp | 2 +- Source/Engine/Graphics/Models/ModelLOD.h | 2 +- Source/Engine/Graphics/Models/SkeletonData.h | 2 +- Source/Engine/Graphics/Models/SkeletonMapping.h | 2 +- Source/Engine/Graphics/Models/SkeletonUpdater.h | 2 +- Source/Engine/Graphics/Models/SkinnedMesh.cpp | 2 +- Source/Engine/Graphics/Models/SkinnedMesh.h | 2 +- Source/Engine/Graphics/Models/SkinnedMeshDrawData.cpp | 2 +- Source/Engine/Graphics/Models/SkinnedMeshDrawData.h | 2 +- Source/Engine/Graphics/Models/SkinnedModelLOD.cpp | 2 +- Source/Engine/Graphics/Models/SkinnedModelLOD.h | 2 +- Source/Engine/Graphics/Models/Types.h | 2 +- Source/Engine/Graphics/PixelFormat.h | 2 +- Source/Engine/Graphics/PixelFormatExtensions.cpp | 2 +- Source/Engine/Graphics/PixelFormatExtensions.h | 2 +- Source/Engine/Graphics/PostProcessBase.h | 2 +- Source/Engine/Graphics/PostProcessSettings.cpp | 2 +- Source/Engine/Graphics/PostProcessSettings.cs | 2 +- Source/Engine/Graphics/PostProcessSettings.h | 2 +- Source/Engine/Graphics/RenderBuffers.cpp | 2 +- Source/Engine/Graphics/RenderBuffers.h | 2 +- Source/Engine/Graphics/RenderTargetPool.cpp | 2 +- Source/Engine/Graphics/RenderTargetPool.h | 2 +- Source/Engine/Graphics/RenderTask.cpp | 2 +- Source/Engine/Graphics/RenderTask.cs | 2 +- Source/Engine/Graphics/RenderTask.h | 2 +- Source/Engine/Graphics/RenderTools.cpp | 2 +- Source/Engine/Graphics/RenderTools.h | 2 +- Source/Engine/Graphics/RenderView.cpp | 2 +- Source/Engine/Graphics/RenderView.cs | 2 +- Source/Engine/Graphics/RenderView.h | 2 +- Source/Engine/Graphics/Shaders/Config.h | 2 +- Source/Engine/Graphics/Shaders/GPUConstantBuffer.h | 2 +- Source/Engine/Graphics/Shaders/GPUShader.cpp | 2 +- Source/Engine/Graphics/Shaders/GPUShader.h | 2 +- Source/Engine/Graphics/Shaders/GPUShaderProgram.h | 2 +- Source/Engine/Graphics/SkinnedMesh.cs | 2 +- Source/Engine/Graphics/TextureBase.cs | 2 +- Source/Engine/Graphics/Textures/GPUSampler.cpp | 2 +- Source/Engine/Graphics/Textures/GPUSampler.h | 2 +- Source/Engine/Graphics/Textures/GPUSamplerDescription.cs | 2 +- Source/Engine/Graphics/Textures/GPUSamplerDescription.h | 2 +- Source/Engine/Graphics/Textures/GPUTexture.cpp | 2 +- Source/Engine/Graphics/Textures/GPUTexture.h | 2 +- Source/Engine/Graphics/Textures/GPUTextureDescription.cs | 2 +- Source/Engine/Graphics/Textures/GPUTextureDescription.h | 2 +- Source/Engine/Graphics/Textures/ITextureOwner.h | 2 +- Source/Engine/Graphics/Textures/StreamingTexture.cpp | 2 +- Source/Engine/Graphics/Textures/StreamingTexture.h | 2 +- Source/Engine/Graphics/Textures/TextureBase.cpp | 2 +- Source/Engine/Graphics/Textures/TextureBase.h | 2 +- Source/Engine/Graphics/Textures/TextureData.h | 2 +- Source/Engine/Graphics/Textures/TextureUtils.h | 2 +- Source/Engine/Graphics/Textures/Types.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.h | 2 +- .../GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.cpp | 2 +- .../Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX11/GPUShaderProgramDX11.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.h | 2 +- .../GraphicsDevice/DirectX/DX11/GraphicsDeviceDX11.Build.cs | 2 +- .../Engine/GraphicsDevice/DirectX/DX11/IShaderResourceDX11.h | 2 +- .../GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.cpp | 2 +- .../GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/CommandSignatureDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.cpp | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.h | 2 +- .../GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.cpp | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/GPUShaderProgramDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.h | 2 +- .../GraphicsDevice/DirectX/DX12/GraphicsDeviceDX12.Build.cs | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/IShaderResourceDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/Types.h | 2 +- .../Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.cpp | 2 +- Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.h | 2 +- Source/Engine/GraphicsDevice/DirectX/GPUAdapterDX.h | 2 +- Source/Engine/GraphicsDevice/DirectX/GPUDeviceDX.h | 2 +- Source/Engine/GraphicsDevice/DirectX/IncludeDirectXHeaders.h | 2 +- Source/Engine/GraphicsDevice/DirectX/RenderToolsDX.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUAdapterNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUBufferNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUContextNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp | 2 +- Source/Engine/GraphicsDevice/Null/GPUDeviceNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUPipelineStateNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUSamplerNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUShaderNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUSwapChainNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUTextureNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GPUTimerQueryNull.h | 2 +- Source/Engine/GraphicsDevice/Null/GraphicsDeviceNull.Build.cs | 2 +- .../GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.cpp | 2 +- .../GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/Config.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUAdapterVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h | 2 +- .../Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.Layers.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.h | 2 +- .../Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUShaderProgramVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.h | 2 +- .../GraphicsDevice/Vulkan/GraphicsDeviceVulkan.Build.cs | 2 +- Source/Engine/GraphicsDevice/Vulkan/IncludeVulkanHeaders.h | 2 +- .../GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.cpp | 2 +- .../Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.cpp | 2 +- Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/ResourceOwnerVulkan.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/Types.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/VulkanPlatform.h | 2 +- Source/Engine/GraphicsDevice/Vulkan/VulkanPlatformBase.h | 2 +- .../GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.cpp | 2 +- .../Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.h | 2 +- Source/Engine/Input/Enums.h | 2 +- Source/Engine/Input/Gamepad.cpp | 2 +- Source/Engine/Input/Gamepad.h | 2 +- Source/Engine/Input/Input.Build.cs | 2 +- Source/Engine/Input/Input.cpp | 2 +- Source/Engine/Input/Input.h | 2 +- Source/Engine/Input/InputDevice.h | 2 +- Source/Engine/Input/InputSettings.cs | 2 +- Source/Engine/Input/InputSettings.h | 2 +- Source/Engine/Input/Keyboard.h | 2 +- Source/Engine/Input/KeyboardKeys.h | 2 +- Source/Engine/Input/Mouse.h | 2 +- Source/Engine/Input/VirtualInput.h | 2 +- Source/Engine/Level/Actor.cpp | 2 +- Source/Engine/Level/Actor.cs | 2 +- Source/Engine/Level/Actor.h | 2 +- Source/Engine/Level/Actors/AnimatedModel.cpp | 2 +- Source/Engine/Level/Actors/AnimatedModel.h | 2 +- Source/Engine/Level/Actors/BoneSocket.cpp | 2 +- Source/Engine/Level/Actors/BoneSocket.h | 2 +- Source/Engine/Level/Actors/BoxBrush.cpp | 2 +- Source/Engine/Level/Actors/BoxBrush.h | 2 +- Source/Engine/Level/Actors/BoxVolume.cpp | 2 +- Source/Engine/Level/Actors/BoxVolume.h | 2 +- Source/Engine/Level/Actors/BrushMode.h | 2 +- Source/Engine/Level/Actors/Camera.cpp | 2 +- Source/Engine/Level/Actors/Camera.h | 2 +- Source/Engine/Level/Actors/Decal.cpp | 2 +- Source/Engine/Level/Actors/Decal.h | 2 +- Source/Engine/Level/Actors/DirectionalLight.cpp | 2 +- Source/Engine/Level/Actors/DirectionalLight.h | 2 +- Source/Engine/Level/Actors/EmptyActor.cpp | 2 +- Source/Engine/Level/Actors/EmptyActor.h | 2 +- Source/Engine/Level/Actors/EnvironmentProbe.cpp | 2 +- Source/Engine/Level/Actors/EnvironmentProbe.h | 2 +- Source/Engine/Level/Actors/ExponentialHeightFog.cpp | 2 +- Source/Engine/Level/Actors/ExponentialHeightFog.h | 2 +- Source/Engine/Level/Actors/Light.cpp | 2 +- Source/Engine/Level/Actors/Light.h | 2 +- Source/Engine/Level/Actors/ModelInstanceActor.cpp | 2 +- Source/Engine/Level/Actors/ModelInstanceActor.h | 2 +- Source/Engine/Level/Actors/PointLight.cpp | 2 +- Source/Engine/Level/Actors/PointLight.h | 2 +- Source/Engine/Level/Actors/PostFxVolume.cpp | 2 +- Source/Engine/Level/Actors/PostFxVolume.h | 2 +- Source/Engine/Level/Actors/Ragdoll.cpp | 2 +- Source/Engine/Level/Actors/Ragdoll.h | 2 +- Source/Engine/Level/Actors/Sky.cpp | 2 +- Source/Engine/Level/Actors/Sky.h | 2 +- Source/Engine/Level/Actors/SkyLight.cpp | 2 +- Source/Engine/Level/Actors/SkyLight.h | 2 +- Source/Engine/Level/Actors/Skybox.cpp | 2 +- Source/Engine/Level/Actors/Skybox.h | 2 +- Source/Engine/Level/Actors/Spline.cpp | 2 +- Source/Engine/Level/Actors/Spline.h | 2 +- Source/Engine/Level/Actors/SplineModel.cpp | 2 +- Source/Engine/Level/Actors/SplineModel.h | 2 +- Source/Engine/Level/Actors/SpotLight.cpp | 2 +- Source/Engine/Level/Actors/SpotLight.h | 2 +- Source/Engine/Level/Actors/StaticModel.cpp | 2 +- Source/Engine/Level/Actors/StaticModel.h | 2 +- Source/Engine/Level/ActorsCache.cpp | 2 +- Source/Engine/Level/ActorsCache.h | 2 +- Source/Engine/Level/LargeWorlds.h | 2 +- Source/Engine/Level/Level.Build.cs | 2 +- Source/Engine/Level/Level.cpp | 2 +- Source/Engine/Level/Level.cs | 2 +- Source/Engine/Level/Level.h | 2 +- Source/Engine/Level/Prefabs/Prefab.Apply.cpp | 2 +- Source/Engine/Level/Prefabs/Prefab.cpp | 2 +- Source/Engine/Level/Prefabs/Prefab.h | 2 +- Source/Engine/Level/Prefabs/PrefabManager.cpp | 2 +- Source/Engine/Level/Prefabs/PrefabManager.h | 2 +- Source/Engine/Level/Scene.cs | 2 +- Source/Engine/Level/Scene/Lightmap.cpp | 2 +- Source/Engine/Level/Scene/Lightmap.h | 2 +- Source/Engine/Level/Scene/Scene.cpp | 2 +- Source/Engine/Level/Scene/Scene.h | 2 +- Source/Engine/Level/Scene/SceneAsset.h | 2 +- Source/Engine/Level/Scene/SceneCSGData.cpp | 2 +- Source/Engine/Level/Scene/SceneCSGData.h | 2 +- Source/Engine/Level/Scene/SceneLightmapsData.cpp | 2 +- Source/Engine/Level/Scene/SceneLightmapsData.h | 2 +- Source/Engine/Level/Scene/SceneNavigation.h | 2 +- Source/Engine/Level/Scene/SceneRendering.cpp | 2 +- Source/Engine/Level/Scene/SceneRendering.h | 2 +- Source/Engine/Level/Scene/SceneTicking.cpp | 2 +- Source/Engine/Level/Scene/SceneTicking.h | 2 +- Source/Engine/Level/SceneInfo.cpp | 2 +- Source/Engine/Level/SceneInfo.h | 2 +- Source/Engine/Level/SceneObject.cpp | 2 +- Source/Engine/Level/SceneObject.h | 2 +- Source/Engine/Level/SceneObjectsFactory.cpp | 2 +- Source/Engine/Level/SceneObjectsFactory.h | 2 +- Source/Engine/Level/SceneQuery.cpp | 2 +- Source/Engine/Level/SceneQuery.h | 2 +- Source/Engine/Level/Spline.cs | 2 +- Source/Engine/Level/Types.h | 2 +- Source/Engine/Localization/CultureInfo.cpp | 2 +- Source/Engine/Localization/CultureInfo.h | 2 +- Source/Engine/Localization/Localization.Build.cs | 2 +- Source/Engine/Localization/Localization.cpp | 2 +- Source/Engine/Localization/Localization.h | 2 +- Source/Engine/Localization/LocalizationSettings.h | 2 +- Source/Engine/Localization/LocalizedString.cs | 2 +- Source/Engine/Localization/LocalizedString.h | 2 +- Source/Engine/Localization/LocalizedStringTable.cpp | 2 +- Source/Engine/Localization/LocalizedStringTable.h | 2 +- Source/Engine/Main/Android/main.cpp | 2 +- Source/Engine/Main/Linux/main.cpp | 2 +- Source/Engine/Main/Mac/main.cpp | 2 +- Source/Engine/Main/Main.Build.cs | 2 +- Source/Engine/Main/UWP/main.cpp | 2 +- Source/Engine/Main/UWP/main.h | 2 +- Source/Engine/Main/Windows/main.cpp | 2 +- Source/Engine/Navigation/NavCrowd.cpp | 2 +- Source/Engine/Navigation/NavCrowd.h | 2 +- Source/Engine/Navigation/NavLink.cpp | 2 +- Source/Engine/Navigation/NavLink.h | 2 +- Source/Engine/Navigation/NavMesh.cpp | 2 +- Source/Engine/Navigation/NavMesh.h | 2 +- Source/Engine/Navigation/NavMeshBoundsVolume.cpp | 2 +- Source/Engine/Navigation/NavMeshBoundsVolume.h | 2 +- Source/Engine/Navigation/NavMeshBuilder.cpp | 2 +- Source/Engine/Navigation/NavMeshBuilder.h | 2 +- Source/Engine/Navigation/NavMeshData.cpp | 2 +- Source/Engine/Navigation/NavMeshData.h | 2 +- Source/Engine/Navigation/NavMeshRuntime.cpp | 2 +- Source/Engine/Navigation/NavMeshRuntime.h | 2 +- Source/Engine/Navigation/NavModifierVolume.cpp | 2 +- Source/Engine/Navigation/NavModifierVolume.h | 2 +- Source/Engine/Navigation/Navigation.Build.cs | 2 +- Source/Engine/Navigation/Navigation.cpp | 2 +- Source/Engine/Navigation/Navigation.h | 2 +- Source/Engine/Navigation/NavigationSettings.cs | 2 +- Source/Engine/Navigation/NavigationSettings.h | 2 +- Source/Engine/Navigation/NavigationTypes.h | 2 +- Source/Engine/Networking/Drivers/ENetDriver.cpp | 2 +- Source/Engine/Networking/Drivers/ENetDriver.h | 2 +- Source/Engine/Networking/INetworkDriver.h | 2 +- Source/Engine/Networking/NetworkChannelType.h | 2 +- Source/Engine/Networking/NetworkConfig.h | 2 +- Source/Engine/Networking/NetworkConnection.h | 2 +- Source/Engine/Networking/NetworkEvent.h | 2 +- Source/Engine/Networking/NetworkMessage.cs | 2 +- Source/Engine/Networking/NetworkMessage.h | 2 +- Source/Engine/Networking/NetworkPeer.cpp | 2 +- Source/Engine/Networking/NetworkPeer.h | 2 +- Source/Engine/Networking/Networking.Build.cs | 2 +- Source/Engine/Networking/Types.h | 2 +- Source/Engine/Online/IOnlinePlatform.h | 2 +- Source/Engine/Online/Online.Build.cs | 2 +- Source/Engine/Online/Online.cpp | 2 +- Source/Engine/Online/Online.h | 2 +- .../Graph/CPU/ParticleEmitterGraph.CPU.ParticleModules.cpp | 2 +- .../Graph/CPU/ParticleEmitterGraph.CPU.Particles.cpp | 2 +- .../Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.cpp | 2 +- Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.h | 2 +- Source/Engine/Particles/Graph/GPU/GPUParticles.cpp | 2 +- Source/Engine/Particles/Graph/GPU/GPUParticles.h | 2 +- .../Graph/GPU/ParticleEmitterGraph.GPU.ParticleModules.cpp | 2 +- .../Graph/GPU/ParticleEmitterGraph.GPU.Particles.cpp | 2 +- .../Particles/Graph/GPU/ParticleEmitterGraph.GPU.Textures.cpp | 2 +- .../Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.cpp | 2 +- Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.h | 2 +- Source/Engine/Particles/Graph/ParticleEmitterGraph.h | 2 +- Source/Engine/Particles/ParticleEffect.cpp | 2 +- Source/Engine/Particles/ParticleEffect.cs | 2 +- Source/Engine/Particles/ParticleEffect.h | 2 +- Source/Engine/Particles/ParticleEmitter.cpp | 2 +- Source/Engine/Particles/ParticleEmitter.h | 2 +- Source/Engine/Particles/ParticleEmitterFunction.cpp | 2 +- Source/Engine/Particles/ParticleEmitterFunction.h | 2 +- Source/Engine/Particles/ParticleSystem.cpp | 2 +- Source/Engine/Particles/ParticleSystem.h | 2 +- Source/Engine/Particles/Particles.Build.cs | 2 +- Source/Engine/Particles/Particles.cpp | 2 +- Source/Engine/Particles/Particles.h | 2 +- Source/Engine/Particles/ParticlesData.cpp | 2 +- Source/Engine/Particles/ParticlesData.h | 2 +- Source/Engine/Particles/ParticlesSimulation.cpp | 2 +- Source/Engine/Particles/ParticlesSimulation.h | 2 +- Source/Engine/Particles/Types.h | 2 +- Source/Engine/Physics/Actors/IPhysicsActor.h | 2 +- Source/Engine/Physics/Actors/PhysicsColliderActor.cpp | 2 +- Source/Engine/Physics/Actors/PhysicsColliderActor.h | 2 +- Source/Engine/Physics/Actors/RigidBody.cpp | 2 +- Source/Engine/Physics/Actors/RigidBody.h | 2 +- Source/Engine/Physics/Actors/SplineRopeBody.cpp | 2 +- Source/Engine/Physics/Actors/SplineRopeBody.h | 2 +- Source/Engine/Physics/Actors/WheeledVehicle.cpp | 2 +- Source/Engine/Physics/Actors/WheeledVehicle.h | 2 +- Source/Engine/Physics/Colliders/BoxCollider.cpp | 2 +- Source/Engine/Physics/Colliders/BoxCollider.h | 2 +- Source/Engine/Physics/Colliders/CapsuleCollider.cpp | 2 +- Source/Engine/Physics/Colliders/CapsuleCollider.h | 2 +- Source/Engine/Physics/Colliders/CharacterController.cpp | 2 +- Source/Engine/Physics/Colliders/CharacterController.h | 2 +- Source/Engine/Physics/Colliders/Collider.cpp | 2 +- Source/Engine/Physics/Colliders/Collider.h | 2 +- Source/Engine/Physics/Colliders/MeshCollider.cpp | 2 +- Source/Engine/Physics/Colliders/MeshCollider.h | 2 +- Source/Engine/Physics/Colliders/SphereCollider.cpp | 2 +- Source/Engine/Physics/Colliders/SphereCollider.h | 2 +- Source/Engine/Physics/Colliders/SplineCollider.cpp | 2 +- Source/Engine/Physics/Colliders/SplineCollider.h | 2 +- Source/Engine/Physics/CollisionCooking.cpp | 2 +- Source/Engine/Physics/CollisionCooking.h | 2 +- Source/Engine/Physics/CollisionData.cpp | 2 +- Source/Engine/Physics/CollisionData.cs | 2 +- Source/Engine/Physics/CollisionData.h | 2 +- Source/Engine/Physics/Collisions.cs | 2 +- Source/Engine/Physics/Collisions.h | 2 +- Source/Engine/Physics/D6Joint.cs | 2 +- Source/Engine/Physics/HingeJoint.cs | 2 +- Source/Engine/Physics/Joints/D6Joint.cpp | 2 +- Source/Engine/Physics/Joints/D6Joint.h | 2 +- Source/Engine/Physics/Joints/DistanceJoint.cpp | 2 +- Source/Engine/Physics/Joints/DistanceJoint.h | 2 +- Source/Engine/Physics/Joints/FixedJoint.cpp | 2 +- Source/Engine/Physics/Joints/FixedJoint.h | 2 +- Source/Engine/Physics/Joints/HingeJoint.cpp | 2 +- Source/Engine/Physics/Joints/HingeJoint.h | 2 +- Source/Engine/Physics/Joints/Joint.cpp | 2 +- Source/Engine/Physics/Joints/Joint.h | 2 +- Source/Engine/Physics/Joints/Limits.h | 2 +- Source/Engine/Physics/Joints/SliderJoint.cpp | 2 +- Source/Engine/Physics/Joints/SliderJoint.h | 2 +- Source/Engine/Physics/Joints/SphericalJoint.cpp | 2 +- Source/Engine/Physics/Joints/SphericalJoint.h | 2 +- Source/Engine/Physics/Limits.cs | 2 +- Source/Engine/Physics/PhysX/PhysicsBackendPhysX.cpp | 2 +- Source/Engine/Physics/PhysX/PhysicsBackendPhysX.h | 2 +- Source/Engine/Physics/PhysX/PhysicsStepperPhysX.cpp | 2 +- Source/Engine/Physics/PhysX/PhysicsStepperPhysX.h | 2 +- Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.cpp | 2 +- Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.h | 2 +- Source/Engine/Physics/PhysX/Types.h | 2 +- Source/Engine/Physics/PhysicalMaterial.h | 2 +- Source/Engine/Physics/Physics.Build.cs | 2 +- Source/Engine/Physics/Physics.cpp | 2 +- Source/Engine/Physics/Physics.h | 2 +- Source/Engine/Physics/PhysicsBackend.h | 2 +- Source/Engine/Physics/PhysicsSettings.cs | 2 +- Source/Engine/Physics/PhysicsSettings.h | 2 +- Source/Engine/Physics/Types.h | 2 +- Source/Engine/Platform/Android/AndroidDefines.h | 2 +- Source/Engine/Platform/Android/AndroidFile.h | 2 +- Source/Engine/Platform/Android/AndroidFileSystem.h | 2 +- Source/Engine/Platform/Android/AndroidPlatform.cpp | 2 +- Source/Engine/Platform/Android/AndroidPlatform.h | 2 +- Source/Engine/Platform/Android/AndroidPlatformSettings.h | 2 +- Source/Engine/Platform/Android/AndroidThread.h | 2 +- Source/Engine/Platform/Android/AndroidWindow.cpp | 2 +- Source/Engine/Platform/Android/AndroidWindow.h | 2 +- Source/Engine/Platform/Base/FileBase.cpp | 2 +- Source/Engine/Platform/Base/FileBase.h | 2 +- Source/Engine/Platform/Base/FileSystemBase.cpp | 2 +- Source/Engine/Platform/Base/FileSystemBase.h | 2 +- Source/Engine/Platform/Base/FileSystemWatcherBase.h | 2 +- Source/Engine/Platform/Base/NetworkBase.cpp | 2 +- Source/Engine/Platform/Base/NetworkBase.h | 2 +- Source/Engine/Platform/Base/PlatformBase.cpp | 2 +- Source/Engine/Platform/Base/PlatformBase.h | 2 +- Source/Engine/Platform/Base/PlatformUtils.h | 2 +- Source/Engine/Platform/Base/StringUtilsBase.cpp | 2 +- Source/Engine/Platform/Base/ThreadBase.cpp | 2 +- Source/Engine/Platform/Base/ThreadBase.h | 2 +- Source/Engine/Platform/Base/UserBase.h | 2 +- Source/Engine/Platform/Base/WindowBase.cpp | 2 +- Source/Engine/Platform/Base/WindowBase.h | 2 +- Source/Engine/Platform/Base/WindowsManager.cpp | 2 +- Source/Engine/Platform/BatteryInfo.h | 2 +- Source/Engine/Platform/CPUInfo.h | 2 +- Source/Engine/Platform/Clipboard.h | 2 +- Source/Engine/Platform/ConditionVariable.h | 2 +- Source/Engine/Platform/CreateWindowSettings.cs | 2 +- Source/Engine/Platform/CreateWindowSettings.h | 2 +- Source/Engine/Platform/CriticalSection.h | 2 +- Source/Engine/Platform/Defines.h | 2 +- Source/Engine/Platform/File.h | 2 +- Source/Engine/Platform/FileSystem.h | 2 +- Source/Engine/Platform/FileSystemWatcher.h | 2 +- Source/Engine/Platform/GDK/GDKInput.cpp | 2 +- Source/Engine/Platform/GDK/GDKInput.h | 2 +- Source/Engine/Platform/GDK/GDKPlatform.cpp | 2 +- Source/Engine/Platform/GDK/GDKPlatform.h | 2 +- Source/Engine/Platform/GDK/GDKPlatformSettings.h | 2 +- Source/Engine/Platform/GDK/GDKUser.h | 2 +- Source/Engine/Platform/GDK/GDKWindow.cpp | 2 +- Source/Engine/Platform/GDK/GDKWindow.h | 2 +- Source/Engine/Platform/IGuiData.h | 2 +- Source/Engine/Platform/Linux/IncludeX11.h | 2 +- Source/Engine/Platform/Linux/LinuxClipboard.h | 2 +- Source/Engine/Platform/Linux/LinuxDefines.h | 2 +- Source/Engine/Platform/Linux/LinuxFileSystem.h | 2 +- Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp | 2 +- Source/Engine/Platform/Linux/LinuxFileSystemWatcher.h | 2 +- Source/Engine/Platform/Linux/LinuxInput.cpp | 2 +- Source/Engine/Platform/Linux/LinuxInput.h | 2 +- Source/Engine/Platform/Linux/LinuxPlatform.cpp | 2 +- Source/Engine/Platform/Linux/LinuxPlatform.h | 2 +- Source/Engine/Platform/Linux/LinuxPlatformSettings.h | 2 +- Source/Engine/Platform/Linux/LinuxThread.h | 2 +- Source/Engine/Platform/Linux/LinuxWindow.cpp | 2 +- Source/Engine/Platform/Linux/LinuxWindow.h | 2 +- Source/Engine/Platform/Mac/MacClipboard.h | 2 +- Source/Engine/Platform/Mac/MacDefines.h | 2 +- Source/Engine/Platform/Mac/MacFileSystem.h | 2 +- Source/Engine/Platform/Mac/MacPlatform.cpp | 2 +- Source/Engine/Platform/Mac/MacPlatform.h | 2 +- Source/Engine/Platform/Mac/MacPlatformSettings.h | 2 +- Source/Engine/Platform/Mac/MacThread.h | 2 +- Source/Engine/Platform/Mac/MacUtils.h | 2 +- Source/Engine/Platform/Mac/MacWindow.cpp | 2 +- Source/Engine/Platform/Mac/MacWindow.h | 2 +- Source/Engine/Platform/MemoryStats.h | 2 +- Source/Engine/Platform/MessageBox.h | 2 +- Source/Engine/Platform/Network.h | 2 +- Source/Engine/Platform/Platform.Build.cs | 2 +- Source/Engine/Platform/Platform.cs | 2 +- Source/Engine/Platform/Platform.h | 2 +- Source/Engine/Platform/SettingsBase.cs | 2 +- Source/Engine/Platform/StringUtils.h | 2 +- Source/Engine/Platform/Thread.h | 2 +- Source/Engine/Platform/Types.h | 2 +- Source/Engine/Platform/UWP/UWPDefines.h | 2 +- Source/Engine/Platform/UWP/UWPFileSystem.cpp | 2 +- Source/Engine/Platform/UWP/UWPFileSystem.h | 2 +- Source/Engine/Platform/UWP/UWPPlatform.cpp | 2 +- Source/Engine/Platform/UWP/UWPPlatform.h | 2 +- Source/Engine/Platform/UWP/UWPPlatformImpl.h | 2 +- Source/Engine/Platform/UWP/UWPPlatformSettings.h | 2 +- Source/Engine/Platform/UWP/UWPWindow.cpp | 2 +- Source/Engine/Platform/UWP/UWPWindow.h | 2 +- Source/Engine/Platform/Unix/UnixConditionVariable.h | 2 +- Source/Engine/Platform/Unix/UnixCriticalSection.h | 2 +- Source/Engine/Platform/Unix/UnixDefines.h | 2 +- Source/Engine/Platform/Unix/UnixFile.cpp | 2 +- Source/Engine/Platform/Unix/UnixFile.h | 2 +- Source/Engine/Platform/Unix/UnixNetwork.cpp | 2 +- Source/Engine/Platform/Unix/UnixNetwork.h | 2 +- Source/Engine/Platform/Unix/UnixPlatform.cpp | 2 +- Source/Engine/Platform/Unix/UnixPlatform.h | 2 +- Source/Engine/Platform/Unix/UnixStringUtils.cpp | 2 +- Source/Engine/Platform/Unix/UnixThread.cpp | 2 +- Source/Engine/Platform/Unix/UnixThread.h | 2 +- Source/Engine/Platform/User.h | 2 +- Source/Engine/Platform/Win32/IncludeWindowsHeaders.h | 2 +- Source/Engine/Platform/Win32/Win32ConditionVariable.h | 2 +- Source/Engine/Platform/Win32/Win32CriticalSection.h | 2 +- Source/Engine/Platform/Win32/Win32Defines.h | 2 +- Source/Engine/Platform/Win32/Win32File.cpp | 2 +- Source/Engine/Platform/Win32/Win32File.h | 2 +- Source/Engine/Platform/Win32/Win32FileSystem.cpp | 2 +- Source/Engine/Platform/Win32/Win32FileSystem.h | 2 +- Source/Engine/Platform/Win32/Win32Network.cpp | 2 +- Source/Engine/Platform/Win32/Win32Network.h | 2 +- Source/Engine/Platform/Win32/Win32Platform.cpp | 2 +- Source/Engine/Platform/Win32/Win32Platform.h | 2 +- Source/Engine/Platform/Win32/Win32StringUtils.cpp | 2 +- Source/Engine/Platform/Win32/Win32Thread.cpp | 2 +- Source/Engine/Platform/Win32/Win32Thread.h | 2 +- Source/Engine/Platform/Win32/WindowsMinimal.h | 2 +- Source/Engine/Platform/Window.cs | 2 +- Source/Engine/Platform/Window.h | 2 +- Source/Engine/Platform/Windows/ComPtr.h | 2 +- Source/Engine/Platform/Windows/WindowsClipboard.cpp | 2 +- Source/Engine/Platform/Windows/WindowsClipboard.h | 2 +- Source/Engine/Platform/Windows/WindowsDefines.h | 2 +- Source/Engine/Platform/Windows/WindowsFileSystem.cpp | 2 +- Source/Engine/Platform/Windows/WindowsFileSystem.h | 2 +- Source/Engine/Platform/Windows/WindowsFileSystemWatcher.cpp | 2 +- Source/Engine/Platform/Windows/WindowsFileSystemWatcher.h | 2 +- Source/Engine/Platform/Windows/WindowsInput.cpp | 2 +- Source/Engine/Platform/Windows/WindowsInput.h | 2 +- Source/Engine/Platform/Windows/WindowsPlatform.cpp | 2 +- Source/Engine/Platform/Windows/WindowsPlatform.h | 2 +- Source/Engine/Platform/Windows/WindowsPlatformSettings.h | 2 +- Source/Engine/Platform/Windows/WindowsWindow.DragDrop.cpp | 2 +- Source/Engine/Platform/Windows/WindowsWindow.cpp | 2 +- Source/Engine/Platform/Windows/WindowsWindow.h | 2 +- Source/Engine/Platform/WindowsManager.h | 2 +- Source/Engine/Profiler/Profiler.Build.cs | 2 +- Source/Engine/Profiler/Profiler.h | 2 +- Source/Engine/Profiler/ProfilerCPU.cpp | 2 +- Source/Engine/Profiler/ProfilerCPU.h | 2 +- Source/Engine/Profiler/ProfilerGPU.cpp | 2 +- Source/Engine/Profiler/ProfilerGPU.h | 2 +- Source/Engine/Profiler/ProfilerSrcLoc.h | 2 +- Source/Engine/Profiler/ProfilingTools.cpp | 2 +- Source/Engine/Profiler/ProfilingTools.h | 2 +- Source/Engine/Profiler/RenderStats.h | 2 +- Source/Engine/Render2D/Font.cpp | 2 +- Source/Engine/Render2D/Font.h | 2 +- Source/Engine/Render2D/FontAsset.cpp | 2 +- Source/Engine/Render2D/FontAsset.cs | 2 +- Source/Engine/Render2D/FontAsset.h | 2 +- Source/Engine/Render2D/FontManager.cpp | 2 +- Source/Engine/Render2D/FontManager.h | 2 +- Source/Engine/Render2D/FontReference.cs | 2 +- Source/Engine/Render2D/FontTextureAtlas.cpp | 2 +- Source/Engine/Render2D/FontTextureAtlas.h | 2 +- Source/Engine/Render2D/IncludeFreeType.h | 2 +- Source/Engine/Render2D/Render2D.Build.cs | 2 +- Source/Engine/Render2D/Render2D.cpp | 2 +- Source/Engine/Render2D/Render2D.cs | 2 +- Source/Engine/Render2D/Render2D.h | 2 +- Source/Engine/Render2D/RotatedRectangle.h | 2 +- Source/Engine/Render2D/SpriteAtlas.cpp | 2 +- Source/Engine/Render2D/SpriteAtlas.cs | 2 +- Source/Engine/Render2D/SpriteAtlas.h | 2 +- Source/Engine/Render2D/TextLayoutOptions.cs | 2 +- Source/Engine/Render2D/TextLayoutOptions.h | 2 +- Source/Engine/Render2D/TextRange.cs | 2 +- Source/Engine/Renderer/AmbientOcclusionPass.cpp | 2 +- Source/Engine/Renderer/AmbientOcclusionPass.h | 2 +- Source/Engine/Renderer/AntiAliasing/FXAA.cpp | 2 +- Source/Engine/Renderer/AntiAliasing/FXAA.h | 2 +- Source/Engine/Renderer/AntiAliasing/SMAA.cpp | 2 +- Source/Engine/Renderer/AntiAliasing/SMAA.h | 2 +- Source/Engine/Renderer/AntiAliasing/TAA.cpp | 2 +- Source/Engine/Renderer/AntiAliasing/TAA.h | 2 +- Source/Engine/Renderer/AtmospherePreCompute.cpp | 2 +- Source/Engine/Renderer/AtmospherePreCompute.h | 2 +- Source/Engine/Renderer/ColorGradingPass.cpp | 2 +- Source/Engine/Renderer/ColorGradingPass.h | 2 +- Source/Engine/Renderer/Config.h | 2 +- Source/Engine/Renderer/DepthOfFieldPass.cpp | 2 +- Source/Engine/Renderer/DepthOfFieldPass.h | 2 +- Source/Engine/Renderer/DrawCall.h | 2 +- Source/Engine/Renderer/Editor/LODPreview.cpp | 2 +- Source/Engine/Renderer/Editor/LODPreview.h | 2 +- Source/Engine/Renderer/Editor/LightmapUVsDensity.cpp | 2 +- Source/Engine/Renderer/Editor/LightmapUVsDensity.h | 2 +- Source/Engine/Renderer/Editor/MaterialComplexity.cpp | 2 +- Source/Engine/Renderer/Editor/MaterialComplexity.h | 2 +- Source/Engine/Renderer/Editor/QuadOverdrawPass.cpp | 2 +- Source/Engine/Renderer/Editor/QuadOverdrawPass.h | 2 +- Source/Engine/Renderer/Editor/VertexColors.cpp | 2 +- Source/Engine/Renderer/Editor/VertexColors.h | 2 +- Source/Engine/Renderer/EyeAdaptationPass.cpp | 2 +- Source/Engine/Renderer/EyeAdaptationPass.h | 2 +- Source/Engine/Renderer/ForwardPass.cpp | 2 +- Source/Engine/Renderer/ForwardPass.h | 2 +- Source/Engine/Renderer/GBufferPass.cpp | 2 +- Source/Engine/Renderer/GBufferPass.h | 2 +- .../Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.cpp | 2 +- Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.h | 2 +- Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp | 2 +- Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.h | 2 +- Source/Engine/Renderer/GlobalSignDistanceFieldPass.cpp | 2 +- Source/Engine/Renderer/GlobalSignDistanceFieldPass.h | 2 +- Source/Engine/Renderer/HistogramPass.cpp | 2 +- Source/Engine/Renderer/HistogramPass.h | 2 +- Source/Engine/Renderer/LightPass.cpp | 2 +- Source/Engine/Renderer/LightPass.h | 2 +- Source/Engine/Renderer/Lightmaps.h | 2 +- Source/Engine/Renderer/MotionBlurPass.cpp | 2 +- Source/Engine/Renderer/MotionBlurPass.h | 2 +- Source/Engine/Renderer/PostProcessingPass.cpp | 2 +- Source/Engine/Renderer/PostProcessingPass.h | 2 +- Source/Engine/Renderer/ProbesRenderer.cpp | 2 +- Source/Engine/Renderer/ProbesRenderer.h | 2 +- Source/Engine/Renderer/ReflectionsPass.cpp | 2 +- Source/Engine/Renderer/ReflectionsPass.h | 2 +- Source/Engine/Renderer/RenderList.cpp | 2 +- Source/Engine/Renderer/RenderList.h | 2 +- Source/Engine/Renderer/Renderer.Build.cs | 2 +- Source/Engine/Renderer/Renderer.cpp | 2 +- Source/Engine/Renderer/Renderer.cs | 2 +- Source/Engine/Renderer/Renderer.h | 2 +- Source/Engine/Renderer/RendererPass.h | 2 +- Source/Engine/Renderer/ScreenSpaceReflectionsPass.cpp | 2 +- Source/Engine/Renderer/ScreenSpaceReflectionsPass.h | 2 +- Source/Engine/Renderer/ShadowsPass.cpp | 2 +- Source/Engine/Renderer/ShadowsPass.h | 2 +- Source/Engine/Renderer/Utils/BitonicSort.cpp | 2 +- Source/Engine/Renderer/Utils/BitonicSort.h | 2 +- Source/Engine/Renderer/Utils/MultiScaler.cpp | 2 +- Source/Engine/Renderer/Utils/MultiScaler.h | 2 +- Source/Engine/Renderer/VolumetricFogPass.cpp | 2 +- Source/Engine/Renderer/VolumetricFogPass.h | 2 +- Source/Engine/Scripting/Attributes/CollectionAttribute.cs | 2 +- .../Scripting/Attributes/Editor/AssetReferenceAttribute.cs | 2 +- .../Engine/Scripting/Attributes/Editor/CategoryAttribute.cs | 2 +- .../Scripting/Attributes/Editor/CustomEditorAliasAttribute.cs | 2 +- .../Scripting/Attributes/Editor/CustomEditorAttribute.cs | 2 +- .../Scripting/Attributes/Editor/DefaultEditorAttribute.cs | 2 +- .../Scripting/Attributes/Editor/EditorDisplayAttribute.cs | 2 +- .../Scripting/Attributes/Editor/EditorOrderAttribute.cs | 2 +- .../Scripting/Attributes/Editor/EnumDisplayAttribute.cs | 2 +- .../Scripting/Attributes/Editor/ExpandGroupsAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/HeaderAttribute.cs | 2 +- .../Scripting/Attributes/Editor/HideInEditorAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/LimitAttribute.cs | 2 +- .../Scripting/Attributes/Editor/MultilineTextAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/NoUndoAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/RangeAttribute.cs | 2 +- .../Engine/Scripting/Attributes/Editor/ReadOnlyAttribute.cs | 2 +- .../Scripting/Attributes/Editor/ShowInEditorAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/SpaceAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/Editor/TooltipAttribute.cs | 2 +- .../Scripting/Attributes/Editor/TypeReferenceAttribute.cs | 2 +- .../Engine/Scripting/Attributes/Editor/VisibleIfAttribute.cs | 2 +- .../Engine/Scripting/Attributes/ExecuteInEditModeAttribute.cs | 2 +- .../Scripting/Attributes/MonoPInvokeCallbackAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/NoAnimateAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/SerializeAttribute.cs | 2 +- Source/Engine/Scripting/Attributes/UnmanagedAttribute.cs | 2 +- Source/Engine/Scripting/BinaryModule.cpp | 2 +- Source/Engine/Scripting/BinaryModule.h | 2 +- Source/Engine/Scripting/Enums.h | 2 +- Source/Engine/Scripting/Events.h | 2 +- Source/Engine/Scripting/InternalCalls.h | 2 +- Source/Engine/Scripting/InternalCalls/EngineInternalCalls.cpp | 2 +- Source/Engine/Scripting/InternalCalls/ManagedBitArray.h | 2 +- Source/Engine/Scripting/InternalCalls/ManagedDictionary.h | 2 +- Source/Engine/Scripting/MException.cpp | 2 +- Source/Engine/Scripting/MException.h | 2 +- Source/Engine/Scripting/MainThreadManagedInvokeAction.cpp | 2 +- Source/Engine/Scripting/MainThreadManagedInvokeAction.h | 2 +- Source/Engine/Scripting/ManagedCLR/MAssembly.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MAssembly.h | 2 +- Source/Engine/Scripting/ManagedCLR/MAssemblyOptions.h | 2 +- Source/Engine/Scripting/ManagedCLR/MClass.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MClass.h | 2 +- Source/Engine/Scripting/ManagedCLR/MCore.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MCore.h | 2 +- Source/Engine/Scripting/ManagedCLR/MDomain.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MDomain.h | 2 +- Source/Engine/Scripting/ManagedCLR/MEvent.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MEvent.h | 2 +- Source/Engine/Scripting/ManagedCLR/MField.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MField.h | 2 +- Source/Engine/Scripting/ManagedCLR/MMethod.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MMethod.h | 2 +- Source/Engine/Scripting/ManagedCLR/MProperty.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MProperty.h | 2 +- Source/Engine/Scripting/ManagedCLR/MStaticConverter.h | 2 +- Source/Engine/Scripting/ManagedCLR/MType.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MType.h | 2 +- Source/Engine/Scripting/ManagedCLR/MTypes.h | 2 +- Source/Engine/Scripting/ManagedCLR/MUtils.cpp | 2 +- Source/Engine/Scripting/ManagedCLR/MUtils.h | 2 +- Source/Engine/Scripting/ManagedSerialization.cpp | 2 +- Source/Engine/Scripting/ManagedSerialization.h | 2 +- Source/Engine/Scripting/Object.cs | 2 +- Source/Engine/Scripting/Plugins/EditorPlugin.h | 2 +- Source/Engine/Scripting/Plugins/GamePlugin.h | 2 +- Source/Engine/Scripting/Plugins/Plugin.h | 2 +- Source/Engine/Scripting/Plugins/PluginDescription.h | 2 +- Source/Engine/Scripting/Plugins/PluginManager.cpp | 2 +- Source/Engine/Scripting/Plugins/PluginManager.cs | 2 +- Source/Engine/Scripting/Plugins/PluginManager.h | 2 +- Source/Engine/Scripting/Script.cpp | 2 +- Source/Engine/Scripting/Script.cs | 2 +- Source/Engine/Scripting/Script.h | 2 +- Source/Engine/Scripting/Scripting.Build.cs | 2 +- Source/Engine/Scripting/Scripting.Internal.cpp | 2 +- Source/Engine/Scripting/Scripting.cpp | 2 +- Source/Engine/Scripting/Scripting.cs | 2 +- Source/Engine/Scripting/Scripting.h | 2 +- Source/Engine/Scripting/ScriptingCalls.h | 2 +- Source/Engine/Scripting/ScriptingObject.cpp | 2 +- Source/Engine/Scripting/ScriptingObject.h | 2 +- Source/Engine/Scripting/ScriptingObjectReference.h | 2 +- Source/Engine/Scripting/ScriptingType.h | 2 +- Source/Engine/Scripting/SoftObjectReference.cs | 2 +- Source/Engine/Scripting/SoftObjectReference.h | 2 +- Source/Engine/Scripting/StdTypesContainer.cpp | 2 +- Source/Engine/Scripting/StdTypesContainer.h | 2 +- Source/Engine/Scripting/Types.h | 2 +- Source/Engine/Serialization/FileReadStream.cpp | 2 +- Source/Engine/Serialization/FileReadStream.h | 2 +- Source/Engine/Serialization/FileWriteStream.cpp | 2 +- Source/Engine/Serialization/FileWriteStream.h | 2 +- Source/Engine/Serialization/ISerializable.h | 2 +- Source/Engine/Serialization/ISerializeModifier.h | 2 +- Source/Engine/Serialization/Json.h | 2 +- Source/Engine/Serialization/JsonConverters.cs | 2 +- .../JsonCustomSerializers/ExtendedDefaultContractResolver.cs | 2 +- Source/Engine/Serialization/JsonFwd.h | 2 +- Source/Engine/Serialization/JsonSerializer.cs | 2 +- Source/Engine/Serialization/JsonSerializer.h | 2 +- Source/Engine/Serialization/JsonTools.cpp | 2 +- Source/Engine/Serialization/JsonTools.h | 2 +- Source/Engine/Serialization/JsonWriter.cpp | 2 +- Source/Engine/Serialization/JsonWriter.h | 2 +- Source/Engine/Serialization/JsonWriters.h | 2 +- Source/Engine/Serialization/MemoryReadStream.cpp | 2 +- Source/Engine/Serialization/MemoryReadStream.h | 2 +- Source/Engine/Serialization/MemoryWriteStream.cpp | 2 +- Source/Engine/Serialization/MemoryWriteStream.h | 2 +- Source/Engine/Serialization/ReadStream.h | 2 +- Source/Engine/Serialization/Serialization.Build.cs | 2 +- Source/Engine/Serialization/Serialization.cpp | 2 +- Source/Engine/Serialization/Serialization.h | 2 +- Source/Engine/Serialization/SerializationFwd.h | 2 +- Source/Engine/Serialization/Stream.cpp | 2 +- Source/Engine/Serialization/Stream.h | 2 +- Source/Engine/Serialization/UnmanagedMemoryStream.cs | 2 +- Source/Engine/Serialization/UnmanagedStringReader.cs | 2 +- Source/Engine/Serialization/WriteStream.h | 2 +- Source/Engine/ShadersCompilation/Config.h | 2 +- .../ShadersCompilation/DirectX/ShaderCompilerD3D.Build.cs | 2 +- .../Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.cpp | 2 +- Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.h | 2 +- .../ShadersCompilation/DirectX/ShaderCompilerDX.Build.cs | 2 +- Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.cpp | 2 +- Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.h | 2 +- Source/Engine/ShadersCompilation/Parser/Config.h | 2 +- .../Engine/ShadersCompilation/Parser/IShaderFunctionReader.h | 2 +- Source/Engine/ShadersCompilation/Parser/IShaderParser.h | 2 +- Source/Engine/ShadersCompilation/Parser/ITokenReader.h | 2 +- .../Engine/ShadersCompilation/Parser/ITokenReadersContainer.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.CB.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.CS.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.DS.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.GS.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.HS.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.PS.h | 2 +- .../ShadersCompilation/Parser/ShaderFunctionReader.VS.h | 2 +- .../Engine/ShadersCompilation/Parser/ShaderFunctionReader.h | 2 +- Source/Engine/ShadersCompilation/Parser/ShaderMeta.h | 2 +- .../ShadersCompilation/Parser/ShaderProcessing.Parse.cpp | 2 +- Source/Engine/ShadersCompilation/Parser/ShaderProcessing.cpp | 2 +- Source/Engine/ShadersCompilation/Parser/ShaderProcessing.h | 2 +- Source/Engine/ShadersCompilation/ShaderCompilationContext.h | 2 +- Source/Engine/ShadersCompilation/ShaderCompiler.cpp | 2 +- Source/Engine/ShadersCompilation/ShaderCompiler.h | 2 +- Source/Engine/ShadersCompilation/ShaderDebugDataExporter.h | 2 +- Source/Engine/ShadersCompilation/ShadersCompilation.Build.cs | 2 +- Source/Engine/ShadersCompilation/ShadersCompilation.cpp | 2 +- Source/Engine/ShadersCompilation/ShadersCompilation.h | 2 +- .../ShadersCompilation/Vulkan/ShaderCompilerVulkan.Build.cs | 2 +- .../Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.cpp | 2 +- .../Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.h | 2 +- Source/Engine/ShadowsOfMordor/AtlasChartsPacker.h | 2 +- Source/Engine/ShadowsOfMordor/Builder.BuildCache.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.Charts.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.Config.h | 2 +- Source/Engine/ShadowsOfMordor/Builder.Debug.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.DoWork.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.Entries.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.Hemispheres.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.Jobs.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.cpp | 2 +- Source/Engine/ShadowsOfMordor/Builder.h | 2 +- Source/Engine/ShadowsOfMordor/ShadowsOfMordor.Build.cs | 2 +- Source/Engine/ShadowsOfMordor/Types.h | 2 +- Source/Engine/Streaming/IStreamingHandler.h | 2 +- Source/Engine/Streaming/StreamableResource.h | 2 +- Source/Engine/Streaming/Streaming.Build.cs | 2 +- Source/Engine/Streaming/Streaming.cpp | 2 +- Source/Engine/Streaming/Streaming.h | 2 +- Source/Engine/Streaming/StreamingGroup.cpp | 2 +- Source/Engine/Streaming/StreamingGroup.h | 2 +- Source/Engine/Streaming/StreamingHandlers.cpp | 2 +- Source/Engine/Streaming/StreamingHandlers.h | 2 +- Source/Engine/Streaming/StreamingSettings.h | 2 +- Source/Engine/Streaming/TextureGroup.h | 2 +- Source/Engine/Terrain/Terrain.Build.cs | 2 +- Source/Engine/Terrain/Terrain.cpp | 2 +- Source/Engine/Terrain/Terrain.cs | 2 +- Source/Engine/Terrain/Terrain.h | 2 +- Source/Engine/Terrain/TerrainChunk.cpp | 2 +- Source/Engine/Terrain/TerrainChunk.h | 2 +- Source/Engine/Terrain/TerrainManager.cpp | 2 +- Source/Engine/Terrain/TerrainManager.h | 2 +- Source/Engine/Terrain/TerrainPatch.cpp | 2 +- Source/Engine/Terrain/TerrainPatch.h | 2 +- Source/Engine/Tests/TestCollections.cpp | 2 +- Source/Engine/Tests/TestGuid.cpp | 2 +- Source/Engine/Tests/TestLevel.cpp | 2 +- Source/Engine/Tests/TestMain.cpp | 2 +- Source/Engine/Tests/TestMath.cpp | 2 +- Source/Engine/Tests/TestModelTool.cpp | 2 +- Source/Engine/Tests/TestPrefabs.cpp | 2 +- Source/Engine/Tests/TestString.cpp | 2 +- Source/Engine/Tests/TestStringUtils.cpp | 2 +- Source/Engine/Tests/Tests.Build.cs | 2 +- Source/Engine/Threading/ConcurrentBuffer.h | 2 +- Source/Engine/Threading/ConcurrentQueue.h | 2 +- Source/Engine/Threading/ConcurrentTaskQueue.h | 2 +- Source/Engine/Threading/IRunnable.h | 2 +- Source/Engine/Threading/JobSystem.cpp | 2 +- Source/Engine/Threading/JobSystem.h | 2 +- Source/Engine/Threading/MainThreadTask.cpp | 2 +- Source/Engine/Threading/MainThreadTask.h | 2 +- Source/Engine/Threading/Task.cpp | 2 +- Source/Engine/Threading/Task.h | 2 +- Source/Engine/Threading/TaskGraph.cpp | 2 +- Source/Engine/Threading/TaskGraph.h | 2 +- Source/Engine/Threading/ThreadLocal.h | 2 +- Source/Engine/Threading/ThreadPool.cpp | 2 +- Source/Engine/Threading/ThreadPool.h | 2 +- Source/Engine/Threading/ThreadPoolTask.h | 2 +- Source/Engine/Threading/ThreadRegistry.cpp | 2 +- Source/Engine/Threading/ThreadRegistry.h | 2 +- Source/Engine/Threading/ThreadSpawner.h | 2 +- Source/Engine/Threading/Threading.Build.cs | 2 +- Source/Engine/Threading/Threading.h | 2 +- Source/Engine/Tools/AudioTool/AudioDecoder.h | 2 +- Source/Engine/Tools/AudioTool/AudioEncoder.h | 2 +- Source/Engine/Tools/AudioTool/AudioTool.Build.cs | 2 +- Source/Engine/Tools/AudioTool/AudioTool.cpp | 2 +- Source/Engine/Tools/AudioTool/AudioTool.h | 2 +- Source/Engine/Tools/AudioTool/MP3Decoder.cpp | 2 +- Source/Engine/Tools/AudioTool/MP3Decoder.h | 2 +- Source/Engine/Tools/AudioTool/OggVorbisDecoder.cpp | 2 +- Source/Engine/Tools/AudioTool/OggVorbisDecoder.h | 2 +- Source/Engine/Tools/AudioTool/OggVorbisEncoder.cpp | 2 +- Source/Engine/Tools/AudioTool/OggVorbisEncoder.h | 2 +- Source/Engine/Tools/AudioTool/WaveDecoder.cpp | 2 +- Source/Engine/Tools/AudioTool/WaveDecoder.h | 2 +- .../Engine/Tools/MaterialGenerator/MaterialGenerator.Build.cs | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Layer.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Layers.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Material.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Parameters.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Particles.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Textures.cpp | 2 +- .../Tools/MaterialGenerator/MaterialGenerator.Tools.cpp | 2 +- Source/Engine/Tools/MaterialGenerator/MaterialGenerator.cpp | 2 +- Source/Engine/Tools/MaterialGenerator/MaterialGenerator.h | 2 +- Source/Engine/Tools/MaterialGenerator/MaterialLayer.cpp | 2 +- Source/Engine/Tools/MaterialGenerator/MaterialLayer.h | 2 +- Source/Engine/Tools/MaterialGenerator/Types.h | 2 +- Source/Engine/Tools/ModelTool/MeshAccelerationStructure.cpp | 2 +- Source/Engine/Tools/ModelTool/MeshAccelerationStructure.h | 2 +- Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp | 2 +- Source/Engine/Tools/ModelTool/ModelTool.AutodeskFbxSdk.cpp | 2 +- Source/Engine/Tools/ModelTool/ModelTool.Build.cs | 2 +- Source/Engine/Tools/ModelTool/ModelTool.OpenFBX.cpp | 2 +- Source/Engine/Tools/ModelTool/ModelTool.Options.cpp | 2 +- Source/Engine/Tools/ModelTool/ModelTool.cpp | 2 +- Source/Engine/Tools/ModelTool/ModelTool.h | 2 +- Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.cpp | 2 +- Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.h | 2 +- Source/Engine/Tools/TextureTool/TextureTool.Build.cs | 2 +- Source/Engine/Tools/TextureTool/TextureTool.DirectXTex.cpp | 2 +- Source/Engine/Tools/TextureTool/TextureTool.cpp | 2 +- Source/Engine/Tools/TextureTool/TextureTool.h | 2 +- Source/Engine/Tools/TextureTool/TextureTool.stb.cpp | 2 +- Source/Engine/UI/GUI/Brushes/GPUTextureBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/IBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/LinearGradientBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/MaterialBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/SolidColorBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/SpriteBrush.cs | 2 +- Source/Engine/UI/GUI/Brushes/TextureBrush.cs | 2 +- Source/Engine/UI/GUI/CanvasContainer.cs | 2 +- Source/Engine/UI/GUI/CanvasRootControl.cs | 2 +- Source/Engine/UI/GUI/Common/Border.cs | 2 +- Source/Engine/UI/GUI/Common/Button.cs | 2 +- Source/Engine/UI/GUI/Common/CheckBox.cs | 2 +- Source/Engine/UI/GUI/Common/Dropdown.cs | 2 +- Source/Engine/UI/GUI/Common/Image.cs | 2 +- Source/Engine/UI/GUI/Common/Label.cs | 2 +- Source/Engine/UI/GUI/Common/ProgressBar.cs | 2 +- Source/Engine/UI/GUI/Common/RenderToTextureControl.cs | 2 +- Source/Engine/UI/GUI/Common/RichTextBox.Parsing.cs | 2 +- Source/Engine/UI/GUI/Common/RichTextBox.Tags.cs | 2 +- Source/Engine/UI/GUI/Common/RichTextBox.cs | 2 +- Source/Engine/UI/GUI/Common/RichTextBoxBase.cs | 2 +- Source/Engine/UI/GUI/Common/Spacer.cs | 2 +- Source/Engine/UI/GUI/Common/TextBox.cs | 2 +- Source/Engine/UI/GUI/Common/TextBoxBase.cs | 2 +- Source/Engine/UI/GUI/ContainerControl.cs | 2 +- Source/Engine/UI/GUI/Control.Bounds.cs | 2 +- Source/Engine/UI/GUI/Control.cs | 2 +- Source/Engine/UI/GUI/DragData.cs | 2 +- Source/Engine/UI/GUI/DragDataFiles.cs | 2 +- Source/Engine/UI/GUI/DragDataText.cs | 2 +- Source/Engine/UI/GUI/Enums.cs | 2 +- Source/Engine/UI/GUI/Margin.cs | 2 +- Source/Engine/UI/GUI/Panels/AlphaPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/BlurPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/DropPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/GridPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/HScrollBar.cs | 2 +- Source/Engine/UI/GUI/Panels/HorizontalPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/Panel.cs | 2 +- Source/Engine/UI/GUI/Panels/PanelWithMargins.cs | 2 +- Source/Engine/UI/GUI/Panels/ScrollBar.cs | 2 +- Source/Engine/UI/GUI/Panels/SplitPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/TilesPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/UniformGridPanel.cs | 2 +- Source/Engine/UI/GUI/Panels/VScrollBar.cs | 2 +- Source/Engine/UI/GUI/Panels/VerticalPanel.cs | 2 +- Source/Engine/UI/GUI/RenderOutputControl.cs | 2 +- Source/Engine/UI/GUI/RootControl.cs | 2 +- Source/Engine/UI/GUI/ScrollableControl.cs | 2 +- Source/Engine/UI/GUI/Style.cs | 2 +- Source/Engine/UI/GUI/TextBlock.cs | 2 +- Source/Engine/UI/GUI/TextBlockStyle.cs | 2 +- Source/Engine/UI/GUI/Tooltip.cs | 2 +- Source/Engine/UI/GUI/WindowRootControl.cs | 2 +- Source/Engine/UI/SpriteRender.cpp | 2 +- Source/Engine/UI/SpriteRender.h | 2 +- Source/Engine/UI/TextRender.cpp | 2 +- Source/Engine/UI/TextRender.h | 2 +- Source/Engine/UI/UI.Build.cs | 2 +- Source/Engine/UI/UICanvas.cpp | 2 +- Source/Engine/UI/UICanvas.cs | 2 +- Source/Engine/UI/UICanvas.h | 2 +- Source/Engine/UI/UIControl.cpp | 2 +- Source/Engine/UI/UIControl.cs | 2 +- Source/Engine/UI/UIControl.h | 2 +- Source/Engine/Utilities/Crc.cpp | 2 +- Source/Engine/Utilities/Crc.h | 2 +- Source/Engine/Utilities/Delaunay2D.h | 2 +- Source/Engine/Utilities/Encryption.cpp | 2 +- Source/Engine/Utilities/Encryption.h | 2 +- Source/Engine/Utilities/Extensions.cs | 2 +- Source/Engine/Utilities/HtmlParser.cs | 2 +- Source/Engine/Utilities/MeshDataCache.cs | 2 +- Source/Engine/Utilities/Nameof.h | 2 +- Source/Engine/Utilities/Noise.cpp | 2 +- Source/Engine/Utilities/Noise.h | 2 +- Source/Engine/Utilities/PerlinNoise.cs | 2 +- Source/Engine/Utilities/RectPack.h | 2 +- Source/Engine/Utilities/Screenshot.cpp | 2 +- Source/Engine/Utilities/Screenshot.h | 2 +- Source/Engine/Utilities/State.cs | 2 +- Source/Engine/Utilities/StateMachine.cpp | 2 +- Source/Engine/Utilities/StateMachine.cs | 2 +- Source/Engine/Utilities/StateMachine.h | 2 +- Source/Engine/Utilities/StringConverter.h | 2 +- Source/Engine/Utilities/StringUtils.cs | 2 +- Source/Engine/Utilities/TextProcessing.cpp | 2 +- Source/Engine/Utilities/TextProcessing.h | 2 +- Source/Engine/Utilities/TextWriter.h | 2 +- Source/Engine/Utilities/Utilities.Build.cs | 2 +- Source/Engine/Utilities/Utils.cs | 2 +- Source/Engine/Visject/Graph.h | 2 +- Source/Engine/Visject/GraphNode.h | 2 +- Source/Engine/Visject/GraphParameter.cpp | 2 +- Source/Engine/Visject/GraphParameter.h | 2 +- Source/Engine/Visject/GraphUtilities.cpp | 2 +- Source/Engine/Visject/GraphUtilities.h | 2 +- Source/Engine/Visject/ShaderGraph.cpp | 2 +- Source/Engine/Visject/ShaderGraph.h | 2 +- Source/Engine/Visject/ShaderGraphUtilities.cpp | 2 +- Source/Engine/Visject/ShaderGraphUtilities.h | 2 +- Source/Engine/Visject/ShaderGraphValue.cpp | 2 +- Source/Engine/Visject/ShaderGraphValue.h | 2 +- Source/Engine/Visject/Visject.Build.cs | 2 +- Source/Engine/Visject/VisjectGraph.cpp | 2 +- Source/Engine/Visject/VisjectGraph.h | 2 +- Source/Engine/Visject/VisjectMeta.cpp | 2 +- Source/Engine/Visject/VisjectMeta.h | 2 +- Source/FlaxEditor.Build.cs | 2 +- Source/FlaxEngine.Gen.cs | 4 ++-- Source/FlaxEngine.Gen.h | 2 +- Source/FlaxGame.Build.cs | 2 +- Source/FlaxTests.Build.cs | 2 +- Source/Shaders/ACES.hlsl | 2 +- Source/Shaders/Atmosphere.hlsl | 2 +- Source/Shaders/AtmosphereFog.hlsl | 2 +- Source/Shaders/AtmospherePreCompute.shader | 2 +- Source/Shaders/BRDF.hlsl | 2 +- Source/Shaders/BakeLightmap.shader | 2 +- Source/Shaders/BitonicSort.shader | 2 +- Source/Shaders/Collisions.hlsl | 2 +- Source/Shaders/ColorGrading.shader | 2 +- Source/Shaders/Common.hlsl | 2 +- Source/Shaders/DebugDraw.shader | 2 +- Source/Shaders/DepthOfField.shader | 2 +- Source/Shaders/Editor/LightmapUVsDensity.shader | 2 +- Source/Shaders/Editor/MaterialComplexity.shader | 2 +- Source/Shaders/Editor/QuadOverdraw.shader | 2 +- Source/Shaders/Editor/VertexColors.shader | 2 +- Source/Shaders/ExponentialHeightFog.hlsl | 2 +- Source/Shaders/EyeAdaptation.shader | 2 +- Source/Shaders/FXAA.shader | 2 +- Source/Shaders/Fog.shader | 2 +- Source/Shaders/Forward.shader | 2 +- Source/Shaders/GBuffer.hlsl | 2 +- Source/Shaders/GBuffer.shader | 2 +- Source/Shaders/GBufferCommon.hlsl | 2 +- Source/Shaders/GI/DDGI.hlsl | 2 +- Source/Shaders/GI/DDGI.shader | 2 +- Source/Shaders/GI/GlobalSurfaceAtlas.hlsl | 2 +- Source/Shaders/GI/GlobalSurfaceAtlas.shader | 2 +- Source/Shaders/GPUParticlesSorting.shader | 2 +- Source/Shaders/GUI.shader | 2 +- Source/Shaders/GUICommon.hlsl | 2 +- Source/Shaders/GammaCorrectionCommon.hlsl | 2 +- Source/Shaders/Gather.hlsl | 2 +- Source/Shaders/GlobalSignDistanceField.hlsl | 2 +- Source/Shaders/GlobalSignDistanceField.shader | 2 +- Source/Shaders/Histogram.shader | 2 +- Source/Shaders/IESProfile.hlsl | 2 +- Source/Shaders/Lighting.hlsl | 2 +- Source/Shaders/LightingCommon.hlsl | 2 +- Source/Shaders/Lights.shader | 2 +- Source/Shaders/MaterialCommon.hlsl | 2 +- Source/Shaders/Math.hlsl | 2 +- Source/Shaders/Matrix.hlsl | 2 +- Source/Shaders/MonteCarlo.hlsl | 2 +- Source/Shaders/MotionBlur.shader | 2 +- Source/Shaders/MultiScaler.shader | 2 +- Source/Shaders/Noise.hlsl | 2 +- Source/Shaders/Octahedral.hlsl | 2 +- Source/Shaders/PCFKernels.hlsl | 2 +- Source/Shaders/PostProcessing.shader | 2 +- Source/Shaders/ProbesFilter.shader | 2 +- Source/Shaders/Quad.shader | 2 +- Source/Shaders/Quaternion.hlsl | 2 +- Source/Shaders/Random.hlsl | 2 +- Source/Shaders/Reflections.shader | 2 +- Source/Shaders/ReflectionsCommon.hlsl | 2 +- Source/Shaders/SH.hlsl | 2 +- Source/Shaders/SMAA.shader | 2 +- Source/Shaders/SSAO.shader | 2 +- Source/Shaders/SSR.hlsl | 2 +- Source/Shaders/SSR.shader | 2 +- Source/Shaders/Shadows.shader | 2 +- Source/Shaders/ShadowsCommon.hlsl | 2 +- Source/Shaders/ShadowsSampling.hlsl | 2 +- Source/Shaders/Sky.shader | 2 +- Source/Shaders/TAA.shader | 2 +- Source/Shaders/VolumetricFog.shader | 2 +- Source/ThirdParty/DirectXMesh/DirectXMesh.Build.cs | 2 +- Source/ThirdParty/DirectXTex/DirectXTex.Build.cs | 2 +- Source/ThirdParty/LZ4/lz4.Build.cs | 2 +- Source/ThirdParty/MikkTSpace/MikkTSpace.Build.cs | 2 +- Source/ThirdParty/OpenFBX/OpenFBX.Build.cs | 2 +- Source/ThirdParty/PhysX/PhysX.Build.cs | 2 +- Source/ThirdParty/UVAtlas/UVAtlas.Build.cs | 2 +- .../ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs | 2 +- .../VulkanMemoryAllocator/VulkanMemoryAllocator.Build.cs | 2 +- Source/ThirdParty/assimp/assimp.Build.cs | 2 +- Source/ThirdParty/bc7enc16/bc7enc16.Build.cs | 2 +- Source/ThirdParty/catch2/catch2.Build.cs | 2 +- Source/ThirdParty/curl/curl.Build.cs | 2 +- Source/ThirdParty/detex/detex.Build.cs | 2 +- Source/ThirdParty/enet/enet.Build.cs | 2 +- Source/ThirdParty/fmt/fmt.Build.cs | 2 +- Source/ThirdParty/freetype/freetype.Build.cs | 2 +- Source/ThirdParty/glslang/glslang.Build.cs | 2 +- Source/ThirdParty/meshoptimizer/meshoptimizer.Build.cs | 2 +- Source/ThirdParty/minimp3/minimp3.Build.cs | 2 +- Source/ThirdParty/mono-2.0/mono.Build.cs | 2 +- Source/ThirdParty/ogg/ogg.Build.cs | 2 +- Source/ThirdParty/pugixml/pugixml.Build.cs | 2 +- Source/ThirdParty/rapidjson/rapidjson.Build.cs | 2 +- Source/ThirdParty/recastnavigation/recastnavigation.Build.cs | 2 +- Source/ThirdParty/spirv-tools/spirv_tools.Build.cs | 2 +- Source/ThirdParty/stb/stb.Build.cs | 2 +- Source/ThirdParty/tracy/tracy.Build.cs | 2 +- Source/ThirdParty/volk/volk.Build.cs | 2 +- Source/ThirdParty/vorbis/vorbis.Build.cs | 2 +- Source/Tools/Flax.Build.Tests/Flax.Build.Tests.Build.cs | 2 +- Source/Tools/Flax.Build.Tests/Properties/AssemblyInfo.cs | 4 ++-- Source/Tools/Flax.Build.Tests/TestCommandLine.cs | 2 +- Source/Tools/Flax.Build/Bindings/ApiTypeInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.Api.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.CSharp.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cache.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.Parsing.cs | 2 +- Source/Tools/Flax.Build/Bindings/BindingsGenerator.cs | 2 +- Source/Tools/Flax.Build/Bindings/ClassInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/ClassStructInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/EnumInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/EventInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/FieldInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/FileInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/FunctionInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/InheritanceInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/InjectCodeInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/InterfaceInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/LangType.cs | 2 +- Source/Tools/Flax.Build/Bindings/MemberInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/ModuleInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/PropertyInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/StructureInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/TypeInfo.cs | 2 +- Source/Tools/Flax.Build/Bindings/TypedefInfo.cs | 2 +- Source/Tools/Flax.Build/Build/Builder.Projects.cs | 2 +- Source/Tools/Flax.Build/Build/Builder.Rules.cs | 2 +- Source/Tools/Flax.Build/Build/Builder.cs | 2 +- Source/Tools/Flax.Build/Build/DepsModule.cs | 2 +- Source/Tools/Flax.Build/Build/DotNet/Builder.DotNet.cs | 2 +- Source/Tools/Flax.Build/Build/EditorModule.cs | 2 +- Source/Tools/Flax.Build/Build/EngineModule.cs | 2 +- Source/Tools/Flax.Build/Build/EngineTarget.cs | 2 +- Source/Tools/Flax.Build/Build/GameModule.cs | 2 +- Source/Tools/Flax.Build/Build/GameTarget.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/CompileTask.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/LinkTask.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/LocalExecutor.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/Task.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/TaskExecutor.cs | 2 +- Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs | 2 +- Source/Tools/Flax.Build/Build/HeaderOnlyModule.cs | 2 +- Source/Tools/Flax.Build/Build/InvalidArchitectureException.cs | 2 +- Source/Tools/Flax.Build/Build/InvalidPlatformException.cs | 2 +- Source/Tools/Flax.Build/Build/Module.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/BuildOptions.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/Builder.NativeCpp.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/CompileEnvironment.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/CompileOutput.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/IncludesCache.cs | 2 +- Source/Tools/Flax.Build/Build/NativeCpp/LinkEnvironment.cs | 2 +- Source/Tools/Flax.Build/Build/Platform.cs | 2 +- Source/Tools/Flax.Build/Build/Plugin.cs | 2 +- .../Tools/Flax.Build/Build/Plugins/VisualScriptingPlugin.cs | 2 +- Source/Tools/Flax.Build/Build/Profiling.cs | 2 +- Source/Tools/Flax.Build/Build/ProjectTarget.cs | 2 +- Source/Tools/Flax.Build/Build/Sdk.cs | 2 +- Source/Tools/Flax.Build/Build/Target.cs | 2 +- Source/Tools/Flax.Build/Build/ThirdPartyModule.cs | 2 +- Source/Tools/Flax.Build/Build/Toolchain.cs | 2 +- Source/Tools/Flax.Build/CommandLine.cs | 2 +- Source/Tools/Flax.Build/CommandLineAttribute.cs | 2 +- Source/Tools/Flax.Build/Configuration.cs | 2 +- Source/Tools/Flax.Build/Deploy/Configuration.cs | 2 +- Source/Tools/Flax.Build/Deps/Configuration.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/Assimp.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/DirectXMesh.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/DirectXTex.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/NewtonsoftJson.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/OpenAL.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/PhysX.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/UVAtlas.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/curl.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/freetype.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/glslang.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/mono.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/ogg.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependencies/vorbis.cs | 2 +- Source/Tools/Flax.Build/Deps/Dependency.cs | 2 +- Source/Tools/Flax.Build/Deps/DepsBuilder.cs | 2 +- Source/Tools/Flax.Build/Deps/Downloader.cs | 2 +- Source/Tools/Flax.Build/Deps/ProgressDisplay.cs | 2 +- Source/Tools/Flax.Build/Flax.Build.Build.cs | 2 +- Source/Tools/Flax.Build/Globals.cs | 2 +- Source/Tools/Flax.Build/Log.cs | 2 +- Source/Tools/Flax.Build/LogIndentScope.cs | 2 +- Source/Tools/Flax.Build/Platforms/Android/AndroidNdk.cs | 2 +- Source/Tools/Flax.Build/Platforms/Android/AndroidPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/Android/AndroidSdk.cs | 2 +- Source/Tools/Flax.Build/Platforms/Android/AndroidToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/GDK/GDK.cs | 2 +- Source/Tools/Flax.Build/Platforms/GDK/GDKPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/GDK/GDKToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/Linux/LinuxPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/Mac/MacPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/UWP/UWPPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/UWP/UWPToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/Unix/UnixPlatform.cs | 2 +- Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs | 2 +- Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs | 2 +- .../Tools/Flax.Build/Platforms/Windows/WindowsPlatformBase.cs | 2 +- Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchain.cs | 2 +- .../Flax.Build/Platforms/Windows/WindowsToolchainBase.cs | 2 +- Source/Tools/Flax.Build/Program.cs | 2 +- Source/Tools/Flax.Build/ProjectInfo.cs | 2 +- Source/Tools/Flax.Build/Projects/IProjectCustomizer.cs | 2 +- Source/Tools/Flax.Build/Projects/Project.cs | 2 +- Source/Tools/Flax.Build/Projects/ProjectFormat.cs | 2 +- Source/Tools/Flax.Build/Projects/Solution.cs | 2 +- .../Flax.Build/Projects/VisualStudio/CSProjectGenerator.cs | 2 +- .../Projects/VisualStudio/IVisualStudioProjectCustomizer.cs | 2 +- .../Flax.Build/Projects/VisualStudio/VCProjectGenerator.cs | 2 +- .../Flax.Build/Projects/VisualStudio/VisualStudioProject.cs | 2 +- .../Projects/VisualStudio/VisualStudioProjectGenerator.cs | 2 +- .../VisualStudioCode/VisualStudioCodeProjectGenerator.cs | 2 +- Source/Tools/Flax.Build/Projects/XCodeProjectGenerator.cs | 2 +- Source/Tools/Flax.Build/Properties/AssemblyInfo.cs | 4 ++-- Source/Tools/Flax.Build/Utilities/StringWriterWithEncoding.cs | 2 +- Source/Tools/Flax.Build/Utilities/Tokenizer.cs | 2 +- Source/Tools/Flax.Build/Utilities/TwoWayEnumerator.cs | 2 +- Source/Tools/Flax.Build/Utilities/Utilities.cs | 2 +- Source/Tools/Flax.Build/Utilities/WinAPI.cs | 2 +- Source/Tools/Flax.Stats/CodeFrame.cs | 2 +- Source/Tools/Flax.Stats/CodeFrameNode.cs | 2 +- Source/Tools/Flax.Stats/Flax.Stats.Build.cs | 2 +- Source/Tools/Flax.Stats/Languages.cs | 2 +- Source/Tools/Flax.Stats/Program.cs | 2 +- Source/Tools/Flax.Stats/TaskType.cs | 2 +- Source/Tools/Flax.Stats/Tools.cs | 2 +- Source/Tools/FlaxEngine.Tests/CircularBufferTests.cs | 2 +- Source/Tools/FlaxEngine.Tests/FlaxEngine.Tests.Build.cs | 2 +- Source/Tools/FlaxEngine.Tests/HistoryStackTests.cs | 2 +- Source/Tools/FlaxEngine.Tests/Properties/AssemblyInfo.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestColor.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestContainerControl.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestEditorStates.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestFloatR10G10B10A2.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestFloatR11G11B10.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestHtmlParser.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestPropertyNameUI.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestQuaternion.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestQueryFilterHelper.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestSceneGraph.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestSerialization.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestStringUtils.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestSurface.cs | 2 +- Source/Tools/FlaxEngine.Tests/TestTransform.cs | 2 +- Source/Tools/FlaxEngine.Tests/TextControl.cs | 2 +- Source/Tools/FlaxEngine.Tests/UndoTests.cs | 2 +- 2592 files changed, 2631 insertions(+), 2631 deletions(-) diff --git a/Content/Shaders/AtmospherePreCompute.flax b/Content/Shaders/AtmospherePreCompute.flax index 20491857f..b95df915d 100644 --- a/Content/Shaders/AtmospherePreCompute.flax +++ b/Content/Shaders/AtmospherePreCompute.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:68e1592216496fd6749ac4538dd2d549c39813d17ec3114514889100782007a6 -size 11418 +oid sha256:339f3706385a693095fa0cb23eccd57f429bf30f11af8a7e87c173a7bcfc74fb +size 11720 diff --git a/Content/Shaders/BakeLightmap.flax b/Content/Shaders/BakeLightmap.flax index 03af565fc..39e2e2f18 100644 --- a/Content/Shaders/BakeLightmap.flax +++ b/Content/Shaders/BakeLightmap.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0cf36b83e0bdbbf47b2d88b39d18ae3e1ac85246d46a05f1e6c58f89f4abc105 -size 15794 +oid sha256:c89b26b184343d0bfbde80d7dc5fe5dcee5b39f8dbac63ae4f1875cb86e3d006 +size 16284 diff --git a/Content/Shaders/BitonicSort.flax b/Content/Shaders/BitonicSort.flax index c49c2b73f..2beada4cb 100644 --- a/Content/Shaders/BitonicSort.flax +++ b/Content/Shaders/BitonicSort.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fbecce17a3a0dba01aa1e8d537041c27339a5f171c04cdeb83c68765fd6ac652 -size 6548 +oid sha256:d43253d3b1780cdbe683715ebc86731a285cc33be205fde5c578c42bb9afc5a9 +size 6808 diff --git a/Content/Shaders/ColorGrading.flax b/Content/Shaders/ColorGrading.flax index d36626d2c..dae561361 100644 --- a/Content/Shaders/ColorGrading.flax +++ b/Content/Shaders/ColorGrading.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:1841743cd96e3efba196cba05678658463c1c1fcd6b06ac7703e87bb2850d641 -size 10618 +oid sha256:ce60152b7076175eb50e07ad9895eacbfb4a9ed1365c1507266b21fcd3339958 +size 10925 diff --git a/Content/Shaders/DebugDraw.flax b/Content/Shaders/DebugDraw.flax index 4e824c30c..024978b04 100644 --- a/Content/Shaders/DebugDraw.flax +++ b/Content/Shaders/DebugDraw.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:9fc85c05a9203d53f03db74f4d04a39e651e34d310de119f06279a1ce0299bcc -size 2053 +oid sha256:104aeb07ffbb68a6c37d8817565f842a2bcabcfd7980ad1ec45a43c81e1b7a02 +size 2115 diff --git a/Content/Shaders/DepthOfField.flax b/Content/Shaders/DepthOfField.flax index 01c59af61..cdd916393 100644 --- a/Content/Shaders/DepthOfField.flax +++ b/Content/Shaders/DepthOfField.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:c1d43b30029382f57195c3af2b4d8036cf86c22183b92d88ce9ef7ccaaa07ca5 -size 13366 +oid sha256:52706d5cf87724ef95a09d398291f8809362acf2c04c3a306eb2ec4529c3dc9c +size 13786 diff --git a/Content/Shaders/Editor/LightmapUVsDensity.flax b/Content/Shaders/Editor/LightmapUVsDensity.flax index 145040bbe..d21b2569b 100644 --- a/Content/Shaders/Editor/LightmapUVsDensity.flax +++ b/Content/Shaders/Editor/LightmapUVsDensity.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7df3b4a9464524bb0354ab9f4e7dc6256af56d3f13f3b347a946742ecbf4c1d1 -size 4391 +oid sha256:38a8b656b4c30043c00766284db6fdab80ec0cbbbbd5f877f5c8ddf531783c7f +size 4509 diff --git a/Content/Shaders/Editor/MaterialComplexity.flax b/Content/Shaders/Editor/MaterialComplexity.flax index 490f72a38..020ca919f 100644 --- a/Content/Shaders/Editor/MaterialComplexity.flax +++ b/Content/Shaders/Editor/MaterialComplexity.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:446446a3e8e3e72793cfdf3cf76d705917a61814fd1f40cb60827ad3c002b21d -size 1303 +oid sha256:a76afec9068dfcf9ee607f24618b78535c3ca99cde21418497a8aeae352e9259 +size 1336 diff --git a/Content/Shaders/Editor/QuadOverdraw.flax b/Content/Shaders/Editor/QuadOverdraw.flax index 7e6bdfb9a..cf73ca5c3 100644 --- a/Content/Shaders/Editor/QuadOverdraw.flax +++ b/Content/Shaders/Editor/QuadOverdraw.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:50ab3a3734b0cd349aadd61c404739b48146cc1f326412dc5e4604da3fe03dc6 -size 1414 +oid sha256:56a14c7c2e11cb28ed3f54cfd4a8ef92338eb0b3f66253ca82e6667aa0c46ec7 +size 1448 diff --git a/Content/Shaders/Editor/VertexColors.flax b/Content/Shaders/Editor/VertexColors.flax index 92b00ddac..1c7f1e514 100644 --- a/Content/Shaders/Editor/VertexColors.flax +++ b/Content/Shaders/Editor/VertexColors.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:66e418d872f95996806ff866e4786d8d22e504c5209f4b7b8e140c29a77ce93f -size 2053 +oid sha256:a4b0f3eb59a298c52ede05429aa02cc15b813d4d750e2fad8b8ed9c259ead254 +size 2102 diff --git a/Content/Shaders/EyeAdaptation.flax b/Content/Shaders/EyeAdaptation.flax index 1f52e67da..39d7bf979 100644 --- a/Content/Shaders/EyeAdaptation.flax +++ b/Content/Shaders/EyeAdaptation.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0f1a19e5a918049d093d4536e540d4ffb779c2b0b4524a277b1503afbecea79b -size 4453 +oid sha256:8039e8c1ab301d9169c8d8da1243f05b911b47eab2347f805dfc595425ea7f1d +size 4610 diff --git a/Content/Shaders/FXAA.flax b/Content/Shaders/FXAA.flax index 4b6bdfe25..2c55c0fc5 100644 --- a/Content/Shaders/FXAA.flax +++ b/Content/Shaders/FXAA.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:142d7ede22ed99b095dd07fcce722b7668554911e57a1b41e17842e0383a8d24 -size 24484 +oid sha256:25aac99ec963cf1b59a10ee02ff703880790575090718234c93da56fcb579703 +size 25139 diff --git a/Content/Shaders/Fog.flax b/Content/Shaders/Fog.flax index f19396bd8..c5528aba8 100644 --- a/Content/Shaders/Fog.flax +++ b/Content/Shaders/Fog.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:4703c3f843dec8248938344d04778d4705eb61247610906af9ec22b4d42f1eae -size 2795 +oid sha256:2768d20c9add6fb8f804f0d185a77ae07c2ca5cd76834d01f0d2f9308ba83ac9 +size 2878 diff --git a/Content/Shaders/Forward.flax b/Content/Shaders/Forward.flax index 393603913..495143554 100644 --- a/Content/Shaders/Forward.flax +++ b/Content/Shaders/Forward.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0c76097d4a231be004658cdbbeae05058ff5408cb003d38ac5ef6ca927c04484 -size 1197 +oid sha256:5dd8603d0386c567a6b34abb952d2d7f1021a79c0ac49d27d76680b3db6290db +size 1221 diff --git a/Content/Shaders/GBuffer.flax b/Content/Shaders/GBuffer.flax index a22a76fb1..9439834ef 100644 --- a/Content/Shaders/GBuffer.flax +++ b/Content/Shaders/GBuffer.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:255a153284978cff6e0285f40355ba8695679f97215c2efe39082ae7422f7d8f -size 2774 +oid sha256:82194854951cca83832a0d43651fbfeae0004d8f2b822232befb1d5a5bc14320 +size 2845 diff --git a/Content/Shaders/GI/DDGI.flax b/Content/Shaders/GI/DDGI.flax index 6b0a66187..6525d0b84 100644 --- a/Content/Shaders/GI/DDGI.flax +++ b/Content/Shaders/GI/DDGI.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:e8a1f629462b91a6e520bff1c52e6144e157aa6c0b64508785f867e38f6fa051 -size 23092 +oid sha256:71e3b8d12fd9d86207cd28a78e9374fa40797527a06f79fe7843eb3cf11f186d +size 23668 diff --git a/Content/Shaders/GI/GlobalSurfaceAtlas.flax b/Content/Shaders/GI/GlobalSurfaceAtlas.flax index ba31eea60..b40d8a02c 100644 --- a/Content/Shaders/GI/GlobalSurfaceAtlas.flax +++ b/Content/Shaders/GI/GlobalSurfaceAtlas.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8247f56712db3e47150b4f75416ff8baee778f43f4825d9c802e6a95e57c802e -size 12614 +oid sha256:85223f7bdc067e21d97af999a600816f9f3d8e0e78591cbd529ffe320eb9134a +size 12954 diff --git a/Content/Shaders/GPUParticlesSorting.flax b/Content/Shaders/GPUParticlesSorting.flax index 08b6a4d78..1ea8529e8 100644 --- a/Content/Shaders/GPUParticlesSorting.flax +++ b/Content/Shaders/GPUParticlesSorting.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:fcfaa7567daaeac0ba0e3d135db52c674b7f17f8bace31b8a4f75ef8a24b21a7 -size 2639 +oid sha256:935ca5c9357068d3a9cce111db811b66c0cb94726e66ed53f946fe5e9dcc5fd7 +size 2726 diff --git a/Content/Shaders/GUI.flax b/Content/Shaders/GUI.flax index 18f16aa34..fc197f16a 100644 --- a/Content/Shaders/GUI.flax +++ b/Content/Shaders/GUI.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b4b204acc4b60f93a490e3178a853a7ae059ac5e6e1e4ee4dc7ebc0b8771413c -size 4943 +oid sha256:b0560421c43d81b73bc970ea77ff5d72661ef3817bbbf38cb91297596fb4c583 +size 5111 diff --git a/Content/Shaders/GlobalSignDistanceField.flax b/Content/Shaders/GlobalSignDistanceField.flax index 50ca8c78d..8014efcd5 100644 --- a/Content/Shaders/GlobalSignDistanceField.flax +++ b/Content/Shaders/GlobalSignDistanceField.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:dd3a18c7831eba6b531d82528733e2f7ab58a02b076441a974e2b999b26da616 -size 11498 +oid sha256:0a96e3dec992385e4e4e7073fdd990baf1351d027648c7e52808c3eaceb55348 +size 11787 diff --git a/Content/Shaders/Histogram.flax b/Content/Shaders/Histogram.flax index 9df23aad7..ed1416f93 100644 --- a/Content/Shaders/Histogram.flax +++ b/Content/Shaders/Histogram.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:761d2f9eea984a5cb46ba7a83f3f49c9cb7452a05420faecc70c55c3b56cfa45 -size 2532 +oid sha256:33cfa91ba55c9db2ae8171a5bef70102d0e343fdf718c76273bbea7584a54d9c +size 2609 diff --git a/Content/Shaders/Lights.flax b/Content/Shaders/Lights.flax index c76a501fe..34e8c9a8c 100644 --- a/Content/Shaders/Lights.flax +++ b/Content/Shaders/Lights.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:37b0d62eff4ed0ea2cd48c351e0f8e0ed98f1aac3b272fd0849227eda6cb6856 -size 5122 +oid sha256:b405f5698304e87e6f510c49a0cea3817c9a1a00d7ba63ef4027ac49ba7cc7a4 +size 5299 diff --git a/Content/Shaders/MotionBlur.flax b/Content/Shaders/MotionBlur.flax index a2c201bc6..9862b10de 100644 --- a/Content/Shaders/MotionBlur.flax +++ b/Content/Shaders/MotionBlur.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:7b468b522e29e3464a2e310334e011d793a10ebc20092e5bedd76d33ed608054 -size 9428 +oid sha256:54cbe480dd1d5367a576ae837d8f2a857c20d9d5722b3fd0e9cb3f26dcff8af7 +size 9685 diff --git a/Content/Shaders/MultiScaler.flax b/Content/Shaders/MultiScaler.flax index 8e5790610..25d80bdb9 100644 --- a/Content/Shaders/MultiScaler.flax +++ b/Content/Shaders/MultiScaler.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:a0412a83a79884e77e09f5debfedf45b5856756b2e2298edef196c9434d4bf19 -size 7006 +oid sha256:98e1d5722688473528daad4917d42ca3f29ae1cb772d7d4b6a47324ecb7e179f +size 7206 diff --git a/Content/Shaders/PostProcessing.flax b/Content/Shaders/PostProcessing.flax index bba56658c..b05747618 100644 --- a/Content/Shaders/PostProcessing.flax +++ b/Content/Shaders/PostProcessing.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:5f3c7923418f5872dc4bbfb08c39327f46d357c62827711da5e4e50332f26bc0 -size 16522 +oid sha256:782ef20c246ccf0e2017918457084e6abd76eb4da51c20b5ee54cabad9691fde +size 17056 diff --git a/Content/Shaders/ProbesFilter.flax b/Content/Shaders/ProbesFilter.flax index 59ec47ef3..219e309e4 100644 --- a/Content/Shaders/ProbesFilter.flax +++ b/Content/Shaders/ProbesFilter.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:bfc735d6646e35594c1441298a4718ea8cffe4517762f65982dabed50af8215e -size 2030 +oid sha256:c86511466b35459fd56d56bbb967eeba2a62f81ff3bbb5350caa4053f582424c +size 2108 diff --git a/Content/Shaders/Quad.flax b/Content/Shaders/Quad.flax index 6a6897dfb..afffe1740 100644 --- a/Content/Shaders/Quad.flax +++ b/Content/Shaders/Quad.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f9225e31ac76e66a2f4c09f70af326229c563155dc0c34eccb9f243f80c07908 -size 2242 +oid sha256:84b78a506468de38ae6a79b5d5a323fa188983a89911d9daf631ea865ad377c8 +size 2310 diff --git a/Content/Shaders/Reflections.flax b/Content/Shaders/Reflections.flax index e594c5727..ea5c5748e 100644 --- a/Content/Shaders/Reflections.flax +++ b/Content/Shaders/Reflections.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:772f6b54b8ab6f6f054935bd9593616896c9e7b56249f0b084d85858a50f4f00 -size 3193 +oid sha256:b2fcdfa2d37fae706cef4a034efd41e7ca121fee04fc736c756411acea106709 +size 3288 diff --git a/Content/Shaders/SMAA.flax b/Content/Shaders/SMAA.flax index 605524a5d..cf86144c8 100644 --- a/Content/Shaders/SMAA.flax +++ b/Content/Shaders/SMAA.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:8071432958f2e295bc22f7058970c18135c001a4f705f20c4c99385d8acf1daa -size 46449 +oid sha256:cc1a7e2905c78b1748f900c7ccc990c680e5e147f0cb7ac19bc17b38a5a7fdf0 +size 47673 diff --git a/Content/Shaders/SSAO.flax b/Content/Shaders/SSAO.flax index 232e72a8c..11120b533 100644 --- a/Content/Shaders/SSAO.flax +++ b/Content/Shaders/SSAO.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b6747405d3ef0698c9b84ceebfc1ba2fb3d255ffcec10bd5e5fb86b1ff632187 -size 36841 +oid sha256:88cae59a10224e0aa52e8938367d2ed285d9b9a67a5a83cab8e3925b951fbb28 +size 37614 diff --git a/Content/Shaders/SSR.flax b/Content/Shaders/SSR.flax index 09d4db9d7..9e63ae962 100644 --- a/Content/Shaders/SSR.flax +++ b/Content/Shaders/SSR.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:51826aca596ee714a557d74adcee138e674d30197cffebe454e20474713f3b37 -size 10916 +oid sha256:c400f07912ab73b91d4707ebbb94127b835265365ac37a6264e54e9dbba92f9f +size 11205 diff --git a/Content/Shaders/Shadows.flax b/Content/Shaders/Shadows.flax index 9c5e5b142..c3f7122ef 100644 --- a/Content/Shaders/Shadows.flax +++ b/Content/Shaders/Shadows.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:b823730a83d35980f63d3adb7d23c8ee4585826c6e6dd09555dd97aa77dad269 -size 7654 +oid sha256:28618c16b08b4991f449aaaf8ef5dc37a94bd60f3ffed27bfbe9d0428c8f3c3f +size 7847 diff --git a/Content/Shaders/Sky.flax b/Content/Shaders/Sky.flax index e7bc71130..56db9f8ed 100644 --- a/Content/Shaders/Sky.flax +++ b/Content/Shaders/Sky.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:0791b4d9504a0284ecb7f45b8339abab12a00396c2b4063ee4320ac15d92bc9b -size 3473 +oid sha256:688e95d912b4845b2c374bbbc913f3649d02ef7d6063f397c05bd2779ea1f733 +size 3572 diff --git a/Content/Shaders/TAA.flax b/Content/Shaders/TAA.flax index 65d5a2fae..77d22970c 100644 --- a/Content/Shaders/TAA.flax +++ b/Content/Shaders/TAA.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:f8103f574606ee8a27a3e1ac9d2bc796c5110711bb12246e1ff20e67d8844591 -size 3284 +oid sha256:d9e0645bcd3f16da49a74321a80d4b2d6cf2851860814f81946a5be3df69baae +size 3371 diff --git a/Content/Shaders/VolumetricFog.flax b/Content/Shaders/VolumetricFog.flax index 660b70338..fa1e2e6d5 100644 --- a/Content/Shaders/VolumetricFog.flax +++ b/Content/Shaders/VolumetricFog.flax @@ -1,3 +1,3 @@ version https://git-lfs.github.com/spec/v1 -oid sha256:819c97f3b6d28209f0fe3f09a0b89af88e24cff5bf57658e696b586f1ec040ed -size 13843 +oid sha256:c8722a0f1abc7d1e296d8dd91b0e9847f156974a8a017bdffebb5840b37a7eaa +size 14257 diff --git a/Development/Scripts/Linux/CallBuildTool.sh b/Development/Scripts/Linux/CallBuildTool.sh index 3052ee241..aa33bd65e 100755 --- a/Development/Scripts/Linux/CallBuildTool.sh +++ b/Development/Scripts/Linux/CallBuildTool.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/Development/Scripts/Mac/CallBuildTool.sh b/Development/Scripts/Mac/CallBuildTool.sh index e30a1ac1a..2096a5c57 100755 --- a/Development/Scripts/Mac/CallBuildTool.sh +++ b/Development/Scripts/Mac/CallBuildTool.sh @@ -1,5 +1,5 @@ #!/bin/bash -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved set -e diff --git a/Development/Scripts/Mac/XCodeBuild.sh b/Development/Scripts/Mac/XCodeBuild.sh index 42d16b82d..6b22e6e3f 100755 --- a/Development/Scripts/Mac/XCodeBuild.sh +++ b/Development/Scripts/Mac/XCodeBuild.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved # Fix mono bin to be in a path export PATH=/Library/Frameworks/Mono.framework/Versions/Current/Commands:$PATH diff --git a/Development/Scripts/Windows/CallBuildTool.bat b/Development/Scripts/Windows/CallBuildTool.bat index 396d59da4..bfe0e01d0 100644 --- a/Development/Scripts/Windows/CallBuildTool.bat +++ b/Development/Scripts/Windows/CallBuildTool.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. if not exist "Development\Scripts\Windows\GetMSBuildPath.bat" goto Error_InvalidLocation diff --git a/Development/Scripts/Windows/GetMSBuildPath.bat b/Development/Scripts/Windows/GetMSBuildPath.bat index fac1db727..b20230118 100644 --- a/Development/Scripts/Windows/GetMSBuildPath.bat +++ b/Development/Scripts/Windows/GetMSBuildPath.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set MSBUILD_PATH= diff --git a/Flax.flaxproj b/Flax.flaxproj index 8712154f5..ff6b97875 100644 --- a/Flax.flaxproj +++ b/Flax.flaxproj @@ -6,7 +6,7 @@ "Build": 6334 }, "Company": "Flax", - "Copyright": "Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.", + "Copyright": "Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.", "GameTarget": "FlaxGame", "EditorTarget": "FlaxEditor", "Configuration": { diff --git a/GenerateProjectFiles.bat b/GenerateProjectFiles.bat index c5c5fdeeb..1b766457f 100644 --- a/GenerateProjectFiles.bat +++ b/GenerateProjectFiles.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. setlocal pushd diff --git a/GenerateProjectFiles.command b/GenerateProjectFiles.command index f9771d425..6554886bc 100755 --- a/GenerateProjectFiles.command +++ b/GenerateProjectFiles.command @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/GenerateProjectFiles.sh b/GenerateProjectFiles.sh index 0e2fba28f..fcda1acc1 100755 --- a/GenerateProjectFiles.sh +++ b/GenerateProjectFiles.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/PackageAll.bat b/PackageAll.bat index 158dfaf04..02ab69f4d 100644 --- a/PackageAll.bat +++ b/PackageAll.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. setlocal pushd diff --git a/PackageEditor.bat b/PackageEditor.bat index 45e8655e0..2dc90f7f4 100644 --- a/PackageEditor.bat +++ b/PackageEditor.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. setlocal pushd diff --git a/PackageEditor.command b/PackageEditor.command index 7e88ad8de..d7cc909a0 100755 --- a/PackageEditor.command +++ b/PackageEditor.command @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/PackageEditor.sh b/PackageEditor.sh index 5b416c667..0584ab4e7 100755 --- a/PackageEditor.sh +++ b/PackageEditor.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/PackagePlatforms.bat b/PackagePlatforms.bat index 7ee0a4524..d8ebd0980 100644 --- a/PackagePlatforms.bat +++ b/PackagePlatforms.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. setlocal pushd diff --git a/PackagePlatforms.command b/PackagePlatforms.command index cbae4209b..20847f232 100755 --- a/PackagePlatforms.command +++ b/PackagePlatforms.command @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/PackagePlatforms.sh b/PackagePlatforms.sh index 6e1560338..3f9a9c550 100755 --- a/PackagePlatforms.sh +++ b/PackagePlatforms.sh @@ -1,5 +1,5 @@ #!/bin/sh -# Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +# Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. set -e diff --git a/RegisterEngineLocation.bat b/RegisterEngineLocation.bat index f9fec97e3..c4e4b1612 100644 --- a/RegisterEngineLocation.bat +++ b/RegisterEngineLocation.bat @@ -1,6 +1,6 @@ @echo off -rem Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +rem Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. setlocal pushd %~dp0 diff --git a/Source/Editor/Analytics/EditorAnalytics.cpp b/Source/Editor/Analytics/EditorAnalytics.cpp index 009b0e8ca..bf7cc1f6a 100644 --- a/Source/Editor/Analytics/EditorAnalytics.cpp +++ b/Source/Editor/Analytics/EditorAnalytics.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EditorAnalytics.h" #include "EditorAnalyticsController.h" diff --git a/Source/Editor/Analytics/EditorAnalytics.h b/Source/Editor/Analytics/EditorAnalytics.h index cc74c97a1..6a16020f2 100644 --- a/Source/Editor/Analytics/EditorAnalytics.h +++ b/Source/Editor/Analytics/EditorAnalytics.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Analytics/EditorAnalyticsController.cpp b/Source/Editor/Analytics/EditorAnalyticsController.cpp index a6dd4d759..0e1e461cf 100644 --- a/Source/Editor/Analytics/EditorAnalyticsController.cpp +++ b/Source/Editor/Analytics/EditorAnalyticsController.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EditorAnalyticsController.h" #include "Editor/Cooker/GameCooker.h" diff --git a/Source/Editor/Analytics/EditorAnalyticsController.h b/Source/Editor/Analytics/EditorAnalyticsController.h index 0a9ec3ea7..71656caee 100644 --- a/Source/Editor/Analytics/EditorAnalyticsController.h +++ b/Source/Editor/Analytics/EditorAnalyticsController.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Content/AssetItemConverter.cs b/Source/Editor/Content/AssetItemConverter.cs index 73ec18ad0..2d2d557d8 100644 --- a/Source/Editor/Content/AssetItemConverter.cs +++ b/Source/Editor/Content/AssetItemConverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using Newtonsoft.Json; diff --git a/Source/Editor/Content/Create/CreateFileEntry.cs b/Source/Editor/Content/Create/CreateFileEntry.cs index 9bcfd21ca..a60732cfc 100644 --- a/Source/Editor/Content/Create/CreateFileEntry.cs +++ b/Source/Editor/Content/Create/CreateFileEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Content.Create { diff --git a/Source/Editor/Content/Create/CreateFilesDialog.cs b/Source/Editor/Content/Create/CreateFilesDialog.cs index f1ed1457c..d48e878bc 100644 --- a/Source/Editor/Content/Create/CreateFilesDialog.cs +++ b/Source/Editor/Content/Create/CreateFilesDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Create/ParticleEmitterCreateEntry.cs b/Source/Editor/Content/Create/ParticleEmitterCreateEntry.cs index 8120f721e..1be5330e7 100644 --- a/Source/Editor/Content/Create/ParticleEmitterCreateEntry.cs +++ b/Source/Editor/Content/Create/ParticleEmitterCreateEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Create/SettingsCreateEntry.cs b/Source/Editor/Content/Create/SettingsCreateEntry.cs index c5484f7bf..5d881c649 100644 --- a/Source/Editor/Content/Create/SettingsCreateEntry.cs +++ b/Source/Editor/Content/Create/SettingsCreateEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Create/VisualScriptCreateEntry.cs b/Source/Editor/Content/Create/VisualScriptCreateEntry.cs index 0bbfdf21f..49a85fdb8 100644 --- a/Source/Editor/Content/Create/VisualScriptCreateEntry.cs +++ b/Source/Editor/Content/Create/VisualScriptCreateEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/GUI/ContentNavigationButton.cs b/Source/Editor/Content/GUI/ContentNavigationButton.cs index de353113e..d37e1629b 100644 --- a/Source/Editor/Content/GUI/ContentNavigationButton.cs +++ b/Source/Editor/Content/GUI/ContentNavigationButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEditor.GUI.Drag; diff --git a/Source/Editor/Content/GUI/ContentView.DragDrop.cs b/Source/Editor/Content/GUI/ContentView.DragDrop.cs index 3d82c6bd8..3c0993b93 100644 --- a/Source/Editor/Content/GUI/ContentView.DragDrop.cs +++ b/Source/Editor/Content/GUI/ContentView.DragDrop.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Drag; using FlaxEditor.SceneGraph; diff --git a/Source/Editor/Content/GUI/ContentView.cs b/Source/Editor/Content/GUI/ContentView.cs index 06df7d2a2..7eb2e0950 100644 --- a/Source/Editor/Content/GUI/ContentView.cs +++ b/Source/Editor/Content/GUI/ContentView.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/IFileEntryAction.cs b/Source/Editor/Content/IFileEntryAction.cs index 8681829f2..00662894d 100644 --- a/Source/Editor/Content/IFileEntryAction.cs +++ b/Source/Editor/Content/IFileEntryAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Import/AssetImportEntry.cs b/Source/Editor/Content/Import/AssetImportEntry.cs index 5a4e111c4..6a41f263a 100644 --- a/Source/Editor/Content/Import/AssetImportEntry.cs +++ b/Source/Editor/Content/Import/AssetImportEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Content.Import { diff --git a/Source/Editor/Content/Import/AudioImportSettings.cs b/Source/Editor/Content/Import/AudioImportSettings.cs index 19ad1065d..d71dbd114 100644 --- a/Source/Editor/Content/Import/AudioImportSettings.cs +++ b/Source/Editor/Content/Import/AudioImportSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using System.Reflection; diff --git a/Source/Editor/Content/Import/FolderImportEntry.cs b/Source/Editor/Content/Import/FolderImportEntry.cs index 66bc5eb14..928f60cfb 100644 --- a/Source/Editor/Content/Import/FolderImportEntry.cs +++ b/Source/Editor/Content/Import/FolderImportEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Editor/Content/Import/ImportFileEntry.cs b/Source/Editor/Content/Import/ImportFileEntry.cs index 60d0e43d8..822312591 100644 --- a/Source/Editor/Content/Import/ImportFileEntry.cs +++ b/Source/Editor/Content/Import/ImportFileEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Editor/Content/Import/ImportFilesDialog.cs b/Source/Editor/Content/Import/ImportFilesDialog.cs index c9b5a0ef3..ab2c7be15 100644 --- a/Source/Editor/Content/Import/ImportFilesDialog.cs +++ b/Source/Editor/Content/Import/ImportFilesDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Import/ModelImportEntry.cs b/Source/Editor/Content/Import/ModelImportEntry.cs index bded33956..71a070333 100644 --- a/Source/Editor/Content/Import/ModelImportEntry.cs +++ b/Source/Editor/Content/Import/ModelImportEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using System.Runtime.CompilerServices; diff --git a/Source/Editor/Content/Import/Request.cs b/Source/Editor/Content/Import/Request.cs index 5e09dd61c..abdd531b3 100644 --- a/Source/Editor/Content/Import/Request.cs +++ b/Source/Editor/Content/Import/Request.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Import/TextureImportEntry.cs b/Source/Editor/Content/Import/TextureImportEntry.cs index 0ac44ec0b..33baf6c69 100644 --- a/Source/Editor/Content/Import/TextureImportEntry.cs +++ b/Source/Editor/Content/Import/TextureImportEntry.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.ComponentModel; diff --git a/Source/Editor/Content/Items/AssetItem.cs b/Source/Editor/Content/Items/AssetItem.cs index 33e06cb2a..6697ed27c 100644 --- a/Source/Editor/Content/Items/AssetItem.cs +++ b/Source/Editor/Content/Items/AssetItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Items/BinaryAssetItem.cs b/Source/Editor/Content/Items/BinaryAssetItem.cs index a700f70d8..3868c9c8a 100644 --- a/Source/Editor/Content/Items/BinaryAssetItem.cs +++ b/Source/Editor/Content/Items/BinaryAssetItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Text; diff --git a/Source/Editor/Content/Items/CSharpScriptItem.cs b/Source/Editor/Content/Items/CSharpScriptItem.cs index 80f2122d8..9a214a0e8 100644 --- a/Source/Editor/Content/Items/CSharpScriptItem.cs +++ b/Source/Editor/Content/Items/CSharpScriptItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Items/ContentFolder.cs b/Source/Editor/Content/Items/ContentFolder.cs index ff47a0916..cbbc15f24 100644 --- a/Source/Editor/Content/Items/ContentFolder.cs +++ b/Source/Editor/Content/Items/ContentFolder.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Items/ContentItem.cs b/Source/Editor/Content/Items/ContentItem.cs index 1cc6d480e..fb930d192 100644 --- a/Source/Editor/Content/Items/ContentItem.cs +++ b/Source/Editor/Content/Items/ContentItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Items/CppScriptItem.cs b/Source/Editor/Content/Items/CppScriptItem.cs index 54fe6eaef..c4fbb99e8 100644 --- a/Source/Editor/Content/Items/CppScriptItem.cs +++ b/Source/Editor/Content/Items/CppScriptItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Items/FileItem.cs b/Source/Editor/Content/Items/FileItem.cs index f99915faf..5e355087a 100644 --- a/Source/Editor/Content/Items/FileItem.cs +++ b/Source/Editor/Content/Items/FileItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Items/JsonAssetItem.cs b/Source/Editor/Content/Items/JsonAssetItem.cs index 09deb4ace..330807793 100644 --- a/Source/Editor/Content/Items/JsonAssetItem.cs +++ b/Source/Editor/Content/Items/JsonAssetItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Items/NewItem.cs b/Source/Editor/Content/Items/NewItem.cs index 578de1258..da8b0ca9a 100644 --- a/Source/Editor/Content/Items/NewItem.cs +++ b/Source/Editor/Content/Items/NewItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Items/PrefabItem.cs b/Source/Editor/Content/Items/PrefabItem.cs index ec4604a6f..718d029eb 100644 --- a/Source/Editor/Content/Items/PrefabItem.cs +++ b/Source/Editor/Content/Items/PrefabItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Items/SceneItem.cs b/Source/Editor/Content/Items/SceneItem.cs index f0a0a6726..cf2ada96b 100644 --- a/Source/Editor/Content/Items/SceneItem.cs +++ b/Source/Editor/Content/Items/SceneItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Items/ScriptItem.cs b/Source/Editor/Content/Items/ScriptItem.cs index 21cfb2825..811afc179 100644 --- a/Source/Editor/Content/Items/ScriptItem.cs +++ b/Source/Editor/Content/Items/ScriptItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Text; diff --git a/Source/Editor/Content/Items/ShaderSourceItem.cs b/Source/Editor/Content/Items/ShaderSourceItem.cs index b56d759c2..b5572787c 100644 --- a/Source/Editor/Content/Items/ShaderSourceItem.cs +++ b/Source/Editor/Content/Items/ShaderSourceItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/Items/VisualScriptItem.cs b/Source/Editor/Content/Items/VisualScriptItem.cs index 3fc030420..6638c2c67 100644 --- a/Source/Editor/Content/Items/VisualScriptItem.cs +++ b/Source/Editor/Content/Items/VisualScriptItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/PreviewsCache.cpp b/Source/Editor/Content/PreviewsCache.cpp index 3d87e57ca..2d62e8170 100644 --- a/Source/Editor/Content/PreviewsCache.cpp +++ b/Source/Editor/Content/PreviewsCache.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PreviewsCache.h" #include "Engine/Core/Log.h" diff --git a/Source/Editor/Content/PreviewsCache.cs b/Source/Editor/Content/PreviewsCache.cs index d6da73673..618ed08f5 100644 --- a/Source/Editor/Content/PreviewsCache.cs +++ b/Source/Editor/Content/PreviewsCache.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Content/PreviewsCache.h b/Source/Editor/Content/PreviewsCache.h index 5c4ee676f..d7271828e 100644 --- a/Source/Editor/Content/PreviewsCache.h +++ b/Source/Editor/Content/PreviewsCache.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Content/Proxy/AnimationGraphFunctionProxy.cs b/Source/Editor/Content/Proxy/AnimationGraphFunctionProxy.cs index a8092a162..f714ddbeb 100644 --- a/Source/Editor/Content/Proxy/AnimationGraphFunctionProxy.cs +++ b/Source/Editor/Content/Proxy/AnimationGraphFunctionProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/AnimationGraphProxy.cs b/Source/Editor/Content/Proxy/AnimationGraphProxy.cs index 7f43b8c7b..3e6c35c6d 100644 --- a/Source/Editor/Content/Proxy/AnimationGraphProxy.cs +++ b/Source/Editor/Content/Proxy/AnimationGraphProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/AnimationProxy.cs b/Source/Editor/Content/Proxy/AnimationProxy.cs index eb8c892ab..2cf46d3a3 100644 --- a/Source/Editor/Content/Proxy/AnimationProxy.cs +++ b/Source/Editor/Content/Proxy/AnimationProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/AssetProxy.cs b/Source/Editor/Content/Proxy/AssetProxy.cs index 6516dbc37..3bd23ad03 100644 --- a/Source/Editor/Content/Proxy/AssetProxy.cs +++ b/Source/Editor/Content/Proxy/AssetProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/AudioClipProxy.cs b/Source/Editor/Content/Proxy/AudioClipProxy.cs index 8b9ace491..3e7784311 100644 --- a/Source/Editor/Content/Proxy/AudioClipProxy.cs +++ b/Source/Editor/Content/Proxy/AudioClipProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Proxy/BinaryAssetProxy.cs b/Source/Editor/Content/Proxy/BinaryAssetProxy.cs index 1fe3c5f47..dcd8fd68a 100644 --- a/Source/Editor/Content/Proxy/BinaryAssetProxy.cs +++ b/Source/Editor/Content/Proxy/BinaryAssetProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Proxy/CSharpScriptProxy.cs b/Source/Editor/Content/Proxy/CSharpScriptProxy.cs index a871d0589..24c44aa20 100644 --- a/Source/Editor/Content/Proxy/CSharpScriptProxy.cs +++ b/Source/Editor/Content/Proxy/CSharpScriptProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/CollisionDataProxy.cs b/Source/Editor/Content/Proxy/CollisionDataProxy.cs index b6ff2e75f..e865834fd 100644 --- a/Source/Editor/Content/Proxy/CollisionDataProxy.cs +++ b/Source/Editor/Content/Proxy/CollisionDataProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/ContentProxy.cs b/Source/Editor/Content/Proxy/ContentProxy.cs index 779232d42..ff8603589 100644 --- a/Source/Editor/Content/Proxy/ContentProxy.cs +++ b/Source/Editor/Content/Proxy/ContentProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Content/Proxy/CppProxy.cs b/Source/Editor/Content/Proxy/CppProxy.cs index 6581dccd2..fc847884d 100644 --- a/Source/Editor/Content/Proxy/CppProxy.cs +++ b/Source/Editor/Content/Proxy/CppProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/CubeTextureProxy.cs b/Source/Editor/Content/Proxy/CubeTextureProxy.cs index d89771b13..691e4ac53 100644 --- a/Source/Editor/Content/Proxy/CubeTextureProxy.cs +++ b/Source/Editor/Content/Proxy/CubeTextureProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/FileProxy.cs b/Source/Editor/Content/Proxy/FileProxy.cs index 8f9c5766d..10f0ee2f2 100644 --- a/Source/Editor/Content/Proxy/FileProxy.cs +++ b/Source/Editor/Content/Proxy/FileProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Windows; using FlaxEngine; diff --git a/Source/Editor/Content/Proxy/FontProxy.cs b/Source/Editor/Content/Proxy/FontProxy.cs index 10f0d9076..1f5078f82 100644 --- a/Source/Editor/Content/Proxy/FontProxy.cs +++ b/Source/Editor/Content/Proxy/FontProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/GameplayGlobalsProxy.cs b/Source/Editor/Content/Proxy/GameplayGlobalsProxy.cs index af391a8c4..775723ab3 100644 --- a/Source/Editor/Content/Proxy/GameplayGlobalsProxy.cs +++ b/Source/Editor/Content/Proxy/GameplayGlobalsProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/IESProfileProxy.cs b/Source/Editor/Content/Proxy/IESProfileProxy.cs index 55b4c8d47..0c7e4d6c3 100644 --- a/Source/Editor/Content/Proxy/IESProfileProxy.cs +++ b/Source/Editor/Content/Proxy/IESProfileProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/JsonAssetProxy.cs b/Source/Editor/Content/Proxy/JsonAssetProxy.cs index 8bfaae384..78fb5367a 100644 --- a/Source/Editor/Content/Proxy/JsonAssetProxy.cs +++ b/Source/Editor/Content/Proxy/JsonAssetProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Create; diff --git a/Source/Editor/Content/Proxy/LocalizedStringTableProxy.cs b/Source/Editor/Content/Proxy/LocalizedStringTableProxy.cs index 9bcdf29e7..f36cbabd6 100644 --- a/Source/Editor/Content/Proxy/LocalizedStringTableProxy.cs +++ b/Source/Editor/Content/Proxy/LocalizedStringTableProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Windows; using FlaxEditor.Windows.Assets; diff --git a/Source/Editor/Content/Proxy/MaterialFunctionProxy.cs b/Source/Editor/Content/Proxy/MaterialFunctionProxy.cs index f8c868cb5..ab59f11f3 100644 --- a/Source/Editor/Content/Proxy/MaterialFunctionProxy.cs +++ b/Source/Editor/Content/Proxy/MaterialFunctionProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/MaterialInstanceProxy.cs b/Source/Editor/Content/Proxy/MaterialInstanceProxy.cs index 60ff9bc51..dcc3e3ec4 100644 --- a/Source/Editor/Content/Proxy/MaterialInstanceProxy.cs +++ b/Source/Editor/Content/Proxy/MaterialInstanceProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/MaterialProxy.cs b/Source/Editor/Content/Proxy/MaterialProxy.cs index 68c9c81b7..9cbd54975 100644 --- a/Source/Editor/Content/Proxy/MaterialProxy.cs +++ b/Source/Editor/Content/Proxy/MaterialProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/ModelProxy.cs b/Source/Editor/Content/Proxy/ModelProxy.cs index b99d15134..ec6b3cd1b 100644 --- a/Source/Editor/Content/Proxy/ModelProxy.cs +++ b/Source/Editor/Content/Proxy/ModelProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/ParticleEmitterFunctionProxy.cs b/Source/Editor/Content/Proxy/ParticleEmitterFunctionProxy.cs index b508bb818..3a2ed749f 100644 --- a/Source/Editor/Content/Proxy/ParticleEmitterFunctionProxy.cs +++ b/Source/Editor/Content/Proxy/ParticleEmitterFunctionProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/ParticleEmitterProxy.cs b/Source/Editor/Content/Proxy/ParticleEmitterProxy.cs index be07720d2..0179a2992 100644 --- a/Source/Editor/Content/Proxy/ParticleEmitterProxy.cs +++ b/Source/Editor/Content/Proxy/ParticleEmitterProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Create; diff --git a/Source/Editor/Content/Proxy/ParticleSystemProxy.cs b/Source/Editor/Content/Proxy/ParticleSystemProxy.cs index 38301afdf..047853f0b 100644 --- a/Source/Editor/Content/Proxy/ParticleSystemProxy.cs +++ b/Source/Editor/Content/Proxy/ParticleSystemProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/PrefabProxy.cs b/Source/Editor/Content/Proxy/PrefabProxy.cs index a4610b25a..3bcb3cbb3 100644 --- a/Source/Editor/Content/Proxy/PrefabProxy.cs +++ b/Source/Editor/Content/Proxy/PrefabProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/PreviewsCacheProxy.cs b/Source/Editor/Content/Proxy/PreviewsCacheProxy.cs index b3bc6e73f..7c617cd2f 100644 --- a/Source/Editor/Content/Proxy/PreviewsCacheProxy.cs +++ b/Source/Editor/Content/Proxy/PreviewsCacheProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/SceneAnimationProxy.cs b/Source/Editor/Content/Proxy/SceneAnimationProxy.cs index 30409208e..73c51c072 100644 --- a/Source/Editor/Content/Proxy/SceneAnimationProxy.cs +++ b/Source/Editor/Content/Proxy/SceneAnimationProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/SceneProxy.cs b/Source/Editor/Content/Proxy/SceneProxy.cs index cecd825a1..78d88b440 100644 --- a/Source/Editor/Content/Proxy/SceneProxy.cs +++ b/Source/Editor/Content/Proxy/SceneProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/ScriptProxy.cs b/Source/Editor/Content/Proxy/ScriptProxy.cs index 9874b7c0f..3196ea833 100644 --- a/Source/Editor/Content/Proxy/ScriptProxy.cs +++ b/Source/Editor/Content/Proxy/ScriptProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/SettingsProxy.cs b/Source/Editor/Content/Proxy/SettingsProxy.cs index 651ba62d2..6c5363a7b 100644 --- a/Source/Editor/Content/Proxy/SettingsProxy.cs +++ b/Source/Editor/Content/Proxy/SettingsProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Create; diff --git a/Source/Editor/Content/Proxy/ShaderProxy.cs b/Source/Editor/Content/Proxy/ShaderProxy.cs index b65949460..2f5c6fe42 100644 --- a/Source/Editor/Content/Proxy/ShaderProxy.cs +++ b/Source/Editor/Content/Proxy/ShaderProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/ShaderSourceProxy.cs b/Source/Editor/Content/Proxy/ShaderSourceProxy.cs index 9b2ec22d5..4e7d49a05 100644 --- a/Source/Editor/Content/Proxy/ShaderSourceProxy.cs +++ b/Source/Editor/Content/Proxy/ShaderSourceProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Content/Proxy/SkeletonMaskProxy.cs b/Source/Editor/Content/Proxy/SkeletonMaskProxy.cs index ab78a1e09..f300a4c61 100644 --- a/Source/Editor/Content/Proxy/SkeletonMaskProxy.cs +++ b/Source/Editor/Content/Proxy/SkeletonMaskProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/Content/Proxy/SkinnedModelProxy.cs b/Source/Editor/Content/Proxy/SkinnedModelProxy.cs index 597c69a1d..a500bc48e 100644 --- a/Source/Editor/Content/Proxy/SkinnedModelProxy.cs +++ b/Source/Editor/Content/Proxy/SkinnedModelProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/SpriteAtlasProxy.cs b/Source/Editor/Content/Proxy/SpriteAtlasProxy.cs index 5184abafb..7e975a979 100644 --- a/Source/Editor/Content/Proxy/SpriteAtlasProxy.cs +++ b/Source/Editor/Content/Proxy/SpriteAtlasProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/TextureProxy.cs b/Source/Editor/Content/Proxy/TextureProxy.cs index 67de33851..48bfcc9e9 100644 --- a/Source/Editor/Content/Proxy/TextureProxy.cs +++ b/Source/Editor/Content/Proxy/TextureProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Thumbnails; diff --git a/Source/Editor/Content/Proxy/VisualScriptProxy.cs b/Source/Editor/Content/Proxy/VisualScriptProxy.cs index afd105131..ff2d8df65 100644 --- a/Source/Editor/Content/Proxy/VisualScriptProxy.cs +++ b/Source/Editor/Content/Proxy/VisualScriptProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Settings/BuildPreset.cs b/Source/Editor/Content/Settings/BuildPreset.cs index 6c2750592..a5e347990 100644 --- a/Source/Editor/Content/Settings/BuildPreset.cs +++ b/Source/Editor/Content/Settings/BuildPreset.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Settings/BuildTarget.cs b/Source/Editor/Content/Settings/BuildTarget.cs index 9863b0ee2..63ee280e3 100644 --- a/Source/Editor/Content/Settings/BuildTarget.cs +++ b/Source/Editor/Content/Settings/BuildTarget.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Thumbnails/ThumbnailRequest.cs b/Source/Editor/Content/Thumbnails/ThumbnailRequest.cs index 3e4199313..6e60602ff 100644 --- a/Source/Editor/Content/Thumbnails/ThumbnailRequest.cs +++ b/Source/Editor/Content/Thumbnails/ThumbnailRequest.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Content/Thumbnails/ThumbnailsModule.cs b/Source/Editor/Content/Thumbnails/ThumbnailsModule.cs index 6dca522c8..3e9274c83 100644 --- a/Source/Editor/Content/Thumbnails/ThumbnailsModule.cs +++ b/Source/Editor/Content/Thumbnails/ThumbnailsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Content/Tree/ContentTreeNode.cs b/Source/Editor/Content/Tree/ContentTreeNode.cs index 27e7cf76c..2f6651b14 100644 --- a/Source/Editor/Content/Tree/ContentTreeNode.cs +++ b/Source/Editor/Content/Tree/ContentTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.GUI; diff --git a/Source/Editor/Content/Tree/MainContentTreeNode.cs b/Source/Editor/Content/Tree/MainContentTreeNode.cs index 2bd7f0ff2..43b36986d 100644 --- a/Source/Editor/Content/Tree/MainContentTreeNode.cs +++ b/Source/Editor/Content/Tree/MainContentTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Editor/Content/Tree/ProjectTreeNode.cs b/Source/Editor/Content/Tree/ProjectTreeNode.cs index b3e9b9939..b5aae571b 100644 --- a/Source/Editor/Content/Tree/ProjectTreeNode.cs +++ b/Source/Editor/Content/Tree/ProjectTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/Content/Tree/RootContentTreeNode.cs b/Source/Editor/Content/Tree/RootContentTreeNode.cs index 9f04e5d20..6dde4cbb2 100644 --- a/Source/Editor/Content/Tree/RootContentTreeNode.cs +++ b/Source/Editor/Content/Tree/RootContentTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Content { diff --git a/Source/Editor/Cooker/CookingData.h b/Source/Editor/Cooker/CookingData.h index 5f91638ad..08cb995bb 100644 --- a/Source/Editor/Cooker/CookingData.h +++ b/Source/Editor/Cooker/CookingData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/GameCooker.cpp b/Source/Editor/Cooker/GameCooker.cpp index 01d09bfbf..624b1db7d 100644 --- a/Source/Editor/Cooker/GameCooker.cpp +++ b/Source/Editor/Cooker/GameCooker.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GameCooker.h" #include "PlatformTools.h" diff --git a/Source/Editor/Cooker/GameCooker.cs b/Source/Editor/Cooker/GameCooker.cs index 6176d6d4b..5ffa5fd25 100644 --- a/Source/Editor/Cooker/GameCooker.cs +++ b/Source/Editor/Cooker/GameCooker.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Cooker/GameCooker.h b/Source/Editor/Cooker/GameCooker.h index 981151c63..d47539850 100644 --- a/Source/Editor/Cooker/GameCooker.h +++ b/Source/Editor/Cooker/GameCooker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.cpp b/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.cpp index 9d06b5c1c..e791b3264 100644 --- a/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.cpp +++ b/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_TOOLS_GDK diff --git a/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.h b/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.h index 0b8ef65c1..350d95257 100644 --- a/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.h +++ b/Source/Editor/Cooker/Platform/GDK/GDKPlatformTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/CollectAssetsStep.cpp b/Source/Editor/Cooker/Steps/CollectAssetsStep.cpp index 7d18a1a15..9adfebeca 100644 --- a/Source/Editor/Cooker/Steps/CollectAssetsStep.cpp +++ b/Source/Editor/Cooker/Steps/CollectAssetsStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CollectAssetsStep.h" #include "Engine/Content/Content.h" diff --git a/Source/Editor/Cooker/Steps/CollectAssetsStep.h b/Source/Editor/Cooker/Steps/CollectAssetsStep.h index 643b223b3..0542cf5f4 100644 --- a/Source/Editor/Cooker/Steps/CollectAssetsStep.h +++ b/Source/Editor/Cooker/Steps/CollectAssetsStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/CompileScriptsStep.cpp b/Source/Editor/Cooker/Steps/CompileScriptsStep.cpp index b89ef05b0..ae865e14a 100644 --- a/Source/Editor/Cooker/Steps/CompileScriptsStep.cpp +++ b/Source/Editor/Cooker/Steps/CompileScriptsStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CompileScriptsStep.h" #include "Editor/Scripting/ScriptsBuilder.h" diff --git a/Source/Editor/Cooker/Steps/CompileScriptsStep.h b/Source/Editor/Cooker/Steps/CompileScriptsStep.h index 4553ff3b7..80785fc08 100644 --- a/Source/Editor/Cooker/Steps/CompileScriptsStep.h +++ b/Source/Editor/Cooker/Steps/CompileScriptsStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/CookAssetsStep.cpp b/Source/Editor/Cooker/Steps/CookAssetsStep.cpp index aee282024..d65d9bbd8 100644 --- a/Source/Editor/Cooker/Steps/CookAssetsStep.cpp +++ b/Source/Editor/Cooker/Steps/CookAssetsStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CookAssetsStep.h" #include "Editor/Cooker/PlatformTools.h" diff --git a/Source/Editor/Cooker/Steps/CookAssetsStep.h b/Source/Editor/Cooker/Steps/CookAssetsStep.h index 7a6163700..c552e532c 100644 --- a/Source/Editor/Cooker/Steps/CookAssetsStep.h +++ b/Source/Editor/Cooker/Steps/CookAssetsStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/DeployDataStep.cpp b/Source/Editor/Cooker/Steps/DeployDataStep.cpp index 3973c4039..b87fd48a9 100644 --- a/Source/Editor/Cooker/Steps/DeployDataStep.cpp +++ b/Source/Editor/Cooker/Steps/DeployDataStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DeployDataStep.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Editor/Cooker/Steps/DeployDataStep.h b/Source/Editor/Cooker/Steps/DeployDataStep.h index d9d04a46f..2a54190d4 100644 --- a/Source/Editor/Cooker/Steps/DeployDataStep.h +++ b/Source/Editor/Cooker/Steps/DeployDataStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/PostProcessStep.cpp b/Source/Editor/Cooker/Steps/PostProcessStep.cpp index 68556f0cc..b79eed03d 100644 --- a/Source/Editor/Cooker/Steps/PostProcessStep.cpp +++ b/Source/Editor/Cooker/Steps/PostProcessStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PostProcessStep.h" #include "Editor/Cooker/PlatformTools.h" diff --git a/Source/Editor/Cooker/Steps/PostProcessStep.h b/Source/Editor/Cooker/Steps/PostProcessStep.h index e05b09b7b..b7b854dc9 100644 --- a/Source/Editor/Cooker/Steps/PostProcessStep.h +++ b/Source/Editor/Cooker/Steps/PostProcessStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.cpp b/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.cpp index 2f7cf77e0..54bd4111d 100644 --- a/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.cpp +++ b/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PrecompileAssembliesStep.h" #include "Editor/Scripting/ScriptsBuilder.h" diff --git a/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.h b/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.h index 6004e32ac..d7c89e7ed 100644 --- a/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.h +++ b/Source/Editor/Cooker/Steps/PrecompileAssembliesStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Cooker/Steps/ValidateStep.cpp b/Source/Editor/Cooker/Steps/ValidateStep.cpp index 95d54cb0d..d27a9780f 100644 --- a/Source/Editor/Cooker/Steps/ValidateStep.cpp +++ b/Source/Editor/Cooker/Steps/ValidateStep.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ValidateStep.h" #include "Engine/Core/Config/GameSettings.h" diff --git a/Source/Editor/Cooker/Steps/ValidateStep.h b/Source/Editor/Cooker/Steps/ValidateStep.h index ba156045a..bcf86e73a 100644 --- a/Source/Editor/Cooker/Steps/ValidateStep.h +++ b/Source/Editor/Cooker/Steps/ValidateStep.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/CustomEditorWindow.cs b/Source/Editor/CustomEditorWindow.cs index 86ead8333..2d5293f30 100644 --- a/Source/Editor/CustomEditorWindow.cs +++ b/Source/Editor/CustomEditorWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.Windows; diff --git a/Source/Editor/CustomEditors/CustomEditor.cs b/Source/Editor/CustomEditors/CustomEditor.cs index 1b4b3e013..0b9b536ff 100644 --- a/Source/Editor/CustomEditors/CustomEditor.cs +++ b/Source/Editor/CustomEditors/CustomEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/CustomEditorPresenter.cs b/Source/Editor/CustomEditors/CustomEditorPresenter.cs index 48371a936..a04070a06 100644 --- a/Source/Editor/CustomEditors/CustomEditorPresenter.cs +++ b/Source/Editor/CustomEditors/CustomEditorPresenter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/CustomEditorsUtil.cpp b/Source/Editor/CustomEditors/CustomEditorsUtil.cpp index a02ad1c4a..bfb7a93a5 100644 --- a/Source/Editor/CustomEditors/CustomEditorsUtil.cpp +++ b/Source/Editor/CustomEditors/CustomEditorsUtil.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CustomEditorsUtil.h" #include "Engine/Core/Log.h" diff --git a/Source/Editor/CustomEditors/CustomEditorsUtil.cs b/Source/Editor/CustomEditors/CustomEditorsUtil.cs index 4b934cbd6..99f82b978 100644 --- a/Source/Editor/CustomEditors/CustomEditorsUtil.cs +++ b/Source/Editor/CustomEditors/CustomEditorsUtil.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/CustomEditorsUtil.h b/Source/Editor/CustomEditors/CustomEditorsUtil.h index 0e2c72e8d..287602369 100644 --- a/Source/Editor/CustomEditors/CustomEditorsUtil.h +++ b/Source/Editor/CustomEditors/CustomEditorsUtil.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/CustomEditors/Dedicated/ActorEditor.cs b/Source/Editor/CustomEditors/Dedicated/ActorEditor.cs index dc11d4a69..792d3ae4d 100644 --- a/Source/Editor/CustomEditors/Dedicated/ActorEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/ActorEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs b/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs index 872baeb5d..8cb0c160f 100644 --- a/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/AnimatedModelEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Surface; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/CurveObjectEditor.cs b/Source/Editor/CustomEditors/Dedicated/CurveObjectEditor.cs index 0eccb6f54..e7652fa90 100644 --- a/Source/Editor/CustomEditors/Dedicated/CurveObjectEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/CurveObjectEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/EnvironmentProbeEditor.cs b/Source/Editor/CustomEditors/Dedicated/EnvironmentProbeEditor.cs index 99a315542..fe8b5b4eb 100644 --- a/Source/Editor/CustomEditors/Dedicated/EnvironmentProbeEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/EnvironmentProbeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/FontReferenceEditor.cs b/Source/Editor/CustomEditors/Dedicated/FontReferenceEditor.cs index b0b455a78..ef46f9e65 100644 --- a/Source/Editor/CustomEditors/Dedicated/FontReferenceEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/FontReferenceEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/CustomEditors/Dedicated/LayersMaskEditor.cs b/Source/Editor/CustomEditors/Dedicated/LayersMaskEditor.cs index 43415b085..87f749696 100644 --- a/Source/Editor/CustomEditors/Dedicated/LayersMaskEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/LayersMaskEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content.Settings; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/LayersMatrixEditor.cs b/Source/Editor/CustomEditors/Dedicated/LayersMatrixEditor.cs index 0f6996cc4..494663149 100644 --- a/Source/Editor/CustomEditors/Dedicated/LayersMatrixEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/LayersMatrixEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Dedicated/LocalizationSettingsEditor.cs b/Source/Editor/CustomEditors/Dedicated/LocalizationSettingsEditor.cs index 9c4280d84..bd5248e67 100644 --- a/Source/Editor/CustomEditors/Dedicated/LocalizationSettingsEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/LocalizationSettingsEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Dedicated/NavAgentMaskEditor.cs b/Source/Editor/CustomEditors/Dedicated/NavAgentMaskEditor.cs index 9dcb08d29..95b741e37 100644 --- a/Source/Editor/CustomEditors/Dedicated/NavAgentMaskEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/NavAgentMaskEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.Content.Settings; diff --git a/Source/Editor/CustomEditors/Dedicated/ParticleEffectEditor.cs b/Source/Editor/CustomEditors/Dedicated/ParticleEffectEditor.cs index 3356768fd..75fec4eba 100644 --- a/Source/Editor/CustomEditors/Dedicated/ParticleEffectEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/ParticleEffectEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.Surface; diff --git a/Source/Editor/CustomEditors/Dedicated/PhysicalMaterialEditor.cs b/Source/Editor/CustomEditors/Dedicated/PhysicalMaterialEditor.cs index 058b01332..ee49d837b 100644 --- a/Source/Editor/CustomEditors/Dedicated/PhysicalMaterialEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/PhysicalMaterialEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/CustomEditors/Dedicated/PostProcessSettingsEditor.cs b/Source/Editor/CustomEditors/Dedicated/PostProcessSettingsEditor.cs index abde71340..05b802d5e 100644 --- a/Source/Editor/CustomEditors/Dedicated/PostProcessSettingsEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/PostProcessSettingsEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/CustomEditors/Dedicated/RagdollEditor.cs b/Source/Editor/CustomEditors/Dedicated/RagdollEditor.cs index f87cc10b8..28c039dc8 100644 --- a/Source/Editor/CustomEditors/Dedicated/RagdollEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/RagdollEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs b/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs index 42eedf9d3..de580f5d2 100644 --- a/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/RigidBodyEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors.GUI; diff --git a/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs b/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs index 68dca9883..c7f62bd57 100644 --- a/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/ScriptsEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Dedicated/SkyLightEditor.cs b/Source/Editor/CustomEditors/Dedicated/SkyLightEditor.cs index 6700e4c57..888d64354 100644 --- a/Source/Editor/CustomEditors/Dedicated/SkyLightEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/SkyLightEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/SplineEditor.cs b/Source/Editor/CustomEditors/Dedicated/SplineEditor.cs index 356b7c3c9..877342154 100644 --- a/Source/Editor/CustomEditors/Dedicated/SplineEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/SplineEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Actions; using FlaxEditor.SceneGraph.Actors; diff --git a/Source/Editor/CustomEditors/Dedicated/TerrainEditor.cs b/Source/Editor/CustomEditors/Dedicated/TerrainEditor.cs index 80df44c99..c6b946e04 100644 --- a/Source/Editor/CustomEditors/Dedicated/TerrainEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/TerrainEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Dedicated/TextureGroupEditor.cs b/Source/Editor/CustomEditors/Dedicated/TextureGroupEditor.cs index efa37e1f0..ca1f357a9 100644 --- a/Source/Editor/CustomEditors/Dedicated/TextureGroupEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/TextureGroupEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content.Settings; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Dedicated/UIControlEditor.cs b/Source/Editor/CustomEditors/Dedicated/UIControlEditor.cs index 1050139be..1977e0e59 100644 --- a/Source/Editor/CustomEditors/Dedicated/UIControlEditor.cs +++ b/Source/Editor/CustomEditors/Dedicated/UIControlEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/ActorLayerEditor.cs b/Source/Editor/CustomEditors/Editors/ActorLayerEditor.cs index 057865f04..33f0be334 100644 --- a/Source/Editor/CustomEditors/Editors/ActorLayerEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ActorLayerEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.Content.Settings; diff --git a/Source/Editor/CustomEditors/Editors/ActorStaticFlagsEditor.cs b/Source/Editor/CustomEditors/Editors/ActorStaticFlagsEditor.cs index af7de7a75..4d7e4f0ef 100644 --- a/Source/Editor/CustomEditors/Editors/ActorStaticFlagsEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ActorStaticFlagsEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/ActorTagEditor.cs b/Source/Editor/CustomEditors/Editors/ActorTagEditor.cs index d274e96ee..dd49ae861 100644 --- a/Source/Editor/CustomEditors/Editors/ActorTagEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ActorTagEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content.Settings; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/ActorTransformEditor.cs b/Source/Editor/CustomEditors/Editors/ActorTransformEditor.cs index 296c6f037..f65bb4b06 100644 --- a/Source/Editor/CustomEditors/Editors/ActorTransformEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ActorTransformEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/ArrayEditor.cs b/Source/Editor/CustomEditors/Editors/ArrayEditor.cs index e641dfb33..de8491bcf 100644 --- a/Source/Editor/CustomEditors/Editors/ArrayEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ArrayEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Editors/AssetRefEditor.cs b/Source/Editor/CustomEditors/Editors/AssetRefEditor.cs index 5a9a98c77..f6d8b1671 100644 --- a/Source/Editor/CustomEditors/Editors/AssetRefEditor.cs +++ b/Source/Editor/CustomEditors/Editors/AssetRefEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/BooleanEditor.cs b/Source/Editor/CustomEditors/Editors/BooleanEditor.cs index f392e0eea..f5edafed8 100644 --- a/Source/Editor/CustomEditors/Editors/BooleanEditor.cs +++ b/Source/Editor/CustomEditors/Editors/BooleanEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/CollectionEditor.cs b/Source/Editor/CustomEditors/Editors/CollectionEditor.cs index a170ec3e0..318dafcc6 100644 --- a/Source/Editor/CustomEditors/Editors/CollectionEditor.cs +++ b/Source/Editor/CustomEditors/Editors/CollectionEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Editors/ColorEditor.cs b/Source/Editor/CustomEditors/Editors/ColorEditor.cs index 291d1d76e..2877fe29e 100644 --- a/Source/Editor/CustomEditors/Editors/ColorEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ColorEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEditor.GUI.Input; diff --git a/Source/Editor/CustomEditors/Editors/ColorTrackball.cs b/Source/Editor/CustomEditors/Editors/ColorTrackball.cs index f10a74652..8de972f86 100644 --- a/Source/Editor/CustomEditors/Editors/ColorTrackball.cs +++ b/Source/Editor/CustomEditors/Editors/ColorTrackball.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/CultureInfoEditor.cs b/Source/Editor/CustomEditors/Editors/CultureInfoEditor.cs index 157c3af17..20c3b09e6 100644 --- a/Source/Editor/CustomEditors/Editors/CultureInfoEditor.cs +++ b/Source/Editor/CustomEditors/Editors/CultureInfoEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Editors/DictionaryEditor.cs b/Source/Editor/CustomEditors/Editors/DictionaryEditor.cs index c77768ea2..7dd590576 100644 --- a/Source/Editor/CustomEditors/Editors/DictionaryEditor.cs +++ b/Source/Editor/CustomEditors/Editors/DictionaryEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Editors/DoubleEditor.cs b/Source/Editor/CustomEditors/Editors/DoubleEditor.cs index 4deaeae05..c490046b9 100644 --- a/Source/Editor/CustomEditors/Editors/DoubleEditor.cs +++ b/Source/Editor/CustomEditors/Editors/DoubleEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/EnumEditor.cs b/Source/Editor/CustomEditors/Editors/EnumEditor.cs index f5fb9c133..8f1da88db 100644 --- a/Source/Editor/CustomEditors/Editors/EnumEditor.cs +++ b/Source/Editor/CustomEditors/Editors/EnumEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/FlaxObjectRefEditor.cs b/Source/Editor/CustomEditors/Editors/FlaxObjectRefEditor.cs index 8e445db47..c9c49e7cb 100644 --- a/Source/Editor/CustomEditors/Editors/FlaxObjectRefEditor.cs +++ b/Source/Editor/CustomEditors/Editors/FlaxObjectRefEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/FloatEditor.cs b/Source/Editor/CustomEditors/Editors/FloatEditor.cs index a1f66ddfc..a79dc036f 100644 --- a/Source/Editor/CustomEditors/Editors/FloatEditor.cs +++ b/Source/Editor/CustomEditors/Editors/FloatEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/GenericEditor.cs b/Source/Editor/CustomEditors/Editors/GenericEditor.cs index 8a3f98560..7c021613e 100644 --- a/Source/Editor/CustomEditors/Editors/GenericEditor.cs +++ b/Source/Editor/CustomEditors/Editors/GenericEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Editors/GuidEditor.cs b/Source/Editor/CustomEditors/Editors/GuidEditor.cs index b4a1ad69d..28d93aa8e 100644 --- a/Source/Editor/CustomEditors/Editors/GuidEditor.cs +++ b/Source/Editor/CustomEditors/Editors/GuidEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/IBrushEditor.cs b/Source/Editor/CustomEditors/Editors/IBrushEditor.cs index 0a36f9ad9..beb28ca80 100644 --- a/Source/Editor/CustomEditors/Editors/IBrushEditor.cs +++ b/Source/Editor/CustomEditors/Editors/IBrushEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Editors/IntegerEditor.cs b/Source/Editor/CustomEditors/Editors/IntegerEditor.cs index d4f6f4746..3e7fb288d 100644 --- a/Source/Editor/CustomEditors/Editors/IntegerEditor.cs +++ b/Source/Editor/CustomEditors/Editors/IntegerEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/ListEditor.cs b/Source/Editor/CustomEditors/Editors/ListEditor.cs index 6ff18ad5b..866adf56d 100644 --- a/Source/Editor/CustomEditors/Editors/ListEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ListEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Editors/LocalizedStringEditor.cs b/Source/Editor/CustomEditors/Editors/LocalizedStringEditor.cs index 136532b44..de0aa4503 100644 --- a/Source/Editor/CustomEditors/Editors/LocalizedStringEditor.cs +++ b/Source/Editor/CustomEditors/Editors/LocalizedStringEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Editors/MarginEditor.cs b/Source/Editor/CustomEditors/Editors/MarginEditor.cs index ab2295799..123fd18b0 100644 --- a/Source/Editor/CustomEditors/Editors/MarginEditor.cs +++ b/Source/Editor/CustomEditors/Editors/MarginEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/MatrixEditor.cs b/Source/Editor/CustomEditors/Editors/MatrixEditor.cs index 5a6eaab9f..93b421624 100644 --- a/Source/Editor/CustomEditors/Editors/MatrixEditor.cs +++ b/Source/Editor/CustomEditors/Editors/MatrixEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/ModelInstanceEntryEditor.cs b/Source/Editor/CustomEditors/Editors/ModelInstanceEntryEditor.cs index 9834054c4..a08a254d4 100644 --- a/Source/Editor/CustomEditors/Editors/ModelInstanceEntryEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ModelInstanceEntryEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/ObjectSwitcherEditor.cs b/Source/Editor/CustomEditors/Editors/ObjectSwitcherEditor.cs index 67af4a80e..7e86df06f 100644 --- a/Source/Editor/CustomEditors/Editors/ObjectSwitcherEditor.cs +++ b/Source/Editor/CustomEditors/Editors/ObjectSwitcherEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/CustomEditors/Editors/QuaternionEditor.cs b/Source/Editor/CustomEditors/Editors/QuaternionEditor.cs index 0a40b7716..637b3ecaf 100644 --- a/Source/Editor/CustomEditors/Editors/QuaternionEditor.cs +++ b/Source/Editor/CustomEditors/Editors/QuaternionEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Editors/SkeletonNodeEditor.cs b/Source/Editor/CustomEditors/Editors/SkeletonNodeEditor.cs index a84e4cb24..a522f916b 100644 --- a/Source/Editor/CustomEditors/Editors/SkeletonNodeEditor.cs +++ b/Source/Editor/CustomEditors/Editors/SkeletonNodeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEditor.GUI; diff --git a/Source/Editor/CustomEditors/Editors/SpriteHandleEditor.cs b/Source/Editor/CustomEditors/Editors/SpriteHandleEditor.cs index 71b9392c7..2cb14f54a 100644 --- a/Source/Editor/CustomEditors/Editors/SpriteHandleEditor.cs +++ b/Source/Editor/CustomEditors/Editors/SpriteHandleEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEditor.Scripting; diff --git a/Source/Editor/CustomEditors/Editors/StringEditor.cs b/Source/Editor/CustomEditors/Editors/StringEditor.cs index d2d214eb5..c0974082a 100644 --- a/Source/Editor/CustomEditors/Editors/StringEditor.cs +++ b/Source/Editor/CustomEditors/Editors/StringEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/StyleEditor.cs b/Source/Editor/CustomEditors/Editors/StyleEditor.cs index 6a47a72f0..d8a672f77 100644 --- a/Source/Editor/CustomEditors/Editors/StyleEditor.cs +++ b/Source/Editor/CustomEditors/Editors/StyleEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEditor.GUI; diff --git a/Source/Editor/CustomEditors/Editors/TypeEditor.cs b/Source/Editor/CustomEditors/Editors/TypeEditor.cs index 9f7068548..e95cee639 100644 --- a/Source/Editor/CustomEditors/Editors/TypeEditor.cs +++ b/Source/Editor/CustomEditors/Editors/TypeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/CustomEditors/Editors/Vector2Editor.cs b/Source/Editor/CustomEditors/Editors/Vector2Editor.cs index ee0b12e5f..7c376c0ee 100644 --- a/Source/Editor/CustomEditors/Editors/Vector2Editor.cs +++ b/Source/Editor/CustomEditors/Editors/Vector2Editor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/Vector3Editor.cs b/Source/Editor/CustomEditors/Editors/Vector3Editor.cs index 7fdcc0c84..8ea21e988 100644 --- a/Source/Editor/CustomEditors/Editors/Vector3Editor.cs +++ b/Source/Editor/CustomEditors/Editors/Vector3Editor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/Vector4Editor.cs b/Source/Editor/CustomEditors/Editors/Vector4Editor.cs index 5c53adf29..15c0039ce 100644 --- a/Source/Editor/CustomEditors/Editors/Vector4Editor.cs +++ b/Source/Editor/CustomEditors/Editors/Vector4Editor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Editors/VersionEditor.cs b/Source/Editor/CustomEditors/Editors/VersionEditor.cs index 90debc32d..29d6ce751 100644 --- a/Source/Editor/CustomEditors/Editors/VersionEditor.cs +++ b/Source/Editor/CustomEditors/Editors/VersionEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.CustomEditors.Elements; diff --git a/Source/Editor/CustomEditors/Elements/ButtonElement.cs b/Source/Editor/CustomEditors/Elements/ButtonElement.cs index f7485e542..8fa3d7ab3 100644 --- a/Source/Editor/CustomEditors/Elements/ButtonElement.cs +++ b/Source/Editor/CustomEditors/Elements/ButtonElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/CheckBoxElement.cs b/Source/Editor/CustomEditors/Elements/CheckBoxElement.cs index ac688a839..5718fdf7b 100644 --- a/Source/Editor/CustomEditors/Elements/CheckBoxElement.cs +++ b/Source/Editor/CustomEditors/Elements/CheckBoxElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/ComboBoxElement.cs b/Source/Editor/CustomEditors/Elements/ComboBoxElement.cs index e78eaa260..b9bda5985 100644 --- a/Source/Editor/CustomEditors/Elements/ComboBoxElement.cs +++ b/Source/Editor/CustomEditors/Elements/ComboBoxElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/CustomElement.cs b/Source/Editor/CustomEditors/Elements/Container/CustomElement.cs index 1d91b5d9e..cedecd799 100644 --- a/Source/Editor/CustomEditors/Elements/Container/CustomElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/CustomElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/GroupElement.cs b/Source/Editor/CustomEditors/Elements/Container/GroupElement.cs index e714a4ffb..674b41d4f 100644 --- a/Source/Editor/CustomEditors/Elements/Container/GroupElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/GroupElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/HorizontalPanelElement.cs b/Source/Editor/CustomEditors/Elements/Container/HorizontalPanelElement.cs index af83fe64c..4f3c0d97a 100644 --- a/Source/Editor/CustomEditors/Elements/Container/HorizontalPanelElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/HorizontalPanelElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/PropertiesListElement.cs b/Source/Editor/CustomEditors/Elements/Container/PropertiesListElement.cs index bd44486cf..0729413da 100644 --- a/Source/Editor/CustomEditors/Elements/Container/PropertiesListElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/PropertiesListElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/Elements/Container/SpaceElement.cs b/Source/Editor/CustomEditors/Elements/Container/SpaceElement.cs index 4eefae51d..1474b438e 100644 --- a/Source/Editor/CustomEditors/Elements/Container/SpaceElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/SpaceElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/TreeElement.cs b/Source/Editor/CustomEditors/Elements/Container/TreeElement.cs index 74205ae6a..c111693b8 100644 --- a/Source/Editor/CustomEditors/Elements/Container/TreeElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/TreeElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Tree; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/Container/TreeNodeElement.cs b/Source/Editor/CustomEditors/Elements/Container/TreeNodeElement.cs index 92fce6f75..c184edd37 100644 --- a/Source/Editor/CustomEditors/Elements/Container/TreeNodeElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/TreeNodeElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Tree; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs b/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs index 725754ede..7a7f62ba2 100644 --- a/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs +++ b/Source/Editor/CustomEditors/Elements/Container/VerticalPanelElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/DoubleValueElement.cs b/Source/Editor/CustomEditors/Elements/DoubleValueElement.cs index 03a143094..e46040a42 100644 --- a/Source/Editor/CustomEditors/Elements/DoubleValueElement.cs +++ b/Source/Editor/CustomEditors/Elements/DoubleValueElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using System.Reflection; diff --git a/Source/Editor/CustomEditors/Elements/EnumElement.cs b/Source/Editor/CustomEditors/Elements/EnumElement.cs index 1565a3706..e7803f223 100644 --- a/Source/Editor/CustomEditors/Elements/EnumElement.cs +++ b/Source/Editor/CustomEditors/Elements/EnumElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/CustomEditors/Elements/FloatValueElement.cs b/Source/Editor/CustomEditors/Elements/FloatValueElement.cs index 6fc10e967..552e9d125 100644 --- a/Source/Editor/CustomEditors/Elements/FloatValueElement.cs +++ b/Source/Editor/CustomEditors/Elements/FloatValueElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using System.Reflection; diff --git a/Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs b/Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs index 6d87b489b..84b02e1ef 100644 --- a/Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs +++ b/Source/Editor/CustomEditors/Elements/IFloatValueEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Elements/IIntegerValueEditor.cs b/Source/Editor/CustomEditors/Elements/IIntegerValueEditor.cs index bdfae3663..6c70742dd 100644 --- a/Source/Editor/CustomEditors/Elements/IIntegerValueEditor.cs +++ b/Source/Editor/CustomEditors/Elements/IIntegerValueEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Elements/ImageElement.cs b/Source/Editor/CustomEditors/Elements/ImageElement.cs index b5fb0e569..ededf3a93 100644 --- a/Source/Editor/CustomEditors/Elements/ImageElement.cs +++ b/Source/Editor/CustomEditors/Elements/ImageElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/Elements/IntegerValueElement.cs b/Source/Editor/CustomEditors/Elements/IntegerValueElement.cs index c1f685370..dfbb96293 100644 --- a/Source/Editor/CustomEditors/Elements/IntegerValueElement.cs +++ b/Source/Editor/CustomEditors/Elements/IntegerValueElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using System.Reflection; diff --git a/Source/Editor/CustomEditors/Elements/LabelElement.cs b/Source/Editor/CustomEditors/Elements/LabelElement.cs index 83cb63a0a..cb3c7f15b 100644 --- a/Source/Editor/CustomEditors/Elements/LabelElement.cs +++ b/Source/Editor/CustomEditors/Elements/LabelElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/CustomEditors/Elements/SliderElement.cs b/Source/Editor/CustomEditors/Elements/SliderElement.cs index 0075136d5..471765d1a 100644 --- a/Source/Editor/CustomEditors/Elements/SliderElement.cs +++ b/Source/Editor/CustomEditors/Elements/SliderElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using System.Reflection; diff --git a/Source/Editor/CustomEditors/Elements/TextBoxElement.cs b/Source/Editor/CustomEditors/Elements/TextBoxElement.cs index e03705caa..bd9dc6f29 100644 --- a/Source/Editor/CustomEditors/Elements/TextBoxElement.cs +++ b/Source/Editor/CustomEditors/Elements/TextBoxElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/GUI/CheckablePropertyNameLabel.cs b/Source/Editor/CustomEditors/GUI/CheckablePropertyNameLabel.cs index cce901750..fa45483a2 100644 --- a/Source/Editor/CustomEditors/GUI/CheckablePropertyNameLabel.cs +++ b/Source/Editor/CustomEditors/GUI/CheckablePropertyNameLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/GUI/ClickablePropertyNameLabel.cs b/Source/Editor/CustomEditors/GUI/ClickablePropertyNameLabel.cs index e10cce58a..5e48d20ce 100644 --- a/Source/Editor/CustomEditors/GUI/ClickablePropertyNameLabel.cs +++ b/Source/Editor/CustomEditors/GUI/ClickablePropertyNameLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/CustomEditors/GUI/DraggablePropertyNameLabel.cs b/Source/Editor/CustomEditors/GUI/DraggablePropertyNameLabel.cs index f4d704f31..dbf942eff 100644 --- a/Source/Editor/CustomEditors/GUI/DraggablePropertyNameLabel.cs +++ b/Source/Editor/CustomEditors/GUI/DraggablePropertyNameLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/GUI/PropertiesList.cs b/Source/Editor/CustomEditors/GUI/PropertiesList.cs index 9ff1f2533..2b2f0a3d3 100644 --- a/Source/Editor/CustomEditors/GUI/PropertiesList.cs +++ b/Source/Editor/CustomEditors/GUI/PropertiesList.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors.Elements; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs b/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs index b050e60c3..ea134d774 100644 --- a/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs +++ b/Source/Editor/CustomEditors/GUI/PropertyNameLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/LayoutElement.cs b/Source/Editor/CustomEditors/LayoutElement.cs index 75969ee2f..fb1a4b7d3 100644 --- a/Source/Editor/CustomEditors/LayoutElement.cs +++ b/Source/Editor/CustomEditors/LayoutElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/CustomEditors/LayoutElementsContainer.cs b/Source/Editor/CustomEditors/LayoutElementsContainer.cs index 4d488a0d6..4829d11fa 100644 --- a/Source/Editor/CustomEditors/LayoutElementsContainer.cs +++ b/Source/Editor/CustomEditors/LayoutElementsContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/CustomEditors/SyncPointEditor.cs b/Source/Editor/CustomEditors/SyncPointEditor.cs index e0c2e6944..105b7671e 100644 --- a/Source/Editor/CustomEditors/SyncPointEditor.cs +++ b/Source/Editor/CustomEditors/SyncPointEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/CustomEditors/Values/CustomValueContainer.cs b/Source/Editor/CustomEditors/Values/CustomValueContainer.cs index d00298015..5be61399b 100644 --- a/Source/Editor/CustomEditors/Values/CustomValueContainer.cs +++ b/Source/Editor/CustomEditors/Values/CustomValueContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/CustomEditors/Values/DictionaryValueContainer.cs b/Source/Editor/CustomEditors/Values/DictionaryValueContainer.cs index 5b56caa1a..59e020cb3 100644 --- a/Source/Editor/CustomEditors/Values/DictionaryValueContainer.cs +++ b/Source/Editor/CustomEditors/Values/DictionaryValueContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Values/ListValueContainer.cs b/Source/Editor/CustomEditors/Values/ListValueContainer.cs index 1edc50709..13098b503 100644 --- a/Source/Editor/CustomEditors/Values/ListValueContainer.cs +++ b/Source/Editor/CustomEditors/Values/ListValueContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/CustomEditors/Values/ReadOnlyValueContainer.cs b/Source/Editor/CustomEditors/Values/ReadOnlyValueContainer.cs index a0c090ef0..87b076184 100644 --- a/Source/Editor/CustomEditors/Values/ReadOnlyValueContainer.cs +++ b/Source/Editor/CustomEditors/Values/ReadOnlyValueContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Scripting; using FlaxEngine; diff --git a/Source/Editor/CustomEditors/Values/ValueContainer.cs b/Source/Editor/CustomEditors/Values/ValueContainer.cs index 00303d310..92c44fbb5 100644 --- a/Source/Editor/CustomEditors/Values/ValueContainer.cs +++ b/Source/Editor/CustomEditors/Values/ValueContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Editor.Build.cs b/Source/Editor/Editor.Build.cs index be94bb7b5..0b69e8aa3 100644 --- a/Source/Editor/Editor.Build.cs +++ b/Source/Editor/Editor.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Editor/Editor.cpp b/Source/Editor/Editor.cpp index 0328c5b79..0456e28a4 100644 --- a/Source/Editor/Editor.cpp +++ b/Source/Editor/Editor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Editor/Editor.cs b/Source/Editor/Editor.cs index 94cbf4ce1..13b748d94 100644 --- a/Source/Editor/Editor.cs +++ b/Source/Editor/Editor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Editor.h b/Source/Editor/Editor.h index 9f7d2a5a2..73f69a426 100644 --- a/Source/Editor/Editor.h +++ b/Source/Editor/Editor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/EditorAssets.cs b/Source/Editor/EditorAssets.cs index cc2f7ab82..7fa920ca6 100644 --- a/Source/Editor/EditorAssets.cs +++ b/Source/Editor/EditorAssets.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/EditorIcons.cs b/Source/Editor/EditorIcons.cs index 029f001cc..2de1ff763 100644 --- a/Source/Editor/EditorIcons.cs +++ b/Source/Editor/EditorIcons.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Reflection; using FlaxEngine; diff --git a/Source/Editor/GUI/AssetPicker.cs b/Source/Editor/GUI/AssetPicker.cs index 4e90dfe46..a978409fe 100644 --- a/Source/Editor/GUI/AssetPicker.cs +++ b/Source/Editor/GUI/AssetPicker.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/GUI/ClickableLabel.cs b/Source/Editor/GUI/ClickableLabel.cs index de3a5aa30..5e883f97c 100644 --- a/Source/Editor/GUI/ClickableLabel.cs +++ b/Source/Editor/GUI/ClickableLabel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/ColumnDefinition.cs b/Source/Editor/GUI/ColumnDefinition.cs index 2dc1c965e..aff1817c3 100644 --- a/Source/Editor/GUI/ColumnDefinition.cs +++ b/Source/Editor/GUI/ColumnDefinition.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/GUI/ComboBox.cs b/Source/Editor/GUI/ComboBox.cs index 07c2e269f..2481316d0 100644 --- a/Source/Editor/GUI/ComboBox.cs +++ b/Source/Editor/GUI/ComboBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenu.cs b/Source/Editor/GUI/ContextMenu/ContextMenu.cs index b7cbea30f..e652bc98d 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenu.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenuBase.cs b/Source/Editor/GUI/ContextMenu/ContextMenuBase.cs index 1093b50b7..b7e5e3446 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenuBase.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenuBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenuButton.cs b/Source/Editor/GUI/ContextMenu/ContextMenuButton.cs index 680895d18..c2b130e4e 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenuButton.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenuButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenuChildMenu.cs b/Source/Editor/GUI/ContextMenu/ContextMenuChildMenu.cs index 4fef7313b..ebf0a3b4a 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenuChildMenu.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenuChildMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenuItem.cs b/Source/Editor/GUI/ContextMenu/ContextMenuItem.cs index 18f7f9a88..002adcc0a 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenuItem.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenuItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/ContextMenu/ContextMenuSeparator.cs b/Source/Editor/GUI/ContextMenu/ContextMenuSeparator.cs index 0ac33d40f..0546b8c5d 100644 --- a/Source/Editor/GUI/ContextMenu/ContextMenuSeparator.cs +++ b/Source/Editor/GUI/ContextMenu/ContextMenuSeparator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/CurveEditor.Access.cs b/Source/Editor/GUI/CurveEditor.Access.cs index 6fb1a0aca..c41feb503 100644 --- a/Source/Editor/GUI/CurveEditor.Access.cs +++ b/Source/Editor/GUI/CurveEditor.Access.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/GUI/CurveEditor.Base.cs b/Source/Editor/GUI/CurveEditor.Base.cs index 2b93b64f0..38aa7a866 100644 --- a/Source/Editor/GUI/CurveEditor.Base.cs +++ b/Source/Editor/GUI/CurveEditor.Base.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/CurveEditor.Contents.cs b/Source/Editor/GUI/CurveEditor.Contents.cs index d30cfdffa..dca6d0450 100644 --- a/Source/Editor/GUI/CurveEditor.Contents.cs +++ b/Source/Editor/GUI/CurveEditor.Contents.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/CurveEditor.cs b/Source/Editor/GUI/CurveEditor.cs index 225a63e96..22deec120 100644 --- a/Source/Editor/GUI/CurveEditor.cs +++ b/Source/Editor/GUI/CurveEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Dialogs/ColorPickerDialog.cs b/Source/Editor/GUI/Dialogs/ColorPickerDialog.cs index 1fa3f4db3..8209b63cf 100644 --- a/Source/Editor/GUI/Dialogs/ColorPickerDialog.cs +++ b/Source/Editor/GUI/Dialogs/ColorPickerDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/GUI/Dialogs/ColorSelector.cs b/Source/Editor/GUI/Dialogs/ColorSelector.cs index af042ffa9..0379f6086 100644 --- a/Source/Editor/GUI/Dialogs/ColorSelector.cs +++ b/Source/Editor/GUI/Dialogs/ColorSelector.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Dialogs/Dialog.cs b/Source/Editor/GUI/Dialogs/Dialog.cs index 1bcf88c82..8910cfe49 100644 --- a/Source/Editor/GUI/Dialogs/Dialog.cs +++ b/Source/Editor/GUI/Dialogs/Dialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Threading; using FlaxEngine; diff --git a/Source/Editor/GUI/Docking/DockHintWindow.cs b/Source/Editor/GUI/Docking/DockHintWindow.cs index 0f7780ae9..6dc700731 100644 --- a/Source/Editor/GUI/Docking/DockHintWindow.cs +++ b/Source/Editor/GUI/Docking/DockHintWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Docking/DockPanel.cs b/Source/Editor/GUI/Docking/DockPanel.cs index 0ae6ebcd6..e544285a5 100644 --- a/Source/Editor/GUI/Docking/DockPanel.cs +++ b/Source/Editor/GUI/Docking/DockPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Docking/DockPanelProxy.cs b/Source/Editor/GUI/Docking/DockPanelProxy.cs index 7e078ebaf..ac5e0bc4f 100644 --- a/Source/Editor/GUI/Docking/DockPanelProxy.cs +++ b/Source/Editor/GUI/Docking/DockPanelProxy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEngine; diff --git a/Source/Editor/GUI/Docking/DockWindow.cs b/Source/Editor/GUI/Docking/DockWindow.cs index de5ccf206..5eb650898 100644 --- a/Source/Editor/GUI/Docking/DockWindow.cs +++ b/Source/Editor/GUI/Docking/DockWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Xml; using FlaxEngine; diff --git a/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs b/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs index 07585d4cd..f8ffe62ad 100644 --- a/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs +++ b/Source/Editor/GUI/Docking/FloatWindowDockPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/Docking/MasterDockPanel.cs b/Source/Editor/GUI/Docking/MasterDockPanel.cs index 19a728857..8cc9a338d 100644 --- a/Source/Editor/GUI/Docking/MasterDockPanel.cs +++ b/Source/Editor/GUI/Docking/MasterDockPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/GUI/Drag/DragActorType.cs b/Source/Editor/GUI/Drag/DragActorType.cs index 510869755..40b66bbdf 100644 --- a/Source/Editor/GUI/Drag/DragActorType.cs +++ b/Source/Editor/GUI/Drag/DragActorType.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragActors.cs b/Source/Editor/GUI/Drag/DragActors.cs index db9b4eea5..396f75990 100644 --- a/Source/Editor/GUI/Drag/DragActors.cs +++ b/Source/Editor/GUI/Drag/DragActors.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragAssets.cs b/Source/Editor/GUI/Drag/DragAssets.cs index 3be100e62..f443fd5d2 100644 --- a/Source/Editor/GUI/Drag/DragAssets.cs +++ b/Source/Editor/GUI/Drag/DragAssets.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragEventArgs.cs b/Source/Editor/GUI/Drag/DragEventArgs.cs index fe4b5af93..42327a3a1 100644 --- a/Source/Editor/GUI/Drag/DragEventArgs.cs +++ b/Source/Editor/GUI/Drag/DragEventArgs.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.GUI.Drag { diff --git a/Source/Editor/GUI/Drag/DragHandlers.cs b/Source/Editor/GUI/Drag/DragHandlers.cs index 69bf6db86..fe0d873a8 100644 --- a/Source/Editor/GUI/Drag/DragHandlers.cs +++ b/Source/Editor/GUI/Drag/DragHandlers.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/GUI/Drag/DragHelper.cs b/Source/Editor/GUI/Drag/DragHelper.cs index 1eaa2b0e0..f0b30dd6b 100644 --- a/Source/Editor/GUI/Drag/DragHelper.cs +++ b/Source/Editor/GUI/Drag/DragHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragItems.cs b/Source/Editor/GUI/Drag/DragItems.cs index 3c1b2123c..e7d1b17c6 100644 --- a/Source/Editor/GUI/Drag/DragItems.cs +++ b/Source/Editor/GUI/Drag/DragItems.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragNames.cs b/Source/Editor/GUI/Drag/DragNames.cs index aed3c76ea..a8c7c9616 100644 --- a/Source/Editor/GUI/Drag/DragNames.cs +++ b/Source/Editor/GUI/Drag/DragNames.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragScriptItems.cs b/Source/Editor/GUI/Drag/DragScriptItems.cs index d941dea65..d2010a7e5 100644 --- a/Source/Editor/GUI/Drag/DragScriptItems.cs +++ b/Source/Editor/GUI/Drag/DragScriptItems.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Drag/DragScripts.cs b/Source/Editor/GUI/Drag/DragScripts.cs index 5d0c35fd5..e72d28479 100644 --- a/Source/Editor/GUI/Drag/DragScripts.cs +++ b/Source/Editor/GUI/Drag/DragScripts.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/EnumComboBox.cs b/Source/Editor/GUI/EnumComboBox.cs index 24f818d0d..fc0d45d2b 100644 --- a/Source/Editor/GUI/EnumComboBox.cs +++ b/Source/Editor/GUI/EnumComboBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/IKeyframesEditor.cs b/Source/Editor/GUI/IKeyframesEditor.cs index 88494158e..cbd3ed22c 100644 --- a/Source/Editor/GUI/IKeyframesEditor.cs +++ b/Source/Editor/GUI/IKeyframesEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/IKeyframesEditorContext.cs b/Source/Editor/GUI/IKeyframesEditorContext.cs index 2ec6f24e2..0f2672006 100644 --- a/Source/Editor/GUI/IKeyframesEditorContext.cs +++ b/Source/Editor/GUI/IKeyframesEditorContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Input/ColorValueBox.cs b/Source/Editor/GUI/Input/ColorValueBox.cs index 074cc561a..bafa27c87 100644 --- a/Source/Editor/GUI/Input/ColorValueBox.cs +++ b/Source/Editor/GUI/Input/ColorValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.Dialogs; diff --git a/Source/Editor/GUI/Input/DoubleValueBox.cs b/Source/Editor/GUI/Input/DoubleValueBox.cs index 273bc6d97..0ceb10114 100644 --- a/Source/Editor/GUI/Input/DoubleValueBox.cs +++ b/Source/Editor/GUI/Input/DoubleValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Utilities; diff --git a/Source/Editor/GUI/Input/FloatValueBox.cs b/Source/Editor/GUI/Input/FloatValueBox.cs index 2f7fa77a5..c44ad45f6 100644 --- a/Source/Editor/GUI/Input/FloatValueBox.cs +++ b/Source/Editor/GUI/Input/FloatValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Editor/GUI/Input/IntValueBox.cs b/Source/Editor/GUI/Input/IntValueBox.cs index ebb2fbe5f..7fe3665a0 100644 --- a/Source/Editor/GUI/Input/IntValueBox.cs +++ b/Source/Editor/GUI/Input/IntValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Utilities; diff --git a/Source/Editor/GUI/Input/LongValueBox.cs b/Source/Editor/GUI/Input/LongValueBox.cs index cc98e2b4e..9d53a540c 100644 --- a/Source/Editor/GUI/Input/LongValueBox.cs +++ b/Source/Editor/GUI/Input/LongValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Input/SliderControl.cs b/Source/Editor/GUI/Input/SliderControl.cs index 7a8b82622..c08afc829 100644 --- a/Source/Editor/GUI/Input/SliderControl.cs +++ b/Source/Editor/GUI/Input/SliderControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Editor/GUI/Input/UIntValueBox.cs b/Source/Editor/GUI/Input/UIntValueBox.cs index 76b186dbd..43a5b62d0 100644 --- a/Source/Editor/GUI/Input/UIntValueBox.cs +++ b/Source/Editor/GUI/Input/UIntValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Utilities; diff --git a/Source/Editor/GUI/Input/ULongValueBox.cs b/Source/Editor/GUI/Input/ULongValueBox.cs index e35859afe..0b9dd98fa 100644 --- a/Source/Editor/GUI/Input/ULongValueBox.cs +++ b/Source/Editor/GUI/Input/ULongValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Utilities; diff --git a/Source/Editor/GUI/Input/ValueBox.cs b/Source/Editor/GUI/Input/ValueBox.cs index ac253b79d..d9c1b9325 100644 --- a/Source/Editor/GUI/Input/ValueBox.cs +++ b/Source/Editor/GUI/Input/ValueBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/ItemsListContextMenu.cs b/Source/Editor/GUI/ItemsListContextMenu.cs index b761fa989..ae470235d 100644 --- a/Source/Editor/GUI/ItemsListContextMenu.cs +++ b/Source/Editor/GUI/ItemsListContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/KeyframesEditorUtils.cs b/Source/Editor/GUI/KeyframesEditorUtils.cs index b45093ed2..c4dda34f4 100644 --- a/Source/Editor/GUI/KeyframesEditorUtils.cs +++ b/Source/Editor/GUI/KeyframesEditorUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Text; diff --git a/Source/Editor/GUI/MainMenu.cs b/Source/Editor/GUI/MainMenu.cs index e1642436f..66b10f0aa 100644 --- a/Source/Editor/GUI/MainMenu.cs +++ b/Source/Editor/GUI/MainMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/MainMenuButton.cs b/Source/Editor/GUI/MainMenuButton.cs index f64f1e847..117922361 100644 --- a/Source/Editor/GUI/MainMenuButton.cs +++ b/Source/Editor/GUI/MainMenuButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/NavigationBar.cs b/Source/Editor/GUI/NavigationBar.cs index e91dc2697..3c717423b 100644 --- a/Source/Editor/GUI/NavigationBar.cs +++ b/Source/Editor/GUI/NavigationBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/NavigationButton.cs b/Source/Editor/GUI/NavigationButton.cs index 7c96d216a..18e862304 100644 --- a/Source/Editor/GUI/NavigationButton.cs +++ b/Source/Editor/GUI/NavigationButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/PlatformSelector.cs b/Source/Editor/GUI/PlatformSelector.cs index 493eac2f9..0b57551e9 100644 --- a/Source/Editor/GUI/PlatformSelector.cs +++ b/Source/Editor/GUI/PlatformSelector.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Popups/ActorSearchPopup.cs b/Source/Editor/GUI/Popups/ActorSearchPopup.cs index 27743bd5a..6fca2ef65 100644 --- a/Source/Editor/GUI/Popups/ActorSearchPopup.cs +++ b/Source/Editor/GUI/Popups/ActorSearchPopup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Popups/AssetSearchPopup.cs b/Source/Editor/GUI/Popups/AssetSearchPopup.cs index 557dd2548..f11612e3b 100644 --- a/Source/Editor/GUI/Popups/AssetSearchPopup.cs +++ b/Source/Editor/GUI/Popups/AssetSearchPopup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/GUI/Popups/RenamePopup.cs b/Source/Editor/GUI/Popups/RenamePopup.cs index 01fbdc03f..db9b2a5f3 100644 --- a/Source/Editor/GUI/Popups/RenamePopup.cs +++ b/Source/Editor/GUI/Popups/RenamePopup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/GUI/Popups/ScriptSearchPopup.cs b/Source/Editor/GUI/Popups/ScriptSearchPopup.cs index 00a35a5a0..839346b5a 100644 --- a/Source/Editor/GUI/Popups/ScriptSearchPopup.cs +++ b/Source/Editor/GUI/Popups/ScriptSearchPopup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/GUI/Popups/TypeSearchPopup.cs b/Source/Editor/GUI/Popups/TypeSearchPopup.cs index 061235aea..9d9ee2040 100644 --- a/Source/Editor/GUI/Popups/TypeSearchPopup.cs +++ b/Source/Editor/GUI/Popups/TypeSearchPopup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/GUI/PrefabDiffContextMenu.cs b/Source/Editor/GUI/PrefabDiffContextMenu.cs index 6d1540272..d1cca6063 100644 --- a/Source/Editor/GUI/PrefabDiffContextMenu.cs +++ b/Source/Editor/GUI/PrefabDiffContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/GUI/Row.cs b/Source/Editor/GUI/Row.cs index 5bec5d1f1..b1be2d858 100644 --- a/Source/Editor/GUI/Row.cs +++ b/Source/Editor/GUI/Row.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/StatusBar.cs b/Source/Editor/GUI/StatusBar.cs index f87c37737..80a500236 100644 --- a/Source/Editor/GUI/StatusBar.cs +++ b/Source/Editor/GUI/StatusBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/StyleValueEditor.cs b/Source/Editor/GUI/StyleValueEditor.cs index c5dbaa5b1..a89902177 100644 --- a/Source/Editor/GUI/StyleValueEditor.cs +++ b/Source/Editor/GUI/StyleValueEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Windows; diff --git a/Source/Editor/GUI/Table.cs b/Source/Editor/GUI/Table.cs index 92128a411..1d22ddb15 100644 --- a/Source/Editor/GUI/Table.cs +++ b/Source/Editor/GUI/Table.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Editor/GUI/Tabs/Tab.cs b/Source/Editor/GUI/Tabs/Tab.cs index 96693af6b..67be0259b 100644 --- a/Source/Editor/GUI/Tabs/Tab.cs +++ b/Source/Editor/GUI/Tabs/Tab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Tabs/Tabs.cs b/Source/Editor/GUI/Tabs/Tabs.cs index 695ec3bc1..e01178c3d 100644 --- a/Source/Editor/GUI/Tabs/Tabs.cs +++ b/Source/Editor/GUI/Tabs/Tabs.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/Timeline/AnimationTimeline.cs b/Source/Editor/GUI/Timeline/AnimationTimeline.cs index c3b425acc..c20ed20e3 100644 --- a/Source/Editor/GUI/Timeline/AnimationTimeline.cs +++ b/Source/Editor/GUI/Timeline/AnimationTimeline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/GUI/Timeline/GUI/Background.cs b/Source/Editor/GUI/Timeline/GUI/Background.cs index 507c750e8..dc4909abb 100644 --- a/Source/Editor/GUI/Timeline/GUI/Background.cs +++ b/Source/Editor/GUI/Timeline/GUI/Background.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Editor/GUI/Timeline/GUI/BackgroundArea.cs b/Source/Editor/GUI/Timeline/GUI/BackgroundArea.cs index 888a83a2c..86ea086b6 100644 --- a/Source/Editor/GUI/Timeline/GUI/BackgroundArea.cs +++ b/Source/Editor/GUI/Timeline/GUI/BackgroundArea.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/Timeline/GUI/GradientEditor.cs b/Source/Editor/GUI/Timeline/GUI/GradientEditor.cs index 11b3c75ea..39209f938 100644 --- a/Source/Editor/GUI/Timeline/GUI/GradientEditor.cs +++ b/Source/Editor/GUI/Timeline/GUI/GradientEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs b/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs index c2e557610..afc0768d9 100644 --- a/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs +++ b/Source/Editor/GUI/Timeline/GUI/KeyframesEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/GUI/PositionHandle.cs b/Source/Editor/GUI/Timeline/GUI/PositionHandle.cs index b7826ce1e..7b42e86ab 100644 --- a/Source/Editor/GUI/Timeline/GUI/PositionHandle.cs +++ b/Source/Editor/GUI/Timeline/GUI/PositionHandle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/Timeline/GUI/TimelineEdge.cs b/Source/Editor/GUI/Timeline/GUI/TimelineEdge.cs index b74b47c46..f7a443852 100644 --- a/Source/Editor/GUI/Timeline/GUI/TimelineEdge.cs +++ b/Source/Editor/GUI/Timeline/GUI/TimelineEdge.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Timeline.Undo; using FlaxEngine; diff --git a/Source/Editor/GUI/Timeline/Media.cs b/Source/Editor/GUI/Timeline/Media.cs index 5a5111c75..14a762c7f 100644 --- a/Source/Editor/GUI/Timeline/Media.cs +++ b/Source/Editor/GUI/Timeline/Media.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.Timeline.Undo; diff --git a/Source/Editor/GUI/Timeline/ParticleSystemTimeline.cs b/Source/Editor/GUI/Timeline/ParticleSystemTimeline.cs index 246c33b4d..fa9ecae70 100644 --- a/Source/Editor/GUI/Timeline/ParticleSystemTimeline.cs +++ b/Source/Editor/GUI/Timeline/ParticleSystemTimeline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/SceneAnimationTimeline.cs b/Source/Editor/GUI/Timeline/SceneAnimationTimeline.cs index 97feb398c..c5989cca5 100644 --- a/Source/Editor/GUI/Timeline/SceneAnimationTimeline.cs +++ b/Source/Editor/GUI/Timeline/SceneAnimationTimeline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/GUI/Timeline/Timeline.Data.cs b/Source/Editor/GUI/Timeline/Timeline.Data.cs index a085785cf..b98bfce46 100644 --- a/Source/Editor/GUI/Timeline/Timeline.Data.cs +++ b/Source/Editor/GUI/Timeline/Timeline.Data.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Timeline.UI.cs b/Source/Editor/GUI/Timeline/Timeline.UI.cs index ed1c1288a..a977d487e 100644 --- a/Source/Editor/GUI/Timeline/Timeline.UI.cs +++ b/Source/Editor/GUI/Timeline/Timeline.UI.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/GUI/Timeline/Timeline.cs b/Source/Editor/GUI/Timeline/Timeline.cs index a6d55cc0e..9800b2105 100644 --- a/Source/Editor/GUI/Timeline/Timeline.cs +++ b/Source/Editor/GUI/Timeline/Timeline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Track.cs b/Source/Editor/GUI/Timeline/Track.cs index e162a8959..f38917aa6 100644 --- a/Source/Editor/GUI/Timeline/Track.cs +++ b/Source/Editor/GUI/Timeline/Track.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/TrackArchetype.cs b/Source/Editor/GUI/Timeline/TrackArchetype.cs index 95db9f93c..6b8cee621 100644 --- a/Source/Editor/GUI/Timeline/TrackArchetype.cs +++ b/Source/Editor/GUI/Timeline/TrackArchetype.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ActorTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ActorTrack.cs index 9a7f4dfed..9e51cc21a 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ActorTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ActorTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/AnimationChannelTrack.cs b/Source/Editor/GUI/Timeline/Tracks/AnimationChannelTrack.cs index 9cdc8ca64..80439f7be 100644 --- a/Source/Editor/GUI/Timeline/Tracks/AnimationChannelTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/AnimationChannelTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using FlaxEngine; diff --git a/Source/Editor/GUI/Timeline/Tracks/AnimationEventTrack.cs b/Source/Editor/GUI/Timeline/Tracks/AnimationEventTrack.cs index be67bb430..5b7ecddef 100644 --- a/Source/Editor/GUI/Timeline/Tracks/AnimationEventTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/AnimationEventTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/AudioTrack.cs b/Source/Editor/GUI/Timeline/Tracks/AudioTrack.cs index db29566a1..003ad2f76 100644 --- a/Source/Editor/GUI/Timeline/Tracks/AudioTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/AudioTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/CameraCutTrack.cs b/Source/Editor/GUI/Timeline/Tracks/CameraCutTrack.cs index e4117340b..f6a542faa 100644 --- a/Source/Editor/GUI/Timeline/Tracks/CameraCutTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/CameraCutTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/GUI/Timeline/Tracks/ConductorTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ConductorTrack.cs index a790a9b9c..a293c0959 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ConductorTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ConductorTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/CurvePropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/CurvePropertyTrack.cs index 92c707385..e74fd0273 100644 --- a/Source/Editor/GUI/Timeline/Tracks/CurvePropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/CurvePropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/EventTrack.cs b/Source/Editor/GUI/Timeline/Tracks/EventTrack.cs index 942088303..e7e34fdda 100644 --- a/Source/Editor/GUI/Timeline/Tracks/EventTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/EventTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/FolderTrack.cs b/Source/Editor/GUI/Timeline/Tracks/FolderTrack.cs index 680806cf8..3ab6c6259 100644 --- a/Source/Editor/GUI/Timeline/Tracks/FolderTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/FolderTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using FlaxEditor.GUI.Input; diff --git a/Source/Editor/GUI/Timeline/Tracks/KeyframesPropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/KeyframesPropertyTrack.cs index 76ce76438..f2ac84a4d 100644 --- a/Source/Editor/GUI/Timeline/Tracks/KeyframesPropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/KeyframesPropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/MemberTrack.cs b/Source/Editor/GUI/Timeline/Tracks/MemberTrack.cs index 8e1a9b3d6..63787df2c 100644 --- a/Source/Editor/GUI/Timeline/Tracks/MemberTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/MemberTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/GUI/Timeline/Tracks/NestedAnimationTrack.cs b/Source/Editor/GUI/Timeline/Tracks/NestedAnimationTrack.cs index 7e84dbd62..483474f1c 100644 --- a/Source/Editor/GUI/Timeline/Tracks/NestedAnimationTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/NestedAnimationTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/NestedSceneAnimationTrack.cs b/Source/Editor/GUI/Timeline/Tracks/NestedSceneAnimationTrack.cs index ac3d5225d..0ee13a811 100644 --- a/Source/Editor/GUI/Timeline/Tracks/NestedSceneAnimationTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/NestedSceneAnimationTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ObjectPropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ObjectPropertyTrack.cs index c04b04681..c753c98ed 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ObjectPropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ObjectPropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ObjectReferencePropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ObjectReferencePropertyTrack.cs index b563dff8f..da1502b71 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ObjectReferencePropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ObjectReferencePropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ObjectTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ObjectTrack.cs index 40c3311cf..7ee2da1e8 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ObjectTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ObjectTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/ParticleEmitterTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ParticleEmitterTrack.cs index 71f38e78f..4916ad86e 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ParticleEmitterTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ParticleEmitterTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Timeline/Tracks/PostProcessMaterialTrack.cs b/Source/Editor/GUI/Timeline/Tracks/PostProcessMaterialTrack.cs index ea4ae074f..f21975e81 100644 --- a/Source/Editor/GUI/Timeline/Tracks/PostProcessMaterialTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/PostProcessMaterialTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ScreenFadeTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ScreenFadeTrack.cs index 99b33c38c..ac61d065a 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ScreenFadeTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ScreenFadeTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/ScriptTrack.cs b/Source/Editor/GUI/Timeline/Tracks/ScriptTrack.cs index ec22fb55f..93be18285 100644 --- a/Source/Editor/GUI/Timeline/Tracks/ScriptTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/ScriptTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/SingleMediaAssetTrack.cs b/Source/Editor/GUI/Timeline/Tracks/SingleMediaAssetTrack.cs index 72815e67a..b7c87cb01 100644 --- a/Source/Editor/GUI/Timeline/Tracks/SingleMediaAssetTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/SingleMediaAssetTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.Timeline.Undo; diff --git a/Source/Editor/GUI/Timeline/Tracks/SingleMediaTrack.cs b/Source/Editor/GUI/Timeline/Tracks/SingleMediaTrack.cs index a1cfa9222..bbf2dfcf4 100644 --- a/Source/Editor/GUI/Timeline/Tracks/SingleMediaTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/SingleMediaTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.GUI.Timeline.Tracks { diff --git a/Source/Editor/GUI/Timeline/Tracks/StringPropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/StringPropertyTrack.cs index 09a9f376d..ffbf64a99 100644 --- a/Source/Editor/GUI/Timeline/Tracks/StringPropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/StringPropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Tracks/StructPropertyTrack.cs b/Source/Editor/GUI/Timeline/Tracks/StructPropertyTrack.cs index 22b209288..6cce0d738 100644 --- a/Source/Editor/GUI/Timeline/Tracks/StructPropertyTrack.cs +++ b/Source/Editor/GUI/Timeline/Tracks/StructPropertyTrack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/GUI/Timeline/Undo/AddRemoveTrackAction.cs b/Source/Editor/GUI/Timeline/Undo/AddRemoveTrackAction.cs index 7c25cd1c0..a09466921 100644 --- a/Source/Editor/GUI/Timeline/Undo/AddRemoveTrackAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/AddRemoveTrackAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using FlaxEngine; diff --git a/Source/Editor/GUI/Timeline/Undo/EditFpsAction.cs b/Source/Editor/GUI/Timeline/Undo/EditFpsAction.cs index 6997812de..9ac9a65f1 100644 --- a/Source/Editor/GUI/Timeline/Undo/EditFpsAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/EditFpsAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.GUI.Timeline.Undo { diff --git a/Source/Editor/GUI/Timeline/Undo/EditTimelineAction.cs b/Source/Editor/GUI/Timeline/Undo/EditTimelineAction.cs index 3df133b28..02b76b882 100644 --- a/Source/Editor/GUI/Timeline/Undo/EditTimelineAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/EditTimelineAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Editor/GUI/Timeline/Undo/EditTrackAction.cs b/Source/Editor/GUI/Timeline/Undo/EditTrackAction.cs index f57ece87d..119f4cdb7 100644 --- a/Source/Editor/GUI/Timeline/Undo/EditTrackAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/EditTrackAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using FlaxEngine; diff --git a/Source/Editor/GUI/Timeline/Undo/RenameTrackAction.cs b/Source/Editor/GUI/Timeline/Undo/RenameTrackAction.cs index 71bbecdaf..b7f80ebe1 100644 --- a/Source/Editor/GUI/Timeline/Undo/RenameTrackAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/RenameTrackAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.GUI.Timeline.Undo { diff --git a/Source/Editor/GUI/Timeline/Undo/ReorderTrackAction.cs b/Source/Editor/GUI/Timeline/Undo/ReorderTrackAction.cs index dc6eee8fe..13a20c567 100644 --- a/Source/Editor/GUI/Timeline/Undo/ReorderTrackAction.cs +++ b/Source/Editor/GUI/Timeline/Undo/ReorderTrackAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.GUI.Timeline.Undo { diff --git a/Source/Editor/GUI/Timeline/Undo/TimelineUndoBlock.cs b/Source/Editor/GUI/Timeline/Undo/TimelineUndoBlock.cs index b5c0418ae..fe4555974 100644 --- a/Source/Editor/GUI/Timeline/Undo/TimelineUndoBlock.cs +++ b/Source/Editor/GUI/Timeline/Undo/TimelineUndoBlock.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/GUI/Timeline/Undo/TrackUndoBlock.cs b/Source/Editor/GUI/Timeline/Undo/TrackUndoBlock.cs index 94df5fa2b..4e261f344 100644 --- a/Source/Editor/GUI/Timeline/Undo/TrackUndoBlock.cs +++ b/Source/Editor/GUI/Timeline/Undo/TrackUndoBlock.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/GUI/ToolStrip.cs b/Source/Editor/GUI/ToolStrip.cs index 97d3b5bfe..6a881281f 100644 --- a/Source/Editor/GUI/ToolStrip.cs +++ b/Source/Editor/GUI/ToolStrip.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/ToolStripButton.cs b/Source/Editor/GUI/ToolStripButton.cs index 4064ed1a2..09a26b940 100644 --- a/Source/Editor/GUI/ToolStripButton.cs +++ b/Source/Editor/GUI/ToolStripButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/GUI/ToolStripSeparator.cs b/Source/Editor/GUI/ToolStripSeparator.cs index 27ac3c7a2..8f662721b 100644 --- a/Source/Editor/GUI/ToolStripSeparator.cs +++ b/Source/Editor/GUI/ToolStripSeparator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/GUI/Tree/Tree.cs b/Source/Editor/GUI/Tree/Tree.cs index a31016477..ff99f6506 100644 --- a/Source/Editor/GUI/Tree/Tree.cs +++ b/Source/Editor/GUI/Tree/Tree.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/GUI/Tree/TreeNode.cs b/Source/Editor/GUI/Tree/TreeNode.cs index 8f2cc1c13..87a1d3167 100644 --- a/Source/Editor/GUI/Tree/TreeNode.cs +++ b/Source/Editor/GUI/Tree/TreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Gizmo/EditorPrimitives.cs b/Source/Editor/Gizmo/EditorPrimitives.cs index c427418aa..9aa2102ae 100644 --- a/Source/Editor/Gizmo/EditorPrimitives.cs +++ b/Source/Editor/Gizmo/EditorPrimitives.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Gizmo/GizmoBase.cs b/Source/Editor/Gizmo/GizmoBase.cs index 0330ab81e..f31d56288 100644 --- a/Source/Editor/Gizmo/GizmoBase.cs +++ b/Source/Editor/Gizmo/GizmoBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.SceneGraph; diff --git a/Source/Editor/Gizmo/GizmosCollection.cs b/Source/Editor/Gizmo/GizmosCollection.cs index ba89f34ce..30593d47e 100644 --- a/Source/Editor/Gizmo/GizmosCollection.cs +++ b/Source/Editor/Gizmo/GizmosCollection.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Gizmo/GridGizmo.cs b/Source/Editor/Gizmo/GridGizmo.cs index 3c787ebb2..a36bb8da1 100644 --- a/Source/Editor/Gizmo/GridGizmo.cs +++ b/Source/Editor/Gizmo/GridGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Gizmo/IGizmoOwner.cs b/Source/Editor/Gizmo/IGizmoOwner.cs index 8e84e9863..893e9a44a 100644 --- a/Source/Editor/Gizmo/IGizmoOwner.cs +++ b/Source/Editor/Gizmo/IGizmoOwner.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Gizmo/SelectionOutline.cs b/Source/Editor/Gizmo/SelectionOutline.cs index 64febc005..c30d6271e 100644 --- a/Source/Editor/Gizmo/SelectionOutline.cs +++ b/Source/Editor/Gizmo/SelectionOutline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Gizmo/TransformGizmo.cs b/Source/Editor/Gizmo/TransformGizmo.cs index bb8f655fb..ef7558b8d 100644 --- a/Source/Editor/Gizmo/TransformGizmo.cs +++ b/Source/Editor/Gizmo/TransformGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Gizmo/TransformGizmoBase.Draw.cs b/Source/Editor/Gizmo/TransformGizmoBase.Draw.cs index f149185f1..77a9cb017 100644 --- a/Source/Editor/Gizmo/TransformGizmoBase.Draw.cs +++ b/Source/Editor/Gizmo/TransformGizmoBase.Draw.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Gizmo/TransformGizmoBase.Selection.cs b/Source/Editor/Gizmo/TransformGizmoBase.Selection.cs index 364fb3f77..513178f40 100644 --- a/Source/Editor/Gizmo/TransformGizmoBase.Selection.cs +++ b/Source/Editor/Gizmo/TransformGizmoBase.Selection.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Gizmo/TransformGizmoBase.Settings.cs b/Source/Editor/Gizmo/TransformGizmoBase.Settings.cs index d3cde13eb..ec9423475 100644 --- a/Source/Editor/Gizmo/TransformGizmoBase.Settings.cs +++ b/Source/Editor/Gizmo/TransformGizmoBase.Settings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Gizmo/TransformGizmoBase.Types.cs b/Source/Editor/Gizmo/TransformGizmoBase.Types.cs index 2c699877b..377bd28a0 100644 --- a/Source/Editor/Gizmo/TransformGizmoBase.Types.cs +++ b/Source/Editor/Gizmo/TransformGizmoBase.Types.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Gizmo { diff --git a/Source/Editor/Gizmo/TransformGizmoBase.cs b/Source/Editor/Gizmo/TransformGizmoBase.cs index 221ab7e86..2a746bcbe 100644 --- a/Source/Editor/Gizmo/TransformGizmoBase.cs +++ b/Source/Editor/Gizmo/TransformGizmoBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/History/HistoryStack.cs b/Source/Editor/History/HistoryStack.cs index 1be639ca0..9abcaf43e 100644 --- a/Source/Editor/History/HistoryStack.cs +++ b/Source/Editor/History/HistoryStack.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/History/IHistoryAction.cs b/Source/Editor/History/IHistoryAction.cs index ad899db0c..cacc9ebbb 100644 --- a/Source/Editor/History/IHistoryAction.cs +++ b/Source/Editor/History/IHistoryAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.History { diff --git a/Source/Editor/History/UndoActionObject.cs b/Source/Editor/History/UndoActionObject.cs index 7fefe5911..e0927824f 100644 --- a/Source/Editor/History/UndoActionObject.cs +++ b/Source/Editor/History/UndoActionObject.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/IEditable.cs b/Source/Editor/IEditable.cs index 28b7815ce..6de8e1249 100644 --- a/Source/Editor/IEditable.cs +++ b/Source/Editor/IEditable.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/Managed/ManagedEditor.Internal.cpp b/Source/Editor/Managed/ManagedEditor.Internal.cpp index 3d236cd49..d87d210e5 100644 --- a/Source/Editor/Managed/ManagedEditor.Internal.cpp +++ b/Source/Editor/Managed/ManagedEditor.Internal.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ManagedEditor.h" #include "Editor/Editor.h" diff --git a/Source/Editor/Managed/ManagedEditor.cpp b/Source/Editor/Managed/ManagedEditor.cpp index c33e2c63e..fdabf9056 100644 --- a/Source/Editor/Managed/ManagedEditor.cpp +++ b/Source/Editor/Managed/ManagedEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ManagedEditor.h" #include "Editor/Editor.h" diff --git a/Source/Editor/Managed/ManagedEditor.h b/Source/Editor/Managed/ManagedEditor.h index 8d6547377..563484856 100644 --- a/Source/Editor/Managed/ManagedEditor.h +++ b/Source/Editor/Managed/ManagedEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Modules/ContentDatabaseModule.cs b/Source/Editor/Modules/ContentDatabaseModule.cs index a3ee714ae..202a083d6 100644 --- a/Source/Editor/Modules/ContentDatabaseModule.cs +++ b/Source/Editor/Modules/ContentDatabaseModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/ContentEditingModule.cs b/Source/Editor/Modules/ContentEditingModule.cs index 90a2b9f78..3db27af40 100644 --- a/Source/Editor/Modules/ContentEditingModule.cs +++ b/Source/Editor/Modules/ContentEditingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/Modules/ContentFindingModule.cs b/Source/Editor/Modules/ContentFindingModule.cs index 81925c121..0dd311a19 100644 --- a/Source/Editor/Modules/ContentFindingModule.cs +++ b/Source/Editor/Modules/ContentFindingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/ContentImportingModule.cs b/Source/Editor/Modules/ContentImportingModule.cs index 4597f8d74..9de3c10e0 100644 --- a/Source/Editor/Modules/ContentImportingModule.cs +++ b/Source/Editor/Modules/ContentImportingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/EditorModule.cs b/Source/Editor/Modules/EditorModule.cs index b2467cb69..aaa343e8f 100644 --- a/Source/Editor/Modules/EditorModule.cs +++ b/Source/Editor/Modules/EditorModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Modules/PrefabsModule.cs b/Source/Editor/Modules/PrefabsModule.cs index 71531df2d..cf42d792d 100644 --- a/Source/Editor/Modules/PrefabsModule.cs +++ b/Source/Editor/Modules/PrefabsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/ProgressReportingModule.cs b/Source/Editor/Modules/ProgressReportingModule.cs index 2bf887a10..713292657 100644 --- a/Source/Editor/Modules/ProgressReportingModule.cs +++ b/Source/Editor/Modules/ProgressReportingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/ProjectCacheModule.cs b/Source/Editor/Modules/ProjectCacheModule.cs index 94756362e..acb6e997e 100644 --- a/Source/Editor/Modules/ProjectCacheModule.cs +++ b/Source/Editor/Modules/ProjectCacheModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SceneEditingModule.cs b/Source/Editor/Modules/SceneEditingModule.cs index 7b28367ff..68bfe9f79 100644 --- a/Source/Editor/Modules/SceneEditingModule.cs +++ b/Source/Editor/Modules/SceneEditingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SceneModule.cs b/Source/Editor/Modules/SceneModule.cs index 85289e3b6..4d1aee93e 100644 --- a/Source/Editor/Modules/SceneModule.cs +++ b/Source/Editor/Modules/SceneModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SimulationModule.cs b/Source/Editor/Modules/SimulationModule.cs index 07a67714a..cc081c23c 100644 --- a/Source/Editor/Modules/SimulationModule.cs +++ b/Source/Editor/Modules/SimulationModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Threading; diff --git a/Source/Editor/Modules/SourceCodeEditing/CachedCustomAnimGraphNodesCollection.cs b/Source/Editor/Modules/SourceCodeEditing/CachedCustomAnimGraphNodesCollection.cs index 3c5caf412..113a701c6 100644 --- a/Source/Editor/Modules/SourceCodeEditing/CachedCustomAnimGraphNodesCollection.cs +++ b/Source/Editor/Modules/SourceCodeEditing/CachedCustomAnimGraphNodesCollection.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SourceCodeEditing/CachedTypesCollection.cs b/Source/Editor/Modules/SourceCodeEditing/CachedTypesCollection.cs index cacaa1db4..6e0517175 100644 --- a/Source/Editor/Modules/SourceCodeEditing/CachedTypesCollection.cs +++ b/Source/Editor/Modules/SourceCodeEditing/CachedTypesCollection.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs b/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs index 7042dfb92..8b93f8ea4 100644 --- a/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs +++ b/Source/Editor/Modules/SourceCodeEditing/CodeDocsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SourceCodeEditing/CodeEditingModule.cs b/Source/Editor/Modules/SourceCodeEditing/CodeEditingModule.cs index 010cd4942..52302b785 100644 --- a/Source/Editor/Modules/SourceCodeEditing/CodeEditingModule.cs +++ b/Source/Editor/Modules/SourceCodeEditing/CodeEditingModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Modules/SourceCodeEditing/DefaultSourceCodeEditor.cs b/Source/Editor/Modules/SourceCodeEditing/DefaultSourceCodeEditor.cs index 3f8d0b689..1e7d481fe 100644 --- a/Source/Editor/Modules/SourceCodeEditing/DefaultSourceCodeEditor.cs +++ b/Source/Editor/Modules/SourceCodeEditing/DefaultSourceCodeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Modules/SourceCodeEditing/ISourceCodeEditor.cs b/Source/Editor/Modules/SourceCodeEditing/ISourceCodeEditor.cs index 3be9f23d6..3d172fb54 100644 --- a/Source/Editor/Modules/SourceCodeEditing/ISourceCodeEditor.cs +++ b/Source/Editor/Modules/SourceCodeEditing/ISourceCodeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Modules.SourceCodeEditing { diff --git a/Source/Editor/Modules/SourceCodeEditing/InBuildSourceCodeEditor.cs b/Source/Editor/Modules/SourceCodeEditing/InBuildSourceCodeEditor.cs index ab51c3c8f..e00ea1b61 100644 --- a/Source/Editor/Modules/SourceCodeEditing/InBuildSourceCodeEditor.cs +++ b/Source/Editor/Modules/SourceCodeEditing/InBuildSourceCodeEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/Modules/UIModule.cs b/Source/Editor/Modules/UIModule.cs index a0b9ca19b..a3bdf8ee0 100644 --- a/Source/Editor/Modules/UIModule.cs +++ b/Source/Editor/Modules/UIModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Modules/WindowsModule.cs b/Source/Editor/Modules/WindowsModule.cs index 993d51778..a7000d7fa 100644 --- a/Source/Editor/Modules/WindowsModule.cs +++ b/Source/Editor/Modules/WindowsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Options/Editor.cs b/Source/Editor/Options/Editor.cs index 301c046c7..3f7c01e51 100644 --- a/Source/Editor/Options/Editor.cs +++ b/Source/Editor/Options/Editor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/Options/EditorOptions.cs b/Source/Editor/Options/EditorOptions.cs index 9370ba3a5..e13ccfdd2 100644 --- a/Source/Editor/Options/EditorOptions.cs +++ b/Source/Editor/Options/EditorOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/Options/GeneralOptions.cs b/Source/Editor/Options/GeneralOptions.cs index 5f05cae2c..814e80d0a 100644 --- a/Source/Editor/Options/GeneralOptions.cs +++ b/Source/Editor/Options/GeneralOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEngine; diff --git a/Source/Editor/Options/InputBinding.cs b/Source/Editor/Options/InputBinding.cs index e87cb24ae..d007be9a7 100644 --- a/Source/Editor/Options/InputBinding.cs +++ b/Source/Editor/Options/InputBinding.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Options/InputOptions.cs b/Source/Editor/Options/InputOptions.cs index f02d91da4..4f2b40514 100644 --- a/Source/Editor/Options/InputOptions.cs +++ b/Source/Editor/Options/InputOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEngine; diff --git a/Source/Editor/Options/InterfaceOptions.cs b/Source/Editor/Options/InterfaceOptions.cs index 8be880e0e..acfb7f5e8 100644 --- a/Source/Editor/Options/InterfaceOptions.cs +++ b/Source/Editor/Options/InterfaceOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEditor.GUI.Docking; diff --git a/Source/Editor/Options/OptionsModule.cs b/Source/Editor/Options/OptionsModule.cs index 0b4476e0a..a4c35fd64 100644 --- a/Source/Editor/Options/OptionsModule.cs +++ b/Source/Editor/Options/OptionsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Options/SourceCodeOptions.cs b/Source/Editor/Options/SourceCodeOptions.cs index e58b33541..ed059cc58 100644 --- a/Source/Editor/Options/SourceCodeOptions.cs +++ b/Source/Editor/Options/SourceCodeOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEditor.CustomEditors; diff --git a/Source/Editor/Options/ThemeOptions.cs b/Source/Editor/Options/ThemeOptions.cs index b867b7e58..243918939 100644 --- a/Source/Editor/Options/ThemeOptions.cs +++ b/Source/Editor/Options/ThemeOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors; diff --git a/Source/Editor/Options/ViewportOptions.cs b/Source/Editor/Options/ViewportOptions.cs index 7f42d36d0..25f4505c2 100644 --- a/Source/Editor/Options/ViewportOptions.cs +++ b/Source/Editor/Options/ViewportOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEngine; diff --git a/Source/Editor/Options/VisualOptions.cs b/Source/Editor/Options/VisualOptions.cs index 0395276fd..27c24f4af 100644 --- a/Source/Editor/Options/VisualOptions.cs +++ b/Source/Editor/Options/VisualOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEngine; diff --git a/Source/Editor/Plugins/EditorPlugin.cs b/Source/Editor/Plugins/EditorPlugin.cs index bfc4e037a..351beffb4 100644 --- a/Source/Editor/Plugins/EditorPlugin.cs +++ b/Source/Editor/Plugins/EditorPlugin.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Plugins/PluginUtils.cs b/Source/Editor/Plugins/PluginUtils.cs index 3c9765922..a3d535c87 100644 --- a/Source/Editor/Plugins/PluginUtils.cs +++ b/Source/Editor/Plugins/PluginUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Progress/Handlers/BakeEnvProbesProgress.cs b/Source/Editor/Progress/Handlers/BakeEnvProbesProgress.cs index e79d9bd24..1038a004f 100644 --- a/Source/Editor/Progress/Handlers/BakeEnvProbesProgress.cs +++ b/Source/Editor/Progress/Handlers/BakeEnvProbesProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Progress/Handlers/BakeLightmapsProgress.cs b/Source/Editor/Progress/Handlers/BakeLightmapsProgress.cs index 4c1ebb6cb..ca1d64704 100644 --- a/Source/Editor/Progress/Handlers/BakeLightmapsProgress.cs +++ b/Source/Editor/Progress/Handlers/BakeLightmapsProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Progress/Handlers/BuildingGameProgress.cs b/Source/Editor/Progress/Handlers/BuildingGameProgress.cs index cad516b59..f5152d11c 100644 --- a/Source/Editor/Progress/Handlers/BuildingGameProgress.cs +++ b/Source/Editor/Progress/Handlers/BuildingGameProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Progress/Handlers/CodeEditorOpenProgress.cs b/Source/Editor/Progress/Handlers/CodeEditorOpenProgress.cs index 433d596da..285c3c670 100644 --- a/Source/Editor/Progress/Handlers/CodeEditorOpenProgress.cs +++ b/Source/Editor/Progress/Handlers/CodeEditorOpenProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Progress/Handlers/CompileScriptsProgress.cs b/Source/Editor/Progress/Handlers/CompileScriptsProgress.cs index 339ea60f2..ef814a0fb 100644 --- a/Source/Editor/Progress/Handlers/CompileScriptsProgress.cs +++ b/Source/Editor/Progress/Handlers/CompileScriptsProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEditor.Utilities; diff --git a/Source/Editor/Progress/Handlers/GenerateScriptsProjectFilesProgress.cs b/Source/Editor/Progress/Handlers/GenerateScriptsProjectFilesProgress.cs index 1a4211a13..0f5dd4392 100644 --- a/Source/Editor/Progress/Handlers/GenerateScriptsProjectFilesProgress.cs +++ b/Source/Editor/Progress/Handlers/GenerateScriptsProjectFilesProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Threading.Tasks; diff --git a/Source/Editor/Progress/Handlers/ImportAssetsProgress.cs b/Source/Editor/Progress/Handlers/ImportAssetsProgress.cs index de4dfca24..7bbefbc2d 100644 --- a/Source/Editor/Progress/Handlers/ImportAssetsProgress.cs +++ b/Source/Editor/Progress/Handlers/ImportAssetsProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Content.Import; diff --git a/Source/Editor/Progress/Handlers/NavMeshBuildingProgress.cs b/Source/Editor/Progress/Handlers/NavMeshBuildingProgress.cs index ef7d78119..62520d324 100644 --- a/Source/Editor/Progress/Handlers/NavMeshBuildingProgress.cs +++ b/Source/Editor/Progress/Handlers/NavMeshBuildingProgress.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Progress/ProgressHandler.cs b/Source/Editor/Progress/ProgressHandler.cs index fd0b1ed1b..74b31ff1f 100644 --- a/Source/Editor/Progress/ProgressHandler.cs +++ b/Source/Editor/Progress/ProgressHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/ProjectInfo.cpp b/Source/Editor/ProjectInfo.cpp index 24c96ff5a..4e7ee4483 100644 --- a/Source/Editor/ProjectInfo.cpp +++ b/Source/Editor/ProjectInfo.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ProjectInfo.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Editor/ProjectInfo.cs b/Source/Editor/ProjectInfo.cs index 0653fe101..bc55a9c05 100644 --- a/Source/Editor/ProjectInfo.cs +++ b/Source/Editor/ProjectInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/ProjectInfo.h b/Source/Editor/ProjectInfo.h index 1ccfe6150..256269cc9 100644 --- a/Source/Editor/ProjectInfo.h +++ b/Source/Editor/ProjectInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/SceneGraph/ActorChildNode.cs b/Source/Editor/SceneGraph/ActorChildNode.cs index dc20a2112..6da50512c 100644 --- a/Source/Editor/SceneGraph/ActorChildNode.cs +++ b/Source/Editor/SceneGraph/ActorChildNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.SceneGraph.Actors; diff --git a/Source/Editor/SceneGraph/ActorNode.cs b/Source/Editor/SceneGraph/ActorNode.cs index eea402fde..7c5a6c1ba 100644 --- a/Source/Editor/SceneGraph/ActorNode.cs +++ b/Source/Editor/SceneGraph/ActorNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/ActorNodeWithIcon.cs b/Source/Editor/SceneGraph/ActorNodeWithIcon.cs index 1453a9eeb..1b14bea6d 100644 --- a/Source/Editor/SceneGraph/ActorNodeWithIcon.cs +++ b/Source/Editor/SceneGraph/ActorNodeWithIcon.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/AnimatedModelNode.cs b/Source/Editor/SceneGraph/Actors/AnimatedModelNode.cs index 1d16d30d2..604907ae4 100644 --- a/Source/Editor/SceneGraph/Actors/AnimatedModelNode.cs +++ b/Source/Editor/SceneGraph/Actors/AnimatedModelNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.ComponentModel; diff --git a/Source/Editor/SceneGraph/Actors/AudioListenerNode.cs b/Source/Editor/SceneGraph/Actors/AudioListenerNode.cs index 2f03d5f8e..d06d7d37c 100644 --- a/Source/Editor/SceneGraph/Actors/AudioListenerNode.cs +++ b/Source/Editor/SceneGraph/Actors/AudioListenerNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/AudioSourceNode.cs b/Source/Editor/SceneGraph/Actors/AudioSourceNode.cs index 2b619978b..43ae23e87 100644 --- a/Source/Editor/SceneGraph/Actors/AudioSourceNode.cs +++ b/Source/Editor/SceneGraph/Actors/AudioSourceNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/BoneSocketNode.cs b/Source/Editor/SceneGraph/Actors/BoneSocketNode.cs index fa45c5bc5..df5e3db7d 100644 --- a/Source/Editor/SceneGraph/Actors/BoneSocketNode.cs +++ b/Source/Editor/SceneGraph/Actors/BoneSocketNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/BoxBrushNode.cs b/Source/Editor/SceneGraph/Actors/BoxBrushNode.cs index 62617c55e..da28dad2b 100644 --- a/Source/Editor/SceneGraph/Actors/BoxBrushNode.cs +++ b/Source/Editor/SceneGraph/Actors/BoxBrushNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/BoxColliderNode.cs b/Source/Editor/SceneGraph/Actors/BoxColliderNode.cs index d23951c1b..1f92eceea 100644 --- a/Source/Editor/SceneGraph/Actors/BoxColliderNode.cs +++ b/Source/Editor/SceneGraph/Actors/BoxColliderNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/BoxVolumeNode.cs b/Source/Editor/SceneGraph/Actors/BoxVolumeNode.cs index 2a26e0960..92850857b 100644 --- a/Source/Editor/SceneGraph/Actors/BoxVolumeNode.cs +++ b/Source/Editor/SceneGraph/Actors/BoxVolumeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/CameraNode.cs b/Source/Editor/SceneGraph/Actors/CameraNode.cs index cd3405e4c..ac6edd149 100644 --- a/Source/Editor/SceneGraph/Actors/CameraNode.cs +++ b/Source/Editor/SceneGraph/Actors/CameraNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/ColliderNode.cs b/Source/Editor/SceneGraph/Actors/ColliderNode.cs index 4cec5ca83..0efed3d8c 100644 --- a/Source/Editor/SceneGraph/Actors/ColliderNode.cs +++ b/Source/Editor/SceneGraph/Actors/ColliderNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/DecalNode.cs b/Source/Editor/SceneGraph/Actors/DecalNode.cs index 51db17285..b7bf631bf 100644 --- a/Source/Editor/SceneGraph/Actors/DecalNode.cs +++ b/Source/Editor/SceneGraph/Actors/DecalNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/DirectionalLightNode.cs b/Source/Editor/SceneGraph/Actors/DirectionalLightNode.cs index 56cb0fa07..5363d1f55 100644 --- a/Source/Editor/SceneGraph/Actors/DirectionalLightNode.cs +++ b/Source/Editor/SceneGraph/Actors/DirectionalLightNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/EnvironmentProbeNode.cs b/Source/Editor/SceneGraph/Actors/EnvironmentProbeNode.cs index 87fe051da..691d4af2c 100644 --- a/Source/Editor/SceneGraph/Actors/EnvironmentProbeNode.cs +++ b/Source/Editor/SceneGraph/Actors/EnvironmentProbeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/ExponentialHeightFogNode.cs b/Source/Editor/SceneGraph/Actors/ExponentialHeightFogNode.cs index 1999d731c..eb16273e3 100644 --- a/Source/Editor/SceneGraph/Actors/ExponentialHeightFogNode.cs +++ b/Source/Editor/SceneGraph/Actors/ExponentialHeightFogNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/FoliageNode.cs b/Source/Editor/SceneGraph/Actors/FoliageNode.cs index 0055f8a80..9cb405092 100644 --- a/Source/Editor/SceneGraph/Actors/FoliageNode.cs +++ b/Source/Editor/SceneGraph/Actors/FoliageNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/JointNode.cs b/Source/Editor/SceneGraph/Actors/JointNode.cs index 4c2b79630..eb5141e9c 100644 --- a/Source/Editor/SceneGraph/Actors/JointNode.cs +++ b/Source/Editor/SceneGraph/Actors/JointNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/NavLinkNode.cs b/Source/Editor/SceneGraph/Actors/NavLinkNode.cs index 84bbb8fe3..a0e90622f 100644 --- a/Source/Editor/SceneGraph/Actors/NavLinkNode.cs +++ b/Source/Editor/SceneGraph/Actors/NavLinkNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/NavMeshBoundsVolumeNode.cs b/Source/Editor/SceneGraph/Actors/NavMeshBoundsVolumeNode.cs index 84203862b..4bea259fa 100644 --- a/Source/Editor/SceneGraph/Actors/NavMeshBoundsVolumeNode.cs +++ b/Source/Editor/SceneGraph/Actors/NavMeshBoundsVolumeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/NavModifierVolumeNode.cs b/Source/Editor/SceneGraph/Actors/NavModifierVolumeNode.cs index a84cf2e7a..55fb2bdfa 100644 --- a/Source/Editor/SceneGraph/Actors/NavModifierVolumeNode.cs +++ b/Source/Editor/SceneGraph/Actors/NavModifierVolumeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs b/Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs index 86f435a3a..9024df9f0 100644 --- a/Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs +++ b/Source/Editor/SceneGraph/Actors/ParticleEffectNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/PointLightNode.cs b/Source/Editor/SceneGraph/Actors/PointLightNode.cs index cf806d524..c9c8f1950 100644 --- a/Source/Editor/SceneGraph/Actors/PointLightNode.cs +++ b/Source/Editor/SceneGraph/Actors/PointLightNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/PostFxVolumeNode.cs b/Source/Editor/SceneGraph/Actors/PostFxVolumeNode.cs index a01cd2851..6e7f1b357 100644 --- a/Source/Editor/SceneGraph/Actors/PostFxVolumeNode.cs +++ b/Source/Editor/SceneGraph/Actors/PostFxVolumeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SceneAnimationPlayerNode.cs b/Source/Editor/SceneGraph/Actors/SceneAnimationPlayerNode.cs index 2a6a3e64c..e29278077 100644 --- a/Source/Editor/SceneGraph/Actors/SceneAnimationPlayerNode.cs +++ b/Source/Editor/SceneGraph/Actors/SceneAnimationPlayerNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SceneNode.cs b/Source/Editor/SceneGraph/Actors/SceneNode.cs index e5044d177..df7a11b1a 100644 --- a/Source/Editor/SceneGraph/Actors/SceneNode.cs +++ b/Source/Editor/SceneGraph/Actors/SceneNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/SceneGraph/Actors/SkyLightNode.cs b/Source/Editor/SceneGraph/Actors/SkyLightNode.cs index b712630f4..63ae117a9 100644 --- a/Source/Editor/SceneGraph/Actors/SkyLightNode.cs +++ b/Source/Editor/SceneGraph/Actors/SkyLightNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SkyNode.cs b/Source/Editor/SceneGraph/Actors/SkyNode.cs index cfe1e12a6..4ff4b48a1 100644 --- a/Source/Editor/SceneGraph/Actors/SkyNode.cs +++ b/Source/Editor/SceneGraph/Actors/SkyNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SkyboxNode.cs b/Source/Editor/SceneGraph/Actors/SkyboxNode.cs index dbe36d3f9..881e2e808 100644 --- a/Source/Editor/SceneGraph/Actors/SkyboxNode.cs +++ b/Source/Editor/SceneGraph/Actors/SkyboxNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SplineNode.cs b/Source/Editor/SceneGraph/Actors/SplineNode.cs index cb90791a7..37a0f9b9a 100644 --- a/Source/Editor/SceneGraph/Actors/SplineNode.cs +++ b/Source/Editor/SceneGraph/Actors/SplineNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/SpotLightNode.cs b/Source/Editor/SceneGraph/Actors/SpotLightNode.cs index 0a34ebe64..b961ce205 100644 --- a/Source/Editor/SceneGraph/Actors/SpotLightNode.cs +++ b/Source/Editor/SceneGraph/Actors/SpotLightNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/SpriteRenderNode.cs b/Source/Editor/SceneGraph/Actors/SpriteRenderNode.cs index 47ef74b64..8b5b498e1 100644 --- a/Source/Editor/SceneGraph/Actors/SpriteRenderNode.cs +++ b/Source/Editor/SceneGraph/Actors/SpriteRenderNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/StaticModelNode.cs b/Source/Editor/SceneGraph/Actors/StaticModelNode.cs index 1c76d966c..2a720b6b9 100644 --- a/Source/Editor/SceneGraph/Actors/StaticModelNode.cs +++ b/Source/Editor/SceneGraph/Actors/StaticModelNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/SceneGraph/Actors/TerrainNode.cs b/Source/Editor/SceneGraph/Actors/TerrainNode.cs index 3d4eff406..f3e60cb1a 100644 --- a/Source/Editor/SceneGraph/Actors/TerrainNode.cs +++ b/Source/Editor/SceneGraph/Actors/TerrainNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/TextRenderNode.cs b/Source/Editor/SceneGraph/Actors/TextRenderNode.cs index 8def84a18..a79708fe8 100644 --- a/Source/Editor/SceneGraph/Actors/TextRenderNode.cs +++ b/Source/Editor/SceneGraph/Actors/TextRenderNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/Actors/UICanvasNode.cs b/Source/Editor/SceneGraph/Actors/UICanvasNode.cs index 316de4318..c09e1a246 100644 --- a/Source/Editor/SceneGraph/Actors/UICanvasNode.cs +++ b/Source/Editor/SceneGraph/Actors/UICanvasNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/Actors/UIControlNode.cs b/Source/Editor/SceneGraph/Actors/UIControlNode.cs index 836284ff8..32c322f27 100644 --- a/Source/Editor/SceneGraph/Actors/UIControlNode.cs +++ b/Source/Editor/SceneGraph/Actors/UIControlNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/SceneGraph/GUI/ActorTreeNode.cs b/Source/Editor/SceneGraph/GUI/ActorTreeNode.cs index 10857f685..751a5ad7e 100644 --- a/Source/Editor/SceneGraph/GUI/ActorTreeNode.cs +++ b/Source/Editor/SceneGraph/GUI/ActorTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/SceneGraph/GUI/SceneTreeNode.cs b/Source/Editor/SceneGraph/GUI/SceneTreeNode.cs index bbf987441..a35ead063 100644 --- a/Source/Editor/SceneGraph/GUI/SceneTreeNode.cs +++ b/Source/Editor/SceneGraph/GUI/SceneTreeNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.SceneGraph.Actors; using FlaxEngine; diff --git a/Source/Editor/SceneGraph/LocalSceneGraph.cs b/Source/Editor/SceneGraph/LocalSceneGraph.cs index fdfff1e02..d6c89699f 100644 --- a/Source/Editor/SceneGraph/LocalSceneGraph.cs +++ b/Source/Editor/SceneGraph/LocalSceneGraph.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/SceneGraph/RootNode.cs b/Source/Editor/SceneGraph/RootNode.cs index 846b8eef4..1eba38157 100644 --- a/Source/Editor/SceneGraph/RootNode.cs +++ b/Source/Editor/SceneGraph/RootNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/SceneGraphFactory.cs b/Source/Editor/SceneGraph/SceneGraphFactory.cs index b50d9e468..5e5c856e5 100644 --- a/Source/Editor/SceneGraph/SceneGraphFactory.cs +++ b/Source/Editor/SceneGraph/SceneGraphFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/SceneGraph/SceneGraphNode.cs b/Source/Editor/SceneGraph/SceneGraphNode.cs index 1b1317d28..a9c350bb2 100644 --- a/Source/Editor/SceneGraph/SceneGraphNode.cs +++ b/Source/Editor/SceneGraph/SceneGraphNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/SceneGraph/SceneGraphTools.cs b/Source/Editor/SceneGraph/SceneGraphTools.cs index 81d32320d..b5cf5150c 100644 --- a/Source/Editor/SceneGraph/SceneGraphTools.cs +++ b/Source/Editor/SceneGraph/SceneGraphTools.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Scripting/CodeEditor.cpp b/Source/Editor/Scripting/CodeEditor.cpp index 1cfc4e737..bbbf318e1 100644 --- a/Source/Editor/Scripting/CodeEditor.cpp +++ b/Source/Editor/Scripting/CodeEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CodeEditor.h" #include "CodeEditors/SystemDefaultCodeEditor.h" diff --git a/Source/Editor/Scripting/CodeEditor.h b/Source/Editor/Scripting/CodeEditor.h index a837f0d6e..11da53857 100644 --- a/Source/Editor/Scripting/CodeEditor.h +++ b/Source/Editor/Scripting/CodeEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.cpp b/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.cpp index d5e65dedc..e88f3356b 100644 --- a/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.cpp +++ b/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RiderCodeEditor.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.h b/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.h index bbb461ef0..3b124a39d 100644 --- a/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.h +++ b/Source/Editor/Scripting/CodeEditors/RiderCodeEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.cpp b/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.cpp index c49cfbd12..b78a4310b 100644 --- a/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.cpp +++ b/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SystemDefaultCodeEditor.h" #include "Engine/Core/Types/StringView.h" diff --git a/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.h b/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.h index 9a1207f26..f9a41d50a 100644 --- a/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.h +++ b/Source/Editor/Scripting/CodeEditors/SystemDefaultCodeEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.cpp b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.cpp index 233a268ab..2357fd241 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.cpp +++ b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_VISUAL_STUDIO_DTE diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.h b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.h index ff37819c2..ebeda2ee7 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.h +++ b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioConnection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.cpp b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.cpp index 2c23683ea..1828e4b99 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.cpp +++ b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_VISUAL_STUDIO_DTE diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.h b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.h index bd106b0d7..a74a57876 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.h +++ b/Source/Editor/Scripting/CodeEditors/VisualStudio/VisualStudioEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.cpp b/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.cpp index 1147c4ed8..fb5473e2d 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.cpp +++ b/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VisualStudioCodeEditor.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.h b/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.h index eafa3936e..78be0da80 100644 --- a/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.h +++ b/Source/Editor/Scripting/CodeEditors/VisualStudioCodeEditor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/ScriptType.Custom.cs b/Source/Editor/Scripting/ScriptType.Custom.cs index 17fbfa261..a20f86f08 100644 --- a/Source/Editor/Scripting/ScriptType.Custom.cs +++ b/Source/Editor/Scripting/ScriptType.Custom.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Reflection; diff --git a/Source/Editor/Scripting/ScriptType.Interfaces.cs b/Source/Editor/Scripting/ScriptType.Interfaces.cs index 1e27dd5b9..fb4230256 100644 --- a/Source/Editor/Scripting/ScriptType.Interfaces.cs +++ b/Source/Editor/Scripting/ScriptType.Interfaces.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Scripting/ScriptType.cs b/Source/Editor/Scripting/ScriptType.cs index 8f93fb1d9..d6b4fa271 100644 --- a/Source/Editor/Scripting/ScriptType.cs +++ b/Source/Editor/Scripting/ScriptType.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Scripting/ScriptsBuilder.cpp b/Source/Editor/Scripting/ScriptsBuilder.cpp index 25e22eaca..e268d44c5 100644 --- a/Source/Editor/Scripting/ScriptsBuilder.cpp +++ b/Source/Editor/Scripting/ScriptsBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ScriptsBuilder.h" #include "CodeEditor.h" diff --git a/Source/Editor/Scripting/ScriptsBuilder.cs b/Source/Editor/Scripting/ScriptsBuilder.cs index a03287c7a..67a43388a 100644 --- a/Source/Editor/Scripting/ScriptsBuilder.cs +++ b/Source/Editor/Scripting/ScriptsBuilder.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/Scripting/ScriptsBuilder.h b/Source/Editor/Scripting/ScriptsBuilder.h index 52fdd8457..cf0019df5 100644 --- a/Source/Editor/Scripting/ScriptsBuilder.h +++ b/Source/Editor/Scripting/ScriptsBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Scripting/TypeUtils.cs b/Source/Editor/Scripting/TypeUtils.cs index ba0e9d778..c2e839b3d 100644 --- a/Source/Editor/Scripting/TypeUtils.cs +++ b/Source/Editor/Scripting/TypeUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Scripting/Types.h b/Source/Editor/Scripting/Types.h index 60aeb5869..58f71df84 100644 --- a/Source/Editor/Scripting/Types.h +++ b/Source/Editor/Scripting/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/States/BuildingLightingState.cs b/Source/Editor/States/BuildingLightingState.cs index 00b369cf6..ff09f7dda 100644 --- a/Source/Editor/States/BuildingLightingState.cs +++ b/Source/Editor/States/BuildingLightingState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Assertions; diff --git a/Source/Editor/States/BuildingScenesState.cs b/Source/Editor/States/BuildingScenesState.cs index c6d749503..28783e8b2 100644 --- a/Source/Editor/States/BuildingScenesState.cs +++ b/Source/Editor/States/BuildingScenesState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/States/ChangingScenesState.cs b/Source/Editor/States/ChangingScenesState.cs index 5d366b88b..295985571 100644 --- a/Source/Editor/States/ChangingScenesState.cs +++ b/Source/Editor/States/ChangingScenesState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/States/ClosingState.cs b/Source/Editor/States/ClosingState.cs index 10143ea61..2dce632f1 100644 --- a/Source/Editor/States/ClosingState.cs +++ b/Source/Editor/States/ClosingState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Utilities; diff --git a/Source/Editor/States/EditingSceneState.cs b/Source/Editor/States/EditingSceneState.cs index 497b7679c..1e5cce41f 100644 --- a/Source/Editor/States/EditingSceneState.cs +++ b/Source/Editor/States/EditingSceneState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Utilities; diff --git a/Source/Editor/States/EditorState.cs b/Source/Editor/States/EditorState.cs index c28311e79..b900e3cca 100644 --- a/Source/Editor/States/EditorState.cs +++ b/Source/Editor/States/EditorState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Utilities; diff --git a/Source/Editor/States/EditorStateMachine.cs b/Source/Editor/States/EditorStateMachine.cs index 73bd79d92..39b6c892a 100644 --- a/Source/Editor/States/EditorStateMachine.cs +++ b/Source/Editor/States/EditorStateMachine.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/States/InvalidStateException.cs b/Source/Editor/States/InvalidStateException.cs index e7881855b..b6c64cf86 100644 --- a/Source/Editor/States/InvalidStateException.cs +++ b/Source/Editor/States/InvalidStateException.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/States/LoadingState.cs b/Source/Editor/States/LoadingState.cs index fddc7e7cf..746c8d92b 100644 --- a/Source/Editor/States/LoadingState.cs +++ b/Source/Editor/States/LoadingState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/States/PlayingState.cs b/Source/Editor/States/PlayingState.cs index 7915069ca..18a94348d 100644 --- a/Source/Editor/States/PlayingState.cs +++ b/Source/Editor/States/PlayingState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/States/ReloadingScriptsState.cs b/Source/Editor/States/ReloadingScriptsState.cs index 8676a2af4..d9024d5c8 100644 --- a/Source/Editor/States/ReloadingScriptsState.cs +++ b/Source/Editor/States/ReloadingScriptsState.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Utilities; diff --git a/Source/Editor/Surface/AnimGraphSurface.cs b/Source/Editor/Surface/AnimGraphSurface.cs index 7953851ee..7d9c7b381 100644 --- a/Source/Editor/Surface/AnimGraphSurface.cs +++ b/Source/Editor/Surface/AnimGraphSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/AnimationGraphFunctionSurface.cs b/Source/Editor/Surface/AnimationGraphFunctionSurface.cs index be346ae62..fa6619e1d 100644 --- a/Source/Editor/Surface/AnimationGraphFunctionSurface.cs +++ b/Source/Editor/Surface/AnimationGraphFunctionSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Surface.Archetypes; diff --git a/Source/Editor/Surface/Archetypes/Animation.MultiBlend.cs b/Source/Editor/Surface/Archetypes/Animation.MultiBlend.cs index 13b573a5f..9cb7d9332 100644 --- a/Source/Editor/Surface/Archetypes/Animation.MultiBlend.cs +++ b/Source/Editor/Surface/Archetypes/Animation.MultiBlend.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Archetypes/Animation.StateMachine.cs b/Source/Editor/Surface/Archetypes/Animation.StateMachine.cs index b7c709a95..d1d8cbea1 100644 --- a/Source/Editor/Surface/Archetypes/Animation.StateMachine.cs +++ b/Source/Editor/Surface/Archetypes/Animation.StateMachine.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Archetypes/Animation.TransitionEditor.cs b/Source/Editor/Surface/Archetypes/Animation.TransitionEditor.cs index 9f7cc02d4..84c2144b2 100644 --- a/Source/Editor/Surface/Archetypes/Animation.TransitionEditor.cs +++ b/Source/Editor/Surface/Archetypes/Animation.TransitionEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.CustomEditors; diff --git a/Source/Editor/Surface/Archetypes/Animation.cs b/Source/Editor/Surface/Archetypes/Animation.cs index 7a156ca1c..dd214e8fc 100644 --- a/Source/Editor/Surface/Archetypes/Animation.cs +++ b/Source/Editor/Surface/Archetypes/Animation.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Archetypes/Bitwise.cs b/Source/Editor/Surface/Archetypes/Bitwise.cs index 72cc4987a..06f719adc 100644 --- a/Source/Editor/Surface/Archetypes/Bitwise.cs +++ b/Source/Editor/Surface/Archetypes/Bitwise.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/Archetypes/Boolean.cs b/Source/Editor/Surface/Archetypes/Boolean.cs index bce04cb1c..153b2fead 100644 --- a/Source/Editor/Surface/Archetypes/Boolean.cs +++ b/Source/Editor/Surface/Archetypes/Boolean.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/Archetypes/Collections.cs b/Source/Editor/Surface/Archetypes/Collections.cs index 2492db844..cc523a646 100644 --- a/Source/Editor/Surface/Archetypes/Collections.cs +++ b/Source/Editor/Surface/Archetypes/Collections.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/Archetypes/Comparisons.cs b/Source/Editor/Surface/Archetypes/Comparisons.cs index 6042e809c..dc90c2123 100644 --- a/Source/Editor/Surface/Archetypes/Comparisons.cs +++ b/Source/Editor/Surface/Archetypes/Comparisons.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.GUI; diff --git a/Source/Editor/Surface/Archetypes/Constants.cs b/Source/Editor/Surface/Archetypes/Constants.cs index 88399fa8d..122093cbb 100644 --- a/Source/Editor/Surface/Archetypes/Constants.cs +++ b/Source/Editor/Surface/Archetypes/Constants.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Surface/Archetypes/Custom.cs b/Source/Editor/Surface/Archetypes/Custom.cs index f2720c70c..8584af1da 100644 --- a/Source/Editor/Surface/Archetypes/Custom.cs +++ b/Source/Editor/Surface/Archetypes/Custom.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/Archetypes/Flow.cs b/Source/Editor/Surface/Archetypes/Flow.cs index 3215588d4..11eec534a 100644 --- a/Source/Editor/Surface/Archetypes/Flow.cs +++ b/Source/Editor/Surface/Archetypes/Flow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.GUI; diff --git a/Source/Editor/Surface/Archetypes/Function.cs b/Source/Editor/Surface/Archetypes/Function.cs index 5ff5d35d7..d68a1378f 100644 --- a/Source/Editor/Surface/Archetypes/Function.cs +++ b/Source/Editor/Surface/Archetypes/Function.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Archetypes/Layers.cs b/Source/Editor/Surface/Archetypes/Layers.cs index 5d9906c96..4a46276c3 100644 --- a/Source/Editor/Surface/Archetypes/Layers.cs +++ b/Source/Editor/Surface/Archetypes/Layers.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Surface/Archetypes/Material.cs b/Source/Editor/Surface/Archetypes/Material.cs index fa8ff4ef9..1a797c67d 100644 --- a/Source/Editor/Surface/Archetypes/Material.cs +++ b/Source/Editor/Surface/Archetypes/Material.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/Archetypes/Math.cs b/Source/Editor/Surface/Archetypes/Math.cs index caedbdc2a..d2aef9ae5 100644 --- a/Source/Editor/Surface/Archetypes/Math.cs +++ b/Source/Editor/Surface/Archetypes/Math.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/Archetypes/Packing.cs b/Source/Editor/Surface/Archetypes/Packing.cs index cc9d77fa5..54b578133 100644 --- a/Source/Editor/Surface/Archetypes/Packing.cs +++ b/Source/Editor/Surface/Archetypes/Packing.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Editor/Surface/Archetypes/Parameters.cs b/Source/Editor/Surface/Archetypes/Parameters.cs index 7ab520288..179ff8d84 100644 --- a/Source/Editor/Surface/Archetypes/Parameters.cs +++ b/Source/Editor/Surface/Archetypes/Parameters.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Surface/Archetypes/ParticleModules.cs b/Source/Editor/Surface/Archetypes/ParticleModules.cs index 239b5b9bc..ad5b45eab 100644 --- a/Source/Editor/Surface/Archetypes/ParticleModules.cs +++ b/Source/Editor/Surface/Archetypes/ParticleModules.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/Surface/Archetypes/Particles.cs b/Source/Editor/Surface/Archetypes/Particles.cs index 49f1fcc26..97be9a20d 100644 --- a/Source/Editor/Surface/Archetypes/Particles.cs +++ b/Source/Editor/Surface/Archetypes/Particles.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/Surface/Archetypes/Textures.cs b/Source/Editor/Surface/Archetypes/Textures.cs index 6e4e34f43..c484c12a1 100644 --- a/Source/Editor/Surface/Archetypes/Textures.cs +++ b/Source/Editor/Surface/Archetypes/Textures.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content.Settings; diff --git a/Source/Editor/Surface/Archetypes/Tools.cs b/Source/Editor/Surface/Archetypes/Tools.cs index 21fe069db..082cbc88f 100644 --- a/Source/Editor/Surface/Archetypes/Tools.cs +++ b/Source/Editor/Surface/Archetypes/Tools.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/AttributesEditor.cs b/Source/Editor/Surface/AttributesEditor.cs index 29f540e62..830c7b6be 100644 --- a/Source/Editor/Surface/AttributesEditor.cs +++ b/Source/Editor/Surface/AttributesEditor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Constants.cs b/Source/Editor/Surface/Constants.cs index cff0042bd..643a60c11 100644 --- a/Source/Editor/Surface/Constants.cs +++ b/Source/Editor/Surface/Constants.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/ContextMenu/VisjectCM.cs b/Source/Editor/Surface/ContextMenu/VisjectCM.cs index 5057e4445..0590326e0 100644 --- a/Source/Editor/Surface/ContextMenu/VisjectCM.cs +++ b/Source/Editor/Surface/ContextMenu/VisjectCM.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/ContextMenu/VisjectCMGroup.cs b/Source/Editor/Surface/ContextMenu/VisjectCMGroup.cs index ddb9dd75e..28014f897 100644 --- a/Source/Editor/Surface/ContextMenu/VisjectCMGroup.cs +++ b/Source/Editor/Surface/ContextMenu/VisjectCMGroup.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/ContextMenu/VisjectCMItem.cs b/Source/Editor/Surface/ContextMenu/VisjectCMItem.cs index fa6ecd4f5..e066de380 100644 --- a/Source/Editor/Surface/ContextMenu/VisjectCMItem.cs +++ b/Source/Editor/Surface/ContextMenu/VisjectCMItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Elements/ActorSelect.cs b/Source/Editor/Surface/Elements/ActorSelect.cs index 4a96c5075..6da454ccf 100644 --- a/Source/Editor/Surface/Elements/ActorSelect.cs +++ b/Source/Editor/Surface/Elements/ActorSelect.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/Surface/Elements/AssetSelect.cs b/Source/Editor/Surface/Elements/AssetSelect.cs index bba14a569..933451259 100644 --- a/Source/Editor/Surface/Elements/AssetSelect.cs +++ b/Source/Editor/Surface/Elements/AssetSelect.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/Surface/Elements/BoolValue.cs b/Source/Editor/Surface/Elements/BoolValue.cs index 059416821..82d763e35 100644 --- a/Source/Editor/Surface/Elements/BoolValue.cs +++ b/Source/Editor/Surface/Elements/BoolValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/Elements/Box.cs b/Source/Editor/Surface/Elements/Box.cs index 64594427b..e771fa71c 100644 --- a/Source/Editor/Surface/Elements/Box.cs +++ b/Source/Editor/Surface/Elements/Box.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Elements/BoxValue.cs b/Source/Editor/Surface/Elements/BoxValue.cs index 31e60904a..ce697e321 100644 --- a/Source/Editor/Surface/Elements/BoxValue.cs +++ b/Source/Editor/Surface/Elements/BoxValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using RealValueBox = FlaxEditor.GUI.Input.DoubleValueBox; diff --git a/Source/Editor/Surface/Elements/ColorValue.cs b/Source/Editor/Surface/Elements/ColorValue.cs index bb2106292..96069cfeb 100644 --- a/Source/Editor/Surface/Elements/ColorValue.cs +++ b/Source/Editor/Surface/Elements/ColorValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Surface/Elements/ComboBoxElement.cs b/Source/Editor/Surface/Elements/ComboBoxElement.cs index 39928b1a1..739b924a3 100644 --- a/Source/Editor/Surface/Elements/ComboBoxElement.cs +++ b/Source/Editor/Surface/Elements/ComboBoxElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEngine; diff --git a/Source/Editor/Surface/Elements/EnumValue.cs b/Source/Editor/Surface/Elements/EnumValue.cs index f0bd11318..09591e55a 100644 --- a/Source/Editor/Surface/Elements/EnumValue.cs +++ b/Source/Editor/Surface/Elements/EnumValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/Surface/Elements/FloatValue.cs b/Source/Editor/Surface/Elements/FloatValue.cs index 0fa6f892e..7674c68b9 100644 --- a/Source/Editor/Surface/Elements/FloatValue.cs +++ b/Source/Editor/Surface/Elements/FloatValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Surface/Elements/InputBox.cs b/Source/Editor/Surface/Elements/InputBox.cs index e97beee2c..ba56cb471 100644 --- a/Source/Editor/Surface/Elements/InputBox.cs +++ b/Source/Editor/Surface/Elements/InputBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Surface/Elements/IntegerValue.cs b/Source/Editor/Surface/Elements/IntegerValue.cs index 59a298e8a..c9faeefc3 100644 --- a/Source/Editor/Surface/Elements/IntegerValue.cs +++ b/Source/Editor/Surface/Elements/IntegerValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Surface/Elements/OutputBox.cs b/Source/Editor/Surface/Elements/OutputBox.cs index e02b0b89a..67b6e8409 100644 --- a/Source/Editor/Surface/Elements/OutputBox.cs +++ b/Source/Editor/Surface/Elements/OutputBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/Elements/SkeletonBoneIndexSelectElement.cs b/Source/Editor/Surface/Elements/SkeletonBoneIndexSelectElement.cs index 367079a62..c3cf36577 100644 --- a/Source/Editor/Surface/Elements/SkeletonBoneIndexSelectElement.cs +++ b/Source/Editor/Surface/Elements/SkeletonBoneIndexSelectElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Text; diff --git a/Source/Editor/Surface/Elements/SkeletonNodeNameSelectElement.cs b/Source/Editor/Surface/Elements/SkeletonNodeNameSelectElement.cs index 7cdfc5579..104a9f51f 100644 --- a/Source/Editor/Surface/Elements/SkeletonNodeNameSelectElement.cs +++ b/Source/Editor/Surface/Elements/SkeletonNodeNameSelectElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Elements/TextBoxView.cs b/Source/Editor/Surface/Elements/TextBoxView.cs index f0de0a2e5..3b3e15875 100644 --- a/Source/Editor/Surface/Elements/TextBoxView.cs +++ b/Source/Editor/Surface/Elements/TextBoxView.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/Elements/TextView.cs b/Source/Editor/Surface/Elements/TextView.cs index 88a7af2f5..284497396 100644 --- a/Source/Editor/Surface/Elements/TextView.cs +++ b/Source/Editor/Surface/Elements/TextView.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/Elements/UnsignedIntegerValue.cs b/Source/Editor/Surface/Elements/UnsignedIntegerValue.cs index e6b061e1b..850efa164 100644 --- a/Source/Editor/Surface/Elements/UnsignedIntegerValue.cs +++ b/Source/Editor/Surface/Elements/UnsignedIntegerValue.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Surface/GUI/VisjectContextNavigationButton.cs b/Source/Editor/Surface/GUI/VisjectContextNavigationButton.cs index 112020f07..289cdfaa5 100644 --- a/Source/Editor/Surface/GUI/VisjectContextNavigationButton.cs +++ b/Source/Editor/Surface/GUI/VisjectContextNavigationButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI; using FlaxEngine; diff --git a/Source/Editor/Surface/GroupArchetype.cs b/Source/Editor/Surface/GroupArchetype.cs index c738ea7ef..eada2d397 100644 --- a/Source/Editor/Surface/GroupArchetype.cs +++ b/Source/Editor/Surface/GroupArchetype.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine; diff --git a/Source/Editor/Surface/IFunctionDependantNode.cs b/Source/Editor/Surface/IFunctionDependantNode.cs index 8c1781d8d..1b7ff1a9c 100644 --- a/Source/Editor/Surface/IFunctionDependantNode.cs +++ b/Source/Editor/Surface/IFunctionDependantNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/IParametersDependantNode.cs b/Source/Editor/Surface/IParametersDependantNode.cs index 2ad7ba393..08917c15b 100644 --- a/Source/Editor/Surface/IParametersDependantNode.cs +++ b/Source/Editor/Surface/IParametersDependantNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/ISurfaceContext.cs b/Source/Editor/Surface/ISurfaceContext.cs index 04bb8f2d3..cade0b6f0 100644 --- a/Source/Editor/Surface/ISurfaceContext.cs +++ b/Source/Editor/Surface/ISurfaceContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/ISurfaceNodeElement.cs b/Source/Editor/Surface/ISurfaceNodeElement.cs index 6c5430f29..092140dee 100644 --- a/Source/Editor/Surface/ISurfaceNodeElement.cs +++ b/Source/Editor/Surface/ISurfaceNodeElement.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/IVisjectSurfaceOwner.cs b/Source/Editor/Surface/IVisjectSurfaceOwner.cs index 1c5dc4ff7..b6d578e8e 100644 --- a/Source/Editor/Surface/IVisjectSurfaceOwner.cs +++ b/Source/Editor/Surface/IVisjectSurfaceOwner.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/MaterialFunctionSurface.cs b/Source/Editor/Surface/MaterialFunctionSurface.cs index 11fb3dcbb..1f820d3a7 100644 --- a/Source/Editor/Surface/MaterialFunctionSurface.cs +++ b/Source/Editor/Surface/MaterialFunctionSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Surface.Archetypes; diff --git a/Source/Editor/Surface/MaterialSurface.cs b/Source/Editor/Surface/MaterialSurface.cs index e49780c73..2fa44f6c6 100644 --- a/Source/Editor/Surface/MaterialSurface.cs +++ b/Source/Editor/Surface/MaterialSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/NodeArchetype.cs b/Source/Editor/Surface/NodeArchetype.cs index 5f1848c90..6dc923ce2 100644 --- a/Source/Editor/Surface/NodeArchetype.cs +++ b/Source/Editor/Surface/NodeArchetype.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/NodeElementArchetype.cs b/Source/Editor/Surface/NodeElementArchetype.cs index 7e47340f2..be8b67378 100644 --- a/Source/Editor/Surface/NodeElementArchetype.cs +++ b/Source/Editor/Surface/NodeElementArchetype.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/NodeElementType.cs b/Source/Editor/Surface/NodeElementType.cs index e49cc3703..cf333fc00 100644 --- a/Source/Editor/Surface/NodeElementType.cs +++ b/Source/Editor/Surface/NodeElementType.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/NodeFactory.cs b/Source/Editor/Surface/NodeFactory.cs index 32ed13e94..27c850258 100644 --- a/Source/Editor/Surface/NodeFactory.cs +++ b/Source/Editor/Surface/NodeFactory.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/NodeFlags.cs b/Source/Editor/Surface/NodeFlags.cs index 5a444105f..f90154806 100644 --- a/Source/Editor/Surface/NodeFlags.cs +++ b/Source/Editor/Surface/NodeFlags.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Surface/ParticleEmitterFunctionSurface.cs b/Source/Editor/Surface/ParticleEmitterFunctionSurface.cs index 5b86c8e3d..a1880c3a8 100644 --- a/Source/Editor/Surface/ParticleEmitterFunctionSurface.cs +++ b/Source/Editor/Surface/ParticleEmitterFunctionSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Surface.Archetypes; diff --git a/Source/Editor/Surface/ParticleEmitterSurface.cs b/Source/Editor/Surface/ParticleEmitterSurface.cs index 55bc013b1..99ed61f8e 100644 --- a/Source/Editor/Surface/ParticleEmitterSurface.cs +++ b/Source/Editor/Surface/ParticleEmitterSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/SurfaceComment.cs b/Source/Editor/Surface/SurfaceComment.cs index d7290852b..4256fa17f 100644 --- a/Source/Editor/Surface/SurfaceComment.cs +++ b/Source/Editor/Surface/SurfaceComment.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/Surface/SurfaceControl.cs b/Source/Editor/Surface/SurfaceControl.cs index 79a34fc9a..8c207676c 100644 --- a/Source/Editor/Surface/SurfaceControl.cs +++ b/Source/Editor/Surface/SurfaceControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/SurfaceMeta.cs b/Source/Editor/Surface/SurfaceMeta.cs index 05003223b..9cc7d51b4 100644 --- a/Source/Editor/Surface/SurfaceMeta.cs +++ b/Source/Editor/Surface/SurfaceMeta.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/SurfaceNode.cs b/Source/Editor/Surface/SurfaceNode.cs index 9f23e30cf..c24c47fbd 100644 --- a/Source/Editor/Surface/SurfaceNode.cs +++ b/Source/Editor/Surface/SurfaceNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/SurfaceNodeElementControl.cs b/Source/Editor/Surface/SurfaceNodeElementControl.cs index d367420df..89688f9b9 100644 --- a/Source/Editor/Surface/SurfaceNodeElementControl.cs +++ b/Source/Editor/Surface/SurfaceNodeElementControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/SurfaceParameter.cs b/Source/Editor/Surface/SurfaceParameter.cs index d67a16fc8..cfec4104a 100644 --- a/Source/Editor/Surface/SurfaceParameter.cs +++ b/Source/Editor/Surface/SurfaceParameter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/SurfaceRootControl.cs b/Source/Editor/Surface/SurfaceRootControl.cs index eac1904c9..41a2ce47b 100644 --- a/Source/Editor/Surface/SurfaceRootControl.cs +++ b/Source/Editor/Surface/SurfaceRootControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Surface/SurfaceStyle.cs b/Source/Editor/Surface/SurfaceStyle.cs index a39980b66..3fcdb8266 100644 --- a/Source/Editor/Surface/SurfaceStyle.cs +++ b/Source/Editor/Surface/SurfaceStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Surface/SurfaceUtils.cs b/Source/Editor/Surface/SurfaceUtils.cs index c69dfdf52..aa46e8ccb 100644 --- a/Source/Editor/Surface/SurfaceUtils.cs +++ b/Source/Editor/Surface/SurfaceUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/TransformCoordinateSystem.cs b/Source/Editor/Surface/TransformCoordinateSystem.cs index a5f6598cc..da70bfa7d 100644 --- a/Source/Editor/Surface/TransformCoordinateSystem.cs +++ b/Source/Editor/Surface/TransformCoordinateSystem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/Undo/AddRemoveNodeAction.cs b/Source/Editor/Surface/Undo/AddRemoveNodeAction.cs index ec9d83db8..b529ea3c0 100644 --- a/Source/Editor/Surface/Undo/AddRemoveNodeAction.cs +++ b/Source/Editor/Surface/Undo/AddRemoveNodeAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Surface/Undo/BoxHandle.cs b/Source/Editor/Surface/Undo/BoxHandle.cs index b31edcd5b..6814eccb8 100644 --- a/Source/Editor/Surface/Undo/BoxHandle.cs +++ b/Source/Editor/Surface/Undo/BoxHandle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Surface.Elements; diff --git a/Source/Editor/Surface/Undo/ConnectBoxesAction.cs b/Source/Editor/Surface/Undo/ConnectBoxesAction.cs index 23d2dcd9e..7fa2476cb 100644 --- a/Source/Editor/Surface/Undo/ConnectBoxesAction.cs +++ b/Source/Editor/Surface/Undo/ConnectBoxesAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.Surface.Elements; diff --git a/Source/Editor/Surface/Undo/ContextHandle.cs b/Source/Editor/Surface/Undo/ContextHandle.cs index af9cb2af5..5206c7f16 100644 --- a/Source/Editor/Surface/Undo/ContextHandle.cs +++ b/Source/Editor/Surface/Undo/ContextHandle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Surface/Undo/EditNodeConnections.cs b/Source/Editor/Surface/Undo/EditNodeConnections.cs index c2cb70124..cbb6948fe 100644 --- a/Source/Editor/Surface/Undo/EditNodeConnections.cs +++ b/Source/Editor/Surface/Undo/EditNodeConnections.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/Undo/EditNodeValuesAction.cs b/Source/Editor/Surface/Undo/EditNodeValuesAction.cs index bc6661ed2..d6a485a83 100644 --- a/Source/Editor/Surface/Undo/EditNodeValuesAction.cs +++ b/Source/Editor/Surface/Undo/EditNodeValuesAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Editor/Surface/Undo/MoveNodesAction.cs b/Source/Editor/Surface/Undo/MoveNodesAction.cs index f9ad7488e..731441143 100644 --- a/Source/Editor/Surface/Undo/MoveNodesAction.cs +++ b/Source/Editor/Surface/Undo/MoveNodesAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Surface/VisjectSurface.Connecting.cs b/Source/Editor/Surface/VisjectSurface.Connecting.cs index d78ecd261..2fbff7cb8 100644 --- a/Source/Editor/Surface/VisjectSurface.Connecting.cs +++ b/Source/Editor/Surface/VisjectSurface.Connecting.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Scripting; using FlaxEngine; diff --git a/Source/Editor/Surface/VisjectSurface.Context.cs b/Source/Editor/Surface/VisjectSurface.Context.cs index 76c77dd9b..e3547fa52 100644 --- a/Source/Editor/Surface/VisjectSurface.Context.cs +++ b/Source/Editor/Surface/VisjectSurface.Context.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurface.ContextMenu.cs b/Source/Editor/Surface/VisjectSurface.ContextMenu.cs index e883c4eb4..659131e8b 100644 --- a/Source/Editor/Surface/VisjectSurface.ContextMenu.cs +++ b/Source/Editor/Surface/VisjectSurface.ContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/Surface/VisjectSurface.CopyPaste.cs b/Source/Editor/Surface/VisjectSurface.CopyPaste.cs index 551356c2c..ba7684127 100644 --- a/Source/Editor/Surface/VisjectSurface.CopyPaste.cs +++ b/Source/Editor/Surface/VisjectSurface.CopyPaste.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurface.DragDrop.cs b/Source/Editor/Surface/VisjectSurface.DragDrop.cs index e6245972c..1728c282f 100644 --- a/Source/Editor/Surface/VisjectSurface.DragDrop.cs +++ b/Source/Editor/Surface/VisjectSurface.DragDrop.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Editor/Surface/VisjectSurface.Draw.cs b/Source/Editor/Surface/VisjectSurface.Draw.cs index 3616ee1d9..8db64b476 100644 --- a/Source/Editor/Surface/VisjectSurface.Draw.cs +++ b/Source/Editor/Surface/VisjectSurface.Draw.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Surface/VisjectSurface.Input.cs b/Source/Editor/Surface/VisjectSurface.Input.cs index 02fe835f2..7264321c3 100644 --- a/Source/Editor/Surface/VisjectSurface.Input.cs +++ b/Source/Editor/Surface/VisjectSurface.Input.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/Surface/VisjectSurface.Paramaters.cs b/Source/Editor/Surface/VisjectSurface.Paramaters.cs index 21fef0aec..d231bae82 100644 --- a/Source/Editor/Surface/VisjectSurface.Paramaters.cs +++ b/Source/Editor/Surface/VisjectSurface.Paramaters.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurface.Serialization.cs b/Source/Editor/Surface/VisjectSurface.Serialization.cs index bb7fbed23..0edf69431 100644 --- a/Source/Editor/Surface/VisjectSurface.Serialization.cs +++ b/Source/Editor/Surface/VisjectSurface.Serialization.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Runtime.InteropServices; using FlaxEngine; diff --git a/Source/Editor/Surface/VisjectSurface.cs b/Source/Editor/Surface/VisjectSurface.cs index 88f81ded6..22aba4855 100644 --- a/Source/Editor/Surface/VisjectSurface.cs +++ b/Source/Editor/Surface/VisjectSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurfaceContext.Serialization.cs b/Source/Editor/Surface/VisjectSurfaceContext.Serialization.cs index 05c77ab3a..b20d849a2 100644 --- a/Source/Editor/Surface/VisjectSurfaceContext.Serialization.cs +++ b/Source/Editor/Surface/VisjectSurfaceContext.Serialization.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurfaceContext.cs b/Source/Editor/Surface/VisjectSurfaceContext.cs index 523fb1f1f..8393d6162 100644 --- a/Source/Editor/Surface/VisjectSurfaceContext.cs +++ b/Source/Editor/Surface/VisjectSurfaceContext.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisjectSurfaceWindow.cs b/Source/Editor/Surface/VisjectSurfaceWindow.cs index 43a664866..93b7a685d 100644 --- a/Source/Editor/Surface/VisjectSurfaceWindow.cs +++ b/Source/Editor/Surface/VisjectSurfaceWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Surface/VisualScriptSurface.cs b/Source/Editor/Surface/VisualScriptSurface.cs index 1724be2ae..b40fb1603 100644 --- a/Source/Editor/Surface/VisualScriptSurface.cs +++ b/Source/Editor/Surface/VisualScriptSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. //#define DEBUG_INVOKE_METHODS_SEARCHING //#define DEBUG_FIELDS_SEARCHING diff --git a/Source/Editor/Tools/Foliage/Brush.cs b/Source/Editor/Tools/Foliage/Brush.cs index be2037c05..06b998dc4 100644 --- a/Source/Editor/Tools/Foliage/Brush.cs +++ b/Source/Editor/Tools/Foliage/Brush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Tools/Foliage/EditFoliageGizmo.cs b/Source/Editor/Tools/Foliage/EditFoliageGizmo.cs index 1951f6520..0c0172b36 100644 --- a/Source/Editor/Tools/Foliage/EditFoliageGizmo.cs +++ b/Source/Editor/Tools/Foliage/EditFoliageGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Gizmo; diff --git a/Source/Editor/Tools/Foliage/EditFoliageGizmoMode.cs b/Source/Editor/Tools/Foliage/EditFoliageGizmoMode.cs index 83e6eeca5..56356c0b4 100644 --- a/Source/Editor/Tools/Foliage/EditFoliageGizmoMode.cs +++ b/Source/Editor/Tools/Foliage/EditFoliageGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.SceneGraph.Actors; diff --git a/Source/Editor/Tools/Foliage/EditFoliageSelectionOutline.cs b/Source/Editor/Tools/Foliage/EditFoliageSelectionOutline.cs index 42898cb3e..5e75b9eee 100644 --- a/Source/Editor/Tools/Foliage/EditFoliageSelectionOutline.cs +++ b/Source/Editor/Tools/Foliage/EditFoliageSelectionOutline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Gizmo; using FlaxEngine; diff --git a/Source/Editor/Tools/Foliage/EditTab.cs b/Source/Editor/Tools/Foliage/EditTab.cs index b51be7fee..c44c02258 100644 --- a/Source/Editor/Tools/Foliage/EditTab.cs +++ b/Source/Editor/Tools/Foliage/EditTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.CustomEditors; diff --git a/Source/Editor/Tools/Foliage/FoliageTab.cs b/Source/Editor/Tools/Foliage/FoliageTab.cs index 979017e69..814376c75 100644 --- a/Source/Editor/Tools/Foliage/FoliageTab.cs +++ b/Source/Editor/Tools/Foliage/FoliageTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Tools/Foliage/FoliageTools.cpp b/Source/Editor/Tools/Foliage/FoliageTools.cpp index cc740fdf4..b24bcdf00 100644 --- a/Source/Editor/Tools/Foliage/FoliageTools.cpp +++ b/Source/Editor/Tools/Foliage/FoliageTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FoliageTools.h" #include "Engine/Core/Math/BoundingSphere.h" diff --git a/Source/Editor/Tools/Foliage/FoliageTools.h b/Source/Editor/Tools/Foliage/FoliageTools.h index 4d5402247..507c81c6a 100644 --- a/Source/Editor/Tools/Foliage/FoliageTools.h +++ b/Source/Editor/Tools/Foliage/FoliageTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Tools/Foliage/FoliageTypesTab.cs b/Source/Editor/Tools/Foliage/FoliageTypesTab.cs index 8e093cddc..3b41af415 100644 --- a/Source/Editor/Tools/Foliage/FoliageTypesTab.cs +++ b/Source/Editor/Tools/Foliage/FoliageTypesTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Editor/Tools/Foliage/PaintFoliageGizmo.cs b/Source/Editor/Tools/Foliage/PaintFoliageGizmo.cs index 456f1f73e..abaf60826 100644 --- a/Source/Editor/Tools/Foliage/PaintFoliageGizmo.cs +++ b/Source/Editor/Tools/Foliage/PaintFoliageGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Tools/Foliage/PaintFoliageGizmoMode.cs b/Source/Editor/Tools/Foliage/PaintFoliageGizmoMode.cs index 6752f693d..16fe5c9d3 100644 --- a/Source/Editor/Tools/Foliage/PaintFoliageGizmoMode.cs +++ b/Source/Editor/Tools/Foliage/PaintFoliageGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.SceneGraph.Actors; using FlaxEditor.Viewport; diff --git a/Source/Editor/Tools/Foliage/PaintTab.cs b/Source/Editor/Tools/Foliage/PaintTab.cs index a97c9ffcf..597b09b09 100644 --- a/Source/Editor/Tools/Foliage/PaintTab.cs +++ b/Source/Editor/Tools/Foliage/PaintTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.CustomEditors.Editors; diff --git a/Source/Editor/Tools/Foliage/Undo/DeleteInstanceAction.cs b/Source/Editor/Tools/Foliage/Undo/DeleteInstanceAction.cs index d6854e40d..114ee6a3b 100644 --- a/Source/Editor/Tools/Foliage/Undo/DeleteInstanceAction.cs +++ b/Source/Editor/Tools/Foliage/Undo/DeleteInstanceAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Foliage/Undo/EditFoliageAction.cs b/Source/Editor/Tools/Foliage/Undo/EditFoliageAction.cs index 8f446ee2a..020560ec8 100644 --- a/Source/Editor/Tools/Foliage/Undo/EditFoliageAction.cs +++ b/Source/Editor/Tools/Foliage/Undo/EditFoliageAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Foliage/Undo/EditInstanceAction.cs b/Source/Editor/Tools/Foliage/Undo/EditInstanceAction.cs index 07479d632..352409d5d 100644 --- a/Source/Editor/Tools/Foliage/Undo/EditInstanceAction.cs +++ b/Source/Editor/Tools/Foliage/Undo/EditInstanceAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Foliage/Undo/EditSelectedInstanceIndexAction.cs b/Source/Editor/Tools/Foliage/Undo/EditSelectedInstanceIndexAction.cs index 72b4a3aec..b4f444d04 100644 --- a/Source/Editor/Tools/Foliage/Undo/EditSelectedInstanceIndexAction.cs +++ b/Source/Editor/Tools/Foliage/Undo/EditSelectedInstanceIndexAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Brushes/Brush.cs b/Source/Editor/Tools/Terrain/Brushes/Brush.cs index a177e9809..3096ee481 100644 --- a/Source/Editor/Tools/Terrain/Brushes/Brush.cs +++ b/Source/Editor/Tools/Terrain/Brushes/Brush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Brushes/CircleBrush.cs b/Source/Editor/Tools/Terrain/Brushes/CircleBrush.cs index 56327c50a..836b85305 100644 --- a/Source/Editor/Tools/Terrain/Brushes/CircleBrush.cs +++ b/Source/Editor/Tools/Terrain/Brushes/CircleBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/CarveTab.cs b/Source/Editor/Tools/Terrain/CarveTab.cs index 92c7e4b6e..6bee0bd92 100644 --- a/Source/Editor/Tools/Terrain/CarveTab.cs +++ b/Source/Editor/Tools/Terrain/CarveTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.Tabs; diff --git a/Source/Editor/Tools/Terrain/CreateTerrainDialog.cs b/Source/Editor/Tools/Terrain/CreateTerrainDialog.cs index 3e4ec74c0..537121001 100644 --- a/Source/Editor/Tools/Terrain/CreateTerrainDialog.cs +++ b/Source/Editor/Tools/Terrain/CreateTerrainDialog.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Editor/Tools/Terrain/EditTab.cs b/Source/Editor/Tools/Terrain/EditTab.cs index 46f6f717d..008be64f4 100644 --- a/Source/Editor/Tools/Terrain/EditTab.cs +++ b/Source/Editor/Tools/Terrain/EditTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/Tools/Terrain/EditTerrainGizmo.cs b/Source/Editor/Tools/Terrain/EditTerrainGizmo.cs index def77df19..15edc12c9 100644 --- a/Source/Editor/Tools/Terrain/EditTerrainGizmo.cs +++ b/Source/Editor/Tools/Terrain/EditTerrainGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Gizmo; diff --git a/Source/Editor/Tools/Terrain/EditTerrainGizmoMode.cs b/Source/Editor/Tools/Terrain/EditTerrainGizmoMode.cs index c60c4750e..538de582c 100644 --- a/Source/Editor/Tools/Terrain/EditTerrainGizmoMode.cs +++ b/Source/Editor/Tools/Terrain/EditTerrainGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Viewport; diff --git a/Source/Editor/Tools/Terrain/Paint/Mode.cs b/Source/Editor/Tools/Terrain/Paint/Mode.cs index 723ba8004..3647691b3 100644 --- a/Source/Editor/Tools/Terrain/Paint/Mode.cs +++ b/Source/Editor/Tools/Terrain/Paint/Mode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Tools.Terrain.Brushes; diff --git a/Source/Editor/Tools/Terrain/Paint/SingleLayerMode.cs b/Source/Editor/Tools/Terrain/Paint/SingleLayerMode.cs index d756f21b4..ec41b5286 100644 --- a/Source/Editor/Tools/Terrain/Paint/SingleLayerMode.cs +++ b/Source/Editor/Tools/Terrain/Paint/SingleLayerMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/PaintTab.cs b/Source/Editor/Tools/Terrain/PaintTab.cs index 470c74f03..949c77b2d 100644 --- a/Source/Editor/Tools/Terrain/PaintTab.cs +++ b/Source/Editor/Tools/Terrain/PaintTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.GUI.Tabs; diff --git a/Source/Editor/Tools/Terrain/PaintTerrainGizmo.cs b/Source/Editor/Tools/Terrain/PaintTerrainGizmo.cs index 9a022c50f..c16bdd7e6 100644 --- a/Source/Editor/Tools/Terrain/PaintTerrainGizmo.cs +++ b/Source/Editor/Tools/Terrain/PaintTerrainGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Gizmo; diff --git a/Source/Editor/Tools/Terrain/PaintTerrainGizmoMode.cs b/Source/Editor/Tools/Terrain/PaintTerrainGizmoMode.cs index f82153d53..40145c0c4 100644 --- a/Source/Editor/Tools/Terrain/PaintTerrainGizmoMode.cs +++ b/Source/Editor/Tools/Terrain/PaintTerrainGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Tools/Terrain/Sculpt/FlattenMode.cs b/Source/Editor/Tools/Terrain/Sculpt/FlattenMode.cs index 4fa07f3c1..610a336b7 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/FlattenMode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/FlattenMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Sculpt/HolesMode.cs b/Source/Editor/Tools/Terrain/Sculpt/HolesMode.cs index caf3747ec..d4c10f00e 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/HolesMode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/HolesMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Sculpt/Mode.cs b/Source/Editor/Tools/Terrain/Sculpt/Mode.cs index a8b8cf53a..21b50890e 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/Mode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/Mode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Tools.Terrain.Brushes; diff --git a/Source/Editor/Tools/Terrain/Sculpt/NoiseMode.cs b/Source/Editor/Tools/Terrain/Sculpt/NoiseMode.cs index b6c7c160d..fb52adb0e 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/NoiseMode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/NoiseMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.Utilities; diff --git a/Source/Editor/Tools/Terrain/Sculpt/SculptMode.cs b/Source/Editor/Tools/Terrain/Sculpt/SculptMode.cs index 19485c3e5..c3409f30c 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/SculptMode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/SculptMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Sculpt/SmoothMode.cs b/Source/Editor/Tools/Terrain/Sculpt/SmoothMode.cs index ce334970f..d23eae8dd 100644 --- a/Source/Editor/Tools/Terrain/Sculpt/SmoothMode.cs +++ b/Source/Editor/Tools/Terrain/Sculpt/SmoothMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/SculptTab.cs b/Source/Editor/Tools/Terrain/SculptTab.cs index 2eab20b9e..c4e423330 100644 --- a/Source/Editor/Tools/Terrain/SculptTab.cs +++ b/Source/Editor/Tools/Terrain/SculptTab.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.CustomEditors; using FlaxEditor.GUI.Tabs; diff --git a/Source/Editor/Tools/Terrain/SculptTerrainGizmo.cs b/Source/Editor/Tools/Terrain/SculptTerrainGizmo.cs index acfd70526..96270a740 100644 --- a/Source/Editor/Tools/Terrain/SculptTerrainGizmo.cs +++ b/Source/Editor/Tools/Terrain/SculptTerrainGizmo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Gizmo; diff --git a/Source/Editor/Tools/Terrain/SculptTerrainGizmoMode.cs b/Source/Editor/Tools/Terrain/SculptTerrainGizmoMode.cs index 489a9b744..be89f605d 100644 --- a/Source/Editor/Tools/Terrain/SculptTerrainGizmoMode.cs +++ b/Source/Editor/Tools/Terrain/SculptTerrainGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Tools/Terrain/TerrainTools.cpp b/Source/Editor/Tools/Terrain/TerrainTools.cpp index 81e137166..545e60d54 100644 --- a/Source/Editor/Tools/Terrain/TerrainTools.cpp +++ b/Source/Editor/Tools/Terrain/TerrainTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TerrainTools.h" #include "Engine/Core/Log.h" diff --git a/Source/Editor/Tools/Terrain/TerrainTools.h b/Source/Editor/Tools/Terrain/TerrainTools.h index cb4db5975..6f4682bf6 100644 --- a/Source/Editor/Tools/Terrain/TerrainTools.h +++ b/Source/Editor/Tools/Terrain/TerrainTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Tools/Terrain/Undo/EditTerrainHeightMapAction.cs b/Source/Editor/Tools/Terrain/Undo/EditTerrainHeightMapAction.cs index 252263902..2e445aead 100644 --- a/Source/Editor/Tools/Terrain/Undo/EditTerrainHeightMapAction.cs +++ b/Source/Editor/Tools/Terrain/Undo/EditTerrainHeightMapAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Undo/EditTerrainHolesMapAction.cs b/Source/Editor/Tools/Terrain/Undo/EditTerrainHolesMapAction.cs index d8ebe425d..8f694168a 100644 --- a/Source/Editor/Tools/Terrain/Undo/EditTerrainHolesMapAction.cs +++ b/Source/Editor/Tools/Terrain/Undo/EditTerrainHolesMapAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/Terrain/Undo/EditTerrainMapAction.cs b/Source/Editor/Tools/Terrain/Undo/EditTerrainMapAction.cs index baede8a73..ad9f7eb2f 100644 --- a/Source/Editor/Tools/Terrain/Undo/EditTerrainMapAction.cs +++ b/Source/Editor/Tools/Terrain/Undo/EditTerrainMapAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Tools/Terrain/Undo/EditTerrainSplatMapAction.cs b/Source/Editor/Tools/Terrain/Undo/EditTerrainSplatMapAction.cs index dfe6e553d..5aa386fb2 100644 --- a/Source/Editor/Tools/Terrain/Undo/EditTerrainSplatMapAction.cs +++ b/Source/Editor/Tools/Terrain/Undo/EditTerrainSplatMapAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Tools/VertexPainting.cs b/Source/Editor/Tools/VertexPainting.cs index bf4260943..0863569c2 100644 --- a/Source/Editor/Tools/VertexPainting.cs +++ b/Source/Editor/Tools/VertexPainting.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Threading; diff --git a/Source/Editor/Undo/Actions/AddRemoveScriptAction.cs b/Source/Editor/Undo/Actions/AddRemoveScriptAction.cs index 319b92b36..567bd39e9 100644 --- a/Source/Editor/Undo/Actions/AddRemoveScriptAction.cs +++ b/Source/Editor/Undo/Actions/AddRemoveScriptAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Undo/Actions/BreakPrefabLinkAction.cs b/Source/Editor/Undo/Actions/BreakPrefabLinkAction.cs index d2db66792..01a728e86 100644 --- a/Source/Editor/Undo/Actions/BreakPrefabLinkAction.cs +++ b/Source/Editor/Undo/Actions/BreakPrefabLinkAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/Actions/ChangeScriptAction.cs b/Source/Editor/Undo/Actions/ChangeScriptAction.cs index 642a65194..dcdf4f0b4 100644 --- a/Source/Editor/Undo/Actions/ChangeScriptAction.cs +++ b/Source/Editor/Undo/Actions/ChangeScriptAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Modules; diff --git a/Source/Editor/Undo/Actions/DeleteActorsAction.cs b/Source/Editor/Undo/Actions/DeleteActorsAction.cs index d7132e2b0..740f41306 100644 --- a/Source/Editor/Undo/Actions/DeleteActorsAction.cs +++ b/Source/Editor/Undo/Actions/DeleteActorsAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/Actions/EditSplineAction.cs b/Source/Editor/Undo/Actions/EditSplineAction.cs index 243ba3166..94e1b91ca 100644 --- a/Source/Editor/Undo/Actions/EditSplineAction.cs +++ b/Source/Editor/Undo/Actions/EditSplineAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Modules; diff --git a/Source/Editor/Undo/Actions/PasteActorsAction.cs b/Source/Editor/Undo/Actions/PasteActorsAction.cs index b5cf0ae89..2a70c06cf 100644 --- a/Source/Editor/Undo/Actions/PasteActorsAction.cs +++ b/Source/Editor/Undo/Actions/PasteActorsAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/Actions/SelectionChangeAction.cs b/Source/Editor/Undo/Actions/SelectionChangeAction.cs index 8e39b491f..547faea29 100644 --- a/Source/Editor/Undo/Actions/SelectionChangeAction.cs +++ b/Source/Editor/Undo/Actions/SelectionChangeAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.SceneGraph; diff --git a/Source/Editor/Undo/Actions/TransformObjectsAction.cs b/Source/Editor/Undo/Actions/TransformObjectsAction.cs index b6eb7ddc5..836daad7b 100644 --- a/Source/Editor/Undo/Actions/TransformObjectsAction.cs +++ b/Source/Editor/Undo/Actions/TransformObjectsAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/EditorUndo.cs b/Source/Editor/Undo/EditorUndo.cs index 321f587a4..ae9f226a4 100644 --- a/Source/Editor/Undo/EditorUndo.cs +++ b/Source/Editor/Undo/EditorUndo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.History; diff --git a/Source/Editor/Undo/ISceneEditAction.cs b/Source/Editor/Undo/ISceneEditAction.cs index 9bee4ea44..510dd0b80 100644 --- a/Source/Editor/Undo/ISceneEditAction.cs +++ b/Source/Editor/Undo/ISceneEditAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Modules; diff --git a/Source/Editor/Undo/IUndoAction.cs b/Source/Editor/Undo/IUndoAction.cs index 5d972d86d..8f25b5b81 100644 --- a/Source/Editor/Undo/IUndoAction.cs +++ b/Source/Editor/Undo/IUndoAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.History; diff --git a/Source/Editor/Undo/MultiUndoAction.cs b/Source/Editor/Undo/MultiUndoAction.cs index 6395709c4..63cef1661 100644 --- a/Source/Editor/Undo/MultiUndoAction.cs +++ b/Source/Editor/Undo/MultiUndoAction.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/Undo.cs b/Source/Editor/Undo/Undo.cs index 51864d5c2..46b772743 100644 --- a/Source/Editor/Undo/Undo.cs +++ b/Source/Editor/Undo/Undo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Undo/UndoActionBase.cs b/Source/Editor/Undo/UndoActionBase.cs index 4b3d3b88e..25b9085a7 100644 --- a/Source/Editor/Undo/UndoActionBase.cs +++ b/Source/Editor/Undo/UndoActionBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.SceneGraph; diff --git a/Source/Editor/Undo/UndoBlock.cs b/Source/Editor/Undo/UndoBlock.cs index 59dbe3ada..59380e79c 100644 --- a/Source/Editor/Undo/UndoBlock.cs +++ b/Source/Editor/Undo/UndoBlock.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Undo/UndoMultiBlock.cs b/Source/Editor/Undo/UndoMultiBlock.cs index d37574f5f..16e45a14a 100644 --- a/Source/Editor/Undo/UndoMultiBlock.cs +++ b/Source/Editor/Undo/UndoMultiBlock.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/Constants.cs b/Source/Editor/Utilities/Constants.cs index dbee90cb8..176fed5f7 100644 --- a/Source/Editor/Utilities/Constants.cs +++ b/Source/Editor/Utilities/Constants.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Utilities { diff --git a/Source/Editor/Utilities/DuplicateScenes.cs b/Source/Editor/Utilities/DuplicateScenes.cs index e9ff1b6f9..08aa20ada 100644 --- a/Source/Editor/Utilities/DuplicateScenes.cs +++ b/Source/Editor/Utilities/DuplicateScenes.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/EditorScene.cpp b/Source/Editor/Utilities/EditorScene.cpp index f06b61f92..764b79184 100644 --- a/Source/Editor/Utilities/EditorScene.cpp +++ b/Source/Editor/Utilities/EditorScene.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EditorScene.h" diff --git a/Source/Editor/Utilities/EditorScene.h b/Source/Editor/Utilities/EditorScene.h index 881deb071..df0b03adc 100644 --- a/Source/Editor/Utilities/EditorScene.h +++ b/Source/Editor/Utilities/EditorScene.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Utilities/EditorUtilities.cpp b/Source/Editor/Utilities/EditorUtilities.cpp index be057d287..7e7aad25c 100644 --- a/Source/Editor/Utilities/EditorUtilities.cpp +++ b/Source/Editor/Utilities/EditorUtilities.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EditorUtilities.h" #include "Engine/Engine/Globals.h" diff --git a/Source/Editor/Utilities/EditorUtilities.h b/Source/Editor/Utilities/EditorUtilities.h index 9e9b86ffd..37fb28a2a 100644 --- a/Source/Editor/Utilities/EditorUtilities.h +++ b/Source/Editor/Utilities/EditorUtilities.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Utilities/Extensions.cs b/Source/Editor/Utilities/Extensions.cs index a6a7e9142..c9a73fca7 100644 --- a/Source/Editor/Utilities/Extensions.cs +++ b/Source/Editor/Utilities/Extensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/MemberComparison.cs b/Source/Editor/Utilities/MemberComparison.cs index a574ce422..938bdaab1 100644 --- a/Source/Editor/Utilities/MemberComparison.cs +++ b/Source/Editor/Utilities/MemberComparison.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Scripting; diff --git a/Source/Editor/Utilities/MemberInfoPath.cs b/Source/Editor/Utilities/MemberInfoPath.cs index c76130d61..92fb62820 100644 --- a/Source/Editor/Utilities/MemberInfoPath.cs +++ b/Source/Editor/Utilities/MemberInfoPath.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/ObjectSnapshot.cs b/Source/Editor/Utilities/ObjectSnapshot.cs index 3c7e7ec3a..2a1c320f3 100644 --- a/Source/Editor/Utilities/ObjectSnapshot.cs +++ b/Source/Editor/Utilities/ObjectSnapshot.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. //#define DEBUG_OBJECT_SNAPSHOT_COMPARISION diff --git a/Source/Editor/Utilities/QueryFilterHelper.cs b/Source/Editor/Utilities/QueryFilterHelper.cs index b2b5ddf37..653149a35 100644 --- a/Source/Editor/Utilities/QueryFilterHelper.cs +++ b/Source/Editor/Utilities/QueryFilterHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/SelectionCache.cs b/Source/Editor/Utilities/SelectionCache.cs index 435cf47b0..720529728 100644 --- a/Source/Editor/Utilities/SelectionCache.cs +++ b/Source/Editor/Utilities/SelectionCache.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/ShuntingYardParser.cs b/Source/Editor/Utilities/ShuntingYardParser.cs index fc76dfc31..d139b003a 100644 --- a/Source/Editor/Utilities/ShuntingYardParser.cs +++ b/Source/Editor/Utilities/ShuntingYardParser.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Utilities/Utils.cs b/Source/Editor/Utilities/Utils.cs index ea7f44efc..e34f01eca 100644 --- a/Source/Editor/Utilities/Utils.cs +++ b/Source/Editor/Utilities/Utils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Utilities/VariantUtils.cs b/Source/Editor/Utilities/VariantUtils.cs index 5f2c524ac..d6fe25a5b 100644 --- a/Source/Editor/Utilities/VariantUtils.cs +++ b/Source/Editor/Utilities/VariantUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/Utilities/ViewportIconsRenderer.cpp b/Source/Editor/Utilities/ViewportIconsRenderer.cpp index 72533d6dc..dfc6aa05d 100644 --- a/Source/Editor/Utilities/ViewportIconsRenderer.cpp +++ b/Source/Editor/Utilities/ViewportIconsRenderer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ViewportIconsRenderer.h" #include "Engine/Content/Assets/Model.h" diff --git a/Source/Editor/Utilities/ViewportIconsRenderer.h b/Source/Editor/Utilities/ViewportIconsRenderer.h index cbe4854f5..c1d8489e9 100644 --- a/Source/Editor/Utilities/ViewportIconsRenderer.h +++ b/Source/Editor/Utilities/ViewportIconsRenderer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Viewport/Cameras/ArcBallCamera.cs b/Source/Editor/Viewport/Cameras/ArcBallCamera.cs index bfa31e4fa..caf5f41ef 100644 --- a/Source/Editor/Viewport/Cameras/ArcBallCamera.cs +++ b/Source/Editor/Viewport/Cameras/ArcBallCamera.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Viewport/Cameras/FPSCamera.cs b/Source/Editor/Viewport/Cameras/FPSCamera.cs index f150c07e4..e578933cf 100644 --- a/Source/Editor/Viewport/Cameras/FPSCamera.cs +++ b/Source/Editor/Viewport/Cameras/FPSCamera.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Viewport/Cameras/IViewportCamera.cs b/Source/Editor/Viewport/Cameras/IViewportCamera.cs index 2f2de9740..852100455 100644 --- a/Source/Editor/Viewport/Cameras/IViewportCamera.cs +++ b/Source/Editor/Viewport/Cameras/IViewportCamera.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Editor/Viewport/Cameras/ViewportCamera.cs b/Source/Editor/Viewport/Cameras/ViewportCamera.cs index 5e151ca36..5f9be32e6 100644 --- a/Source/Editor/Viewport/Cameras/ViewportCamera.cs +++ b/Source/Editor/Viewport/Cameras/ViewportCamera.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Viewport/EditorGizmoViewport.cs b/Source/Editor/Viewport/EditorGizmoViewport.cs index 9dd46e925..c58bb5805 100644 --- a/Source/Editor/Viewport/EditorGizmoViewport.cs +++ b/Source/Editor/Viewport/EditorGizmoViewport.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Gizmo; using FlaxEditor.Viewport.Cameras; diff --git a/Source/Editor/Viewport/EditorViewport.cs b/Source/Editor/Viewport/EditorViewport.cs index 4e44ae833..aa9e3638f 100644 --- a/Source/Editor/Viewport/EditorViewport.cs +++ b/Source/Editor/Viewport/EditorViewport.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/Viewport/MainEditorGizmoViewport.Modes.cs b/Source/Editor/Viewport/MainEditorGizmoViewport.Modes.cs index e60c35b40..27400c1e7 100644 --- a/Source/Editor/Viewport/MainEditorGizmoViewport.Modes.cs +++ b/Source/Editor/Viewport/MainEditorGizmoViewport.Modes.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Viewport/MainEditorGizmoViewport.cs b/Source/Editor/Viewport/MainEditorGizmoViewport.cs index c725c3b8b..20dacaf51 100644 --- a/Source/Editor/Viewport/MainEditorGizmoViewport.cs +++ b/Source/Editor/Viewport/MainEditorGizmoViewport.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Viewport/Modes/EditorGizmoMode.cs b/Source/Editor/Viewport/Modes/EditorGizmoMode.cs index 7a85ee096..fdf4bee98 100644 --- a/Source/Editor/Viewport/Modes/EditorGizmoMode.cs +++ b/Source/Editor/Viewport/Modes/EditorGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Viewport/Modes/NoGizmoMode.cs b/Source/Editor/Viewport/Modes/NoGizmoMode.cs index 24b7304ed..adf2ed192 100644 --- a/Source/Editor/Viewport/Modes/NoGizmoMode.cs +++ b/Source/Editor/Viewport/Modes/NoGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Viewport.Modes { diff --git a/Source/Editor/Viewport/Modes/TransformGizmoMode.cs b/Source/Editor/Viewport/Modes/TransformGizmoMode.cs index 66294eece..8a4de5c00 100644 --- a/Source/Editor/Viewport/Modes/TransformGizmoMode.cs +++ b/Source/Editor/Viewport/Modes/TransformGizmoMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Viewport.Modes { diff --git a/Source/Editor/Viewport/PrefabWindowViewport.cs b/Source/Editor/Viewport/PrefabWindowViewport.cs index 86b247fdc..46d5986f5 100644 --- a/Source/Editor/Viewport/PrefabWindowViewport.cs +++ b/Source/Editor/Viewport/PrefabWindowViewport.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Viewport/Previews/AnimatedModelPreview.cs b/Source/Editor/Viewport/Previews/AnimatedModelPreview.cs index f6fa47c61..b9f27f77b 100644 --- a/Source/Editor/Viewport/Previews/AnimatedModelPreview.cs +++ b/Source/Editor/Viewport/Previews/AnimatedModelPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Viewport/Previews/AnimationPreview.cs b/Source/Editor/Viewport/Previews/AnimationPreview.cs index 4a5bb58ec..1679a36bc 100644 --- a/Source/Editor/Viewport/Previews/AnimationPreview.cs +++ b/Source/Editor/Viewport/Previews/AnimationPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEditor.GUI.Input; diff --git a/Source/Editor/Viewport/Previews/AssetPreview.cs b/Source/Editor/Viewport/Previews/AssetPreview.cs index 973f9b563..65b78427c 100644 --- a/Source/Editor/Viewport/Previews/AssetPreview.cs +++ b/Source/Editor/Viewport/Previews/AssetPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Editor/Viewport/Previews/AudioClipPreview.cs b/Source/Editor/Viewport/Previews/AudioClipPreview.cs index e3a09c109..9ad6c98be 100644 --- a/Source/Editor/Viewport/Previews/AudioClipPreview.cs +++ b/Source/Editor/Viewport/Previews/AudioClipPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Threading.Tasks; diff --git a/Source/Editor/Viewport/Previews/CubeTexturePreview.cs b/Source/Editor/Viewport/Previews/CubeTexturePreview.cs index b77296a5a..08a402eb4 100644 --- a/Source/Editor/Viewport/Previews/CubeTexturePreview.cs +++ b/Source/Editor/Viewport/Previews/CubeTexturePreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEditor.Viewport.Widgets; diff --git a/Source/Editor/Viewport/Previews/IESProfilePreview.cs b/Source/Editor/Viewport/Previews/IESProfilePreview.cs index 6e1b8d013..ce62b4a7a 100644 --- a/Source/Editor/Viewport/Previews/IESProfilePreview.cs +++ b/Source/Editor/Viewport/Previews/IESProfilePreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Viewport/Previews/MaterialPreview.cs b/Source/Editor/Viewport/Previews/MaterialPreview.cs index bc1cb77f2..1cfd13743 100644 --- a/Source/Editor/Viewport/Previews/MaterialPreview.cs +++ b/Source/Editor/Viewport/Previews/MaterialPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Surface; diff --git a/Source/Editor/Viewport/Previews/ModelBasePreview.cs b/Source/Editor/Viewport/Previews/ModelBasePreview.cs index 388cf8a41..ffba23094 100644 --- a/Source/Editor/Viewport/Previews/ModelBasePreview.cs +++ b/Source/Editor/Viewport/Previews/ModelBasePreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Viewport/Previews/ModelPreview.cs b/Source/Editor/Viewport/Previews/ModelPreview.cs index 4b0439572..9193b6d40 100644 --- a/Source/Editor/Viewport/Previews/ModelPreview.cs +++ b/Source/Editor/Viewport/Previews/ModelPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEditor.GUI.Input; diff --git a/Source/Editor/Viewport/Previews/ParticleEmitterPreview.cs b/Source/Editor/Viewport/Previews/ParticleEmitterPreview.cs index e59016856..9182a8c50 100644 --- a/Source/Editor/Viewport/Previews/ParticleEmitterPreview.cs +++ b/Source/Editor/Viewport/Previews/ParticleEmitterPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.Input; using FlaxEngine; diff --git a/Source/Editor/Viewport/Previews/ParticleSystemPreview.cs b/Source/Editor/Viewport/Previews/ParticleSystemPreview.cs index 2a91571ee..e845ae62c 100644 --- a/Source/Editor/Viewport/Previews/ParticleSystemPreview.cs +++ b/Source/Editor/Viewport/Previews/ParticleSystemPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.GUI.ContextMenu; using FlaxEditor.Viewport.Cameras; diff --git a/Source/Editor/Viewport/Previews/PrefabPreview.cs b/Source/Editor/Viewport/Previews/PrefabPreview.cs index 7f908c141..b02cd6f4a 100644 --- a/Source/Editor/Viewport/Previews/PrefabPreview.cs +++ b/Source/Editor/Viewport/Previews/PrefabPreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Viewport/Previews/TexturePreview.cs b/Source/Editor/Viewport/Previews/TexturePreview.cs index fa9bea89a..a33a61f86 100644 --- a/Source/Editor/Viewport/Previews/TexturePreview.cs +++ b/Source/Editor/Viewport/Previews/TexturePreview.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Viewport/Widgets/ViewportWidgetButton.cs b/Source/Editor/Viewport/Widgets/ViewportWidgetButton.cs index b92757152..481bc3f1b 100644 --- a/Source/Editor/Viewport/Widgets/ViewportWidgetButton.cs +++ b/Source/Editor/Viewport/Widgets/ViewportWidgetButton.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Viewport/Widgets/ViewportWidgetsContainer.cs b/Source/Editor/Viewport/Widgets/ViewportWidgetsContainer.cs index edc9a110d..accc8accc 100644 --- a/Source/Editor/Viewport/Widgets/ViewportWidgetsContainer.cs +++ b/Source/Editor/Viewport/Widgets/ViewportWidgetsContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/ViewportDebugDrawData.cs b/Source/Editor/ViewportDebugDrawData.cs index a983af168..10bc19c45 100644 --- a/Source/Editor/ViewportDebugDrawData.cs +++ b/Source/Editor/ViewportDebugDrawData.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/AboutDialog.cs b/Source/Editor/Windows/AboutDialog.cs index ff41b81ea..866c88128 100644 --- a/Source/Editor/Windows/AboutDialog.cs +++ b/Source/Editor/Windows/AboutDialog.cs @@ -1,5 +1,5 @@ //#define USE_AUTODESK_FBX_SDK -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.GUI.Dialogs; @@ -47,7 +47,7 @@ namespace FlaxEditor.Windows }; new Label(nameLabel.Left, nameLabel.Bottom + 4, nameLabel.Width, 50) { - Text = string.Format("Version: {0}\nCopyright (c) 2012-2022 Wojciech Figat.\nAll rights reserved.", Globals.EngineVersion), + Text = string.Format("Version: {0}\nCopyright (c) 2012-2023 Wojciech Figat.\nAll rights reserved.", Globals.EngineVersion), HorizontalAlignment = TextAlignment.Near, VerticalAlignment = TextAlignment.Near, Parent = this diff --git a/Source/Editor/Windows/AssetReferencesGraphWindow.cs b/Source/Editor/Windows/AssetReferencesGraphWindow.cs index f11dcbfbc..78513f037 100644 --- a/Source/Editor/Windows/AssetReferencesGraphWindow.cs +++ b/Source/Editor/Windows/AssetReferencesGraphWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/AnimationGraphFunctionWindow.cs b/Source/Editor/Windows/Assets/AnimationGraphFunctionWindow.cs index d552bdb5c..4d3430cf7 100644 --- a/Source/Editor/Windows/Assets/AnimationGraphFunctionWindow.cs +++ b/Source/Editor/Windows/Assets/AnimationGraphFunctionWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Surface; diff --git a/Source/Editor/Windows/Assets/AnimationGraphWindow.cs b/Source/Editor/Windows/Assets/AnimationGraphWindow.cs index ebfc05bee..98304fd8f 100644 --- a/Source/Editor/Windows/Assets/AnimationGraphWindow.cs +++ b/Source/Editor/Windows/Assets/AnimationGraphWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/AnimationWindow.cs b/Source/Editor/Windows/Assets/AnimationWindow.cs index 37560c7e0..db812d442 100644 --- a/Source/Editor/Windows/Assets/AnimationWindow.cs +++ b/Source/Editor/Windows/Assets/AnimationWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Reflection; diff --git a/Source/Editor/Windows/Assets/AssetEditorWindow.cs b/Source/Editor/Windows/Assets/AssetEditorWindow.cs index 53b67346c..cf7b41dca 100644 --- a/Source/Editor/Windows/Assets/AssetEditorWindow.cs +++ b/Source/Editor/Windows/Assets/AssetEditorWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/AudioClipWindow.cs b/Source/Editor/Windows/Assets/AudioClipWindow.cs index e6ba40195..3980b3340 100644 --- a/Source/Editor/Windows/Assets/AudioClipWindow.cs +++ b/Source/Editor/Windows/Assets/AudioClipWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Xml; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/CollisionDataWindow.cs b/Source/Editor/Windows/Assets/CollisionDataWindow.cs index 249aa916e..fd044a22c 100644 --- a/Source/Editor/Windows/Assets/CollisionDataWindow.cs +++ b/Source/Editor/Windows/Assets/CollisionDataWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Xml; diff --git a/Source/Editor/Windows/Assets/CubeTextureWindow.cs b/Source/Editor/Windows/Assets/CubeTextureWindow.cs index 845b40ee1..2292ba556 100644 --- a/Source/Editor/Windows/Assets/CubeTextureWindow.cs +++ b/Source/Editor/Windows/Assets/CubeTextureWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Xml; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/FontWindow.cs b/Source/Editor/Windows/Assets/FontWindow.cs index 4c20a7aec..ff4135165 100644 --- a/Source/Editor/Windows/Assets/FontWindow.cs +++ b/Source/Editor/Windows/Assets/FontWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/GameplayGlobalsWindow.cs b/Source/Editor/Windows/Assets/GameplayGlobalsWindow.cs index f8b3b1c8b..bfd93d5ae 100644 --- a/Source/Editor/Windows/Assets/GameplayGlobalsWindow.cs +++ b/Source/Editor/Windows/Assets/GameplayGlobalsWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/IESProfileWindow.cs b/Source/Editor/Windows/Assets/IESProfileWindow.cs index fc6305d03..d871852ed 100644 --- a/Source/Editor/Windows/Assets/IESProfileWindow.cs +++ b/Source/Editor/Windows/Assets/IESProfileWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Viewport.Previews; diff --git a/Source/Editor/Windows/Assets/JsonAssetWindow.cs b/Source/Editor/Windows/Assets/JsonAssetWindow.cs index 1cb1cbdd0..ecc68581c 100644 --- a/Source/Editor/Windows/Assets/JsonAssetWindow.cs +++ b/Source/Editor/Windows/Assets/JsonAssetWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/LocalizedStringTableWindow.cs b/Source/Editor/Windows/Assets/LocalizedStringTableWindow.cs index 524d09061..0de5ce315 100644 --- a/Source/Editor/Windows/Assets/LocalizedStringTableWindow.cs +++ b/Source/Editor/Windows/Assets/LocalizedStringTableWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/MaterialFunctionWindow.cs b/Source/Editor/Windows/Assets/MaterialFunctionWindow.cs index de02857f7..679c78d3c 100644 --- a/Source/Editor/Windows/Assets/MaterialFunctionWindow.cs +++ b/Source/Editor/Windows/Assets/MaterialFunctionWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Surface; diff --git a/Source/Editor/Windows/Assets/MaterialInstanceWindow.cs b/Source/Editor/Windows/Assets/MaterialInstanceWindow.cs index 977416fcd..9401908d0 100644 --- a/Source/Editor/Windows/Assets/MaterialInstanceWindow.cs +++ b/Source/Editor/Windows/Assets/MaterialInstanceWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/Windows/Assets/MaterialWindow.cs b/Source/Editor/Windows/Assets/MaterialWindow.cs index cabead5b6..4ade1eb70 100644 --- a/Source/Editor/Windows/Assets/MaterialWindow.cs +++ b/Source/Editor/Windows/Assets/MaterialWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/ModelBaseWindow.cs b/Source/Editor/Windows/Assets/ModelBaseWindow.cs index 38f8cef17..977b15839 100644 --- a/Source/Editor/Windows/Assets/ModelBaseWindow.cs +++ b/Source/Editor/Windows/Assets/ModelBaseWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Xml; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/ModelWindow.cs b/Source/Editor/Windows/Assets/ModelWindow.cs index 956f77dba..af3bfdf22 100644 --- a/Source/Editor/Windows/Assets/ModelWindow.cs +++ b/Source/Editor/Windows/Assets/ModelWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Reflection; diff --git a/Source/Editor/Windows/Assets/ParticleEmitterFunctionWindow.cs b/Source/Editor/Windows/Assets/ParticleEmitterFunctionWindow.cs index 018096b0d..ff2ec7084 100644 --- a/Source/Editor/Windows/Assets/ParticleEmitterFunctionWindow.cs +++ b/Source/Editor/Windows/Assets/ParticleEmitterFunctionWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Surface; diff --git a/Source/Editor/Windows/Assets/ParticleEmitterWindow.cs b/Source/Editor/Windows/Assets/ParticleEmitterWindow.cs index 33c02da0a..5a401242b 100644 --- a/Source/Editor/Windows/Assets/ParticleEmitterWindow.cs +++ b/Source/Editor/Windows/Assets/ParticleEmitterWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/ParticleSystemWindow.cs b/Source/Editor/Windows/Assets/ParticleSystemWindow.cs index 6fdc97f64..814978858 100644 --- a/Source/Editor/Windows/Assets/ParticleSystemWindow.cs +++ b/Source/Editor/Windows/Assets/ParticleSystemWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Editor/Windows/Assets/PrefabWindow.Actions.cs b/Source/Editor/Windows/Assets/PrefabWindow.Actions.cs index fc7a9123d..3246e51b5 100644 --- a/Source/Editor/Windows/Assets/PrefabWindow.Actions.cs +++ b/Source/Editor/Windows/Assets/PrefabWindow.Actions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/PrefabWindow.Hierarchy.cs b/Source/Editor/Windows/Assets/PrefabWindow.Hierarchy.cs index 986c2ba60..71777dea7 100644 --- a/Source/Editor/Windows/Assets/PrefabWindow.Hierarchy.cs +++ b/Source/Editor/Windows/Assets/PrefabWindow.Hierarchy.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/PrefabWindow.Selection.cs b/Source/Editor/Windows/Assets/PrefabWindow.Selection.cs index 24ca354ab..a41d2d9b5 100644 --- a/Source/Editor/Windows/Assets/PrefabWindow.Selection.cs +++ b/Source/Editor/Windows/Assets/PrefabWindow.Selection.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/PrefabWindow.cs b/Source/Editor/Windows/Assets/PrefabWindow.cs index 73f6aee21..8879ff904 100644 --- a/Source/Editor/Windows/Assets/PrefabWindow.cs +++ b/Source/Editor/Windows/Assets/PrefabWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Xml; diff --git a/Source/Editor/Windows/Assets/PreviewsCacheWindow.cs b/Source/Editor/Windows/Assets/PreviewsCacheWindow.cs index 4d1cfd30a..8b2bc520d 100644 --- a/Source/Editor/Windows/Assets/PreviewsCacheWindow.cs +++ b/Source/Editor/Windows/Assets/PreviewsCacheWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.Viewport.Previews; diff --git a/Source/Editor/Windows/Assets/SceneAnimationWindow.cs b/Source/Editor/Windows/Assets/SceneAnimationWindow.cs index aef74e8bd..c85343158 100644 --- a/Source/Editor/Windows/Assets/SceneAnimationWindow.cs +++ b/Source/Editor/Windows/Assets/SceneAnimationWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Editor/Windows/Assets/SkeletonMaskWindow.cs b/Source/Editor/Windows/Assets/SkeletonMaskWindow.cs index 301ccf9b4..507e9032d 100644 --- a/Source/Editor/Windows/Assets/SkeletonMaskWindow.cs +++ b/Source/Editor/Windows/Assets/SkeletonMaskWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections; using System.Xml; diff --git a/Source/Editor/Windows/Assets/SkinnedModelWindow.cs b/Source/Editor/Windows/Assets/SkinnedModelWindow.cs index e0fb76c86..a3439cbe9 100644 --- a/Source/Editor/Windows/Assets/SkinnedModelWindow.cs +++ b/Source/Editor/Windows/Assets/SkinnedModelWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Assets/SpriteAtlasWindow.cs b/Source/Editor/Windows/Assets/SpriteAtlasWindow.cs index fc72e39e5..ecd031d48 100644 --- a/Source/Editor/Windows/Assets/SpriteAtlasWindow.cs +++ b/Source/Editor/Windows/Assets/SpriteAtlasWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using System.Xml; diff --git a/Source/Editor/Windows/Assets/TextureWindow.cs b/Source/Editor/Windows/Assets/TextureWindow.cs index 84c734365..3b1f1911c 100644 --- a/Source/Editor/Windows/Assets/TextureWindow.cs +++ b/Source/Editor/Windows/Assets/TextureWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Xml; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Assets/VisjectFunctionSurfaceWindow.cs b/Source/Editor/Windows/Assets/VisjectFunctionSurfaceWindow.cs index 2f48fc37f..2a75a76bd 100644 --- a/Source/Editor/Windows/Assets/VisjectFunctionSurfaceWindow.cs +++ b/Source/Editor/Windows/Assets/VisjectFunctionSurfaceWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.GUI; diff --git a/Source/Editor/Windows/Assets/VisualScriptWindow.cs b/Source/Editor/Windows/Assets/VisualScriptWindow.cs index 8c480fd04..72a043eaa 100644 --- a/Source/Editor/Windows/Assets/VisualScriptWindow.cs +++ b/Source/Editor/Windows/Assets/VisualScriptWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/ContentWindow.ContextMenu.cs b/Source/Editor/Windows/ContentWindow.ContextMenu.cs index 89f13d6a3..b8b289e08 100644 --- a/Source/Editor/Windows/ContentWindow.ContextMenu.cs +++ b/Source/Editor/Windows/ContentWindow.ContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/ContentWindow.Navigation.cs b/Source/Editor/Windows/ContentWindow.Navigation.cs index 7efbd1abe..69104d6c8 100644 --- a/Source/Editor/Windows/ContentWindow.Navigation.cs +++ b/Source/Editor/Windows/ContentWindow.Navigation.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/ContentWindow.Search.cs b/Source/Editor/Windows/ContentWindow.Search.cs index c4d2b4b84..1d8731ffa 100644 --- a/Source/Editor/Windows/ContentWindow.Search.cs +++ b/Source/Editor/Windows/ContentWindow.Search.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/ContentWindow.cs b/Source/Editor/Windows/ContentWindow.cs index c2470f39a..162382f03 100644 --- a/Source/Editor/Windows/ContentWindow.cs +++ b/Source/Editor/Windows/ContentWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/DebugLogWindow.cs b/Source/Editor/Windows/DebugLogWindow.cs index 5aca5569a..b1136523a 100644 --- a/Source/Editor/Windows/DebugLogWindow.cs +++ b/Source/Editor/Windows/DebugLogWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/EditGameWindow.cs b/Source/Editor/Windows/EditGameWindow.cs index 3c0d40c9d..9335cd00b 100644 --- a/Source/Editor/Windows/EditGameWindow.cs +++ b/Source/Editor/Windows/EditGameWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/EditorOptionsWindow.cs b/Source/Editor/Windows/EditorOptionsWindow.cs index 89ef84bd8..2942f98c0 100644 --- a/Source/Editor/Windows/EditorOptionsWindow.cs +++ b/Source/Editor/Windows/EditorOptionsWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/EditorWindow.cs b/Source/Editor/Windows/EditorWindow.cs index ffa9e9c0a..1ff0363f1 100644 --- a/Source/Editor/Windows/EditorWindow.cs +++ b/Source/Editor/Windows/EditorWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/GameCookerWindow.cs b/Source/Editor/Windows/GameCookerWindow.cs index 86e6aa86c..e9a85f9cd 100644 --- a/Source/Editor/Windows/GameCookerWindow.cs +++ b/Source/Editor/Windows/GameCookerWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/GameWindow.cs b/Source/Editor/Windows/GameWindow.cs index c800692f7..8084d638e 100644 --- a/Source/Editor/Windows/GameWindow.cs +++ b/Source/Editor/Windows/GameWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/GraphicsQualityWindow.cs b/Source/Editor/Windows/GraphicsQualityWindow.cs index 957d1af1a..1f742206b 100644 --- a/Source/Editor/Windows/GraphicsQualityWindow.cs +++ b/Source/Editor/Windows/GraphicsQualityWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.ComponentModel; diff --git a/Source/Editor/Windows/OutputLogWindow.cs b/Source/Editor/Windows/OutputLogWindow.cs index 22989124f..544253fa5 100644 --- a/Source/Editor/Windows/OutputLogWindow.cs +++ b/Source/Editor/Windows/OutputLogWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/PluginsWindow.cs b/Source/Editor/Windows/PluginsWindow.cs index 851a34f19..694551345 100644 --- a/Source/Editor/Windows/PluginsWindow.cs +++ b/Source/Editor/Windows/PluginsWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Profiler/CPU.cs b/Source/Editor/Windows/Profiler/CPU.cs index 23f74aa94..77b9f95ce 100644 --- a/Source/Editor/Windows/Profiler/CPU.cs +++ b/Source/Editor/Windows/Profiler/CPU.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Profiler/GPU.cs b/Source/Editor/Windows/Profiler/GPU.cs index 94e827095..3ae39b27e 100644 --- a/Source/Editor/Windows/Profiler/GPU.cs +++ b/Source/Editor/Windows/Profiler/GPU.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.GUI; diff --git a/Source/Editor/Windows/Profiler/Memory.cs b/Source/Editor/Windows/Profiler/Memory.cs index 5d719a1b9..6541fd723 100644 --- a/Source/Editor/Windows/Profiler/Memory.cs +++ b/Source/Editor/Windows/Profiler/Memory.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.GUI; diff --git a/Source/Editor/Windows/Profiler/Overall.cs b/Source/Editor/Windows/Profiler/Overall.cs index 87715c896..4fea4bc2c 100644 --- a/Source/Editor/Windows/Profiler/Overall.cs +++ b/Source/Editor/Windows/Profiler/Overall.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Windows/Profiler/ProfilerMode.cs b/Source/Editor/Windows/Profiler/ProfilerMode.cs index 9b885f886..3bb59e3bf 100644 --- a/Source/Editor/Windows/Profiler/ProfilerMode.cs +++ b/Source/Editor/Windows/Profiler/ProfilerMode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.Tabs; diff --git a/Source/Editor/Windows/Profiler/ProfilerWindow.cs b/Source/Editor/Windows/Profiler/ProfilerWindow.cs index 4d1ad9ba1..16e190535 100644 --- a/Source/Editor/Windows/Profiler/ProfilerWindow.cs +++ b/Source/Editor/Windows/Profiler/ProfilerWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI; diff --git a/Source/Editor/Windows/Profiler/SamplesBuffer.cs b/Source/Editor/Windows/Profiler/SamplesBuffer.cs index bb0da8171..abc99cfd5 100644 --- a/Source/Editor/Windows/Profiler/SamplesBuffer.cs +++ b/Source/Editor/Windows/Profiler/SamplesBuffer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEditor.Windows.Profiler { diff --git a/Source/Editor/Windows/Profiler/SingleChart.cs b/Source/Editor/Windows/Profiler/SingleChart.cs index 37735f97f..e14480bee 100644 --- a/Source/Editor/Windows/Profiler/SingleChart.cs +++ b/Source/Editor/Windows/Profiler/SingleChart.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Editor/Windows/Profiler/Timeline.cs b/Source/Editor/Windows/Profiler/Timeline.cs index aae13fd4c..a61ca1d05 100644 --- a/Source/Editor/Windows/Profiler/Timeline.cs +++ b/Source/Editor/Windows/Profiler/Timeline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; using FlaxEngine.GUI; diff --git a/Source/Editor/Windows/PropertiesWindow.cs b/Source/Editor/Windows/PropertiesWindow.cs index a3b820c9b..3c2d06852 100644 --- a/Source/Editor/Windows/PropertiesWindow.cs +++ b/Source/Editor/Windows/PropertiesWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Linq; diff --git a/Source/Editor/Windows/SceneEditorWindow.cs b/Source/Editor/Windows/SceneEditorWindow.cs index 651814d77..f55ff4ee4 100644 --- a/Source/Editor/Windows/SceneEditorWindow.cs +++ b/Source/Editor/Windows/SceneEditorWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; diff --git a/Source/Editor/Windows/SceneTreeWindow.ContextMenu.cs b/Source/Editor/Windows/SceneTreeWindow.ContextMenu.cs index 1378ace9c..3a7336bbb 100644 --- a/Source/Editor/Windows/SceneTreeWindow.ContextMenu.cs +++ b/Source/Editor/Windows/SceneTreeWindow.ContextMenu.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Windows/SceneTreeWindow.cs b/Source/Editor/Windows/SceneTreeWindow.cs index 28ab83ff5..a07bdd71f 100644 --- a/Source/Editor/Windows/SceneTreeWindow.cs +++ b/Source/Editor/Windows/SceneTreeWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/Search/ContentFinder.cs b/Source/Editor/Windows/Search/ContentFinder.cs index 96453a26d..05e1d6792 100644 --- a/Source/Editor/Windows/Search/ContentFinder.cs +++ b/Source/Editor/Windows/Search/ContentFinder.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.Content; diff --git a/Source/Editor/Windows/Search/ContentSearchWindow.cs b/Source/Editor/Windows/Search/ContentSearchWindow.cs index 7128b7db9..1545fd80b 100644 --- a/Source/Editor/Windows/Search/ContentSearchWindow.cs +++ b/Source/Editor/Windows/Search/ContentSearchWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Editor/Windows/Search/SearchItem.cs b/Source/Editor/Windows/Search/SearchItem.cs index 225cb53e2..e8bdc4e56 100644 --- a/Source/Editor/Windows/Search/SearchItem.cs +++ b/Source/Editor/Windows/Search/SearchItem.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Content; using FlaxEditor.GUI.ContextMenu; diff --git a/Source/Editor/Windows/SplashScreen.cpp b/Source/Editor/Windows/SplashScreen.cpp index d7e14852f..649f0bcff 100644 --- a/Source/Editor/Windows/SplashScreen.cpp +++ b/Source/Editor/Windows/SplashScreen.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SplashScreen.h" #include "Engine/Core/Log.h" diff --git a/Source/Editor/Windows/SplashScreen.h b/Source/Editor/Windows/SplashScreen.h index 93c6b9b93..8c8d71774 100644 --- a/Source/Editor/Windows/SplashScreen.h +++ b/Source/Editor/Windows/SplashScreen.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Editor/Windows/StyleEditorWindow.cs b/Source/Editor/Windows/StyleEditorWindow.cs index 59f21c516..7ba5bf015 100644 --- a/Source/Editor/Windows/StyleEditorWindow.cs +++ b/Source/Editor/Windows/StyleEditorWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEditor.CustomEditors; diff --git a/Source/Editor/Windows/ToolboxWindow.cs b/Source/Editor/Windows/ToolboxWindow.cs index 6c1b3d9cc..434647280 100644 --- a/Source/Editor/Windows/ToolboxWindow.cs +++ b/Source/Editor/Windows/ToolboxWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Editor/Windows/VisualScriptDebuggerWindow.cs b/Source/Editor/Windows/VisualScriptDebuggerWindow.cs index 840a1831e..c85507a1c 100644 --- a/Source/Editor/Windows/VisualScriptDebuggerWindow.cs +++ b/Source/Editor/Windows/VisualScriptDebuggerWindow.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Animations/AlphaBlend.h b/Source/Engine/Animations/AlphaBlend.h index 6ca9384e5..c557416da 100644 --- a/Source/Engine/Animations/AlphaBlend.h +++ b/Source/Engine/Animations/AlphaBlend.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/AnimEvent.cpp b/Source/Engine/Animations/AnimEvent.cpp index 3ca1ffa72..8a867861e 100644 --- a/Source/Engine/Animations/AnimEvent.cpp +++ b/Source/Engine/Animations/AnimEvent.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimEvent.h" #include "Engine/Scripting/BinaryModule.h" diff --git a/Source/Engine/Animations/AnimEvent.h b/Source/Engine/Animations/AnimEvent.h index 01e810c81..2028501ea 100644 --- a/Source/Engine/Animations/AnimEvent.h +++ b/Source/Engine/Animations/AnimEvent.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/AnimationData.h b/Source/Engine/Animations/AnimationData.h index ad56e891a..a750580e3 100644 --- a/Source/Engine/Animations/AnimationData.h +++ b/Source/Engine/Animations/AnimationData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/AnimationGraph.cs b/Source/Engine/Animations/AnimationGraph.cs index c337bcb6d..86c623337 100644 --- a/Source/Engine/Animations/AnimationGraph.cs +++ b/Source/Engine/Animations/AnimationGraph.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Animations/AnimationUtils.h b/Source/Engine/Animations/AnimationUtils.h index 23059007d..b7c5d0b3a 100644 --- a/Source/Engine/Animations/AnimationUtils.h +++ b/Source/Engine/Animations/AnimationUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/Animations.Build.cs b/Source/Engine/Animations/Animations.Build.cs index 6fdf526e0..e9b284cbd 100644 --- a/Source/Engine/Animations/Animations.Build.cs +++ b/Source/Engine/Animations/Animations.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Animations/Animations.cpp b/Source/Engine/Animations/Animations.cpp index f4e0e5952..6d6787d91 100644 --- a/Source/Engine/Animations/Animations.cpp +++ b/Source/Engine/Animations/Animations.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Animations.h" #include "Engine/Engine/Engine.h" diff --git a/Source/Engine/Animations/Animations.h b/Source/Engine/Animations/Animations.h index 368c4187b..d82b9d05f 100644 --- a/Source/Engine/Animations/Animations.h +++ b/Source/Engine/Animations/Animations.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/Config.h b/Source/Engine/Animations/Config.h index 193a02019..f21d22469 100644 --- a/Source/Engine/Animations/Config.h +++ b/Source/Engine/Animations/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/Curve.cs b/Source/Engine/Animations/Curve.cs index c040a4ad3..2100e12d6 100644 --- a/Source/Engine/Animations/Curve.cs +++ b/Source/Engine/Animations/Curve.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Animations/Curve.h b/Source/Engine/Animations/Curve.h index 8d91960e6..a880709fa 100644 --- a/Source/Engine/Animations/Curve.h +++ b/Source/Engine/Animations/Curve.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/CurveSerialization.h b/Source/Engine/Animations/CurveSerialization.h index 36500c0c5..c4be1cdd7 100644 --- a/Source/Engine/Animations/CurveSerialization.h +++ b/Source/Engine/Animations/CurveSerialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/Graph/AnimGraph.Base.cpp b/Source/Engine/Animations/Graph/AnimGraph.Base.cpp index e9c11358c..ea5f31256 100644 --- a/Source/Engine/Animations/Graph/AnimGraph.Base.cpp +++ b/Source/Engine/Animations/Graph/AnimGraph.Base.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimGraph.h" #include "Engine/Core/Collections/Array.h" diff --git a/Source/Engine/Animations/Graph/AnimGraph.Custom.cpp b/Source/Engine/Animations/Graph/AnimGraph.Custom.cpp index 45141bd94..d2068ae02 100644 --- a/Source/Engine/Animations/Graph/AnimGraph.Custom.cpp +++ b/Source/Engine/Animations/Graph/AnimGraph.Custom.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimGraph.h" #include "Engine/Debug/DebugLog.h" diff --git a/Source/Engine/Animations/Graph/AnimGraph.cpp b/Source/Engine/Animations/Graph/AnimGraph.cpp index 08b127484..fa770f31b 100644 --- a/Source/Engine/Animations/Graph/AnimGraph.cpp +++ b/Source/Engine/Animations/Graph/AnimGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimGraph.h" #include "Engine/Animations/Animations.h" diff --git a/Source/Engine/Animations/Graph/AnimGraph.h b/Source/Engine/Animations/Graph/AnimGraph.h index 74b512303..6f469dcb6 100644 --- a/Source/Engine/Animations/Graph/AnimGraph.h +++ b/Source/Engine/Animations/Graph/AnimGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/Graph/AnimGroup.Animation.cpp b/Source/Engine/Animations/Graph/AnimGroup.Animation.cpp index 50dacbb76..96f6a0008 100644 --- a/Source/Engine/Animations/Graph/AnimGroup.Animation.cpp +++ b/Source/Engine/Animations/Graph/AnimGroup.Animation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimGraph.h" #include "Engine/Content/Assets/Animation.h" diff --git a/Source/Engine/Animations/InverseKinematics.cpp b/Source/Engine/Animations/InverseKinematics.cpp index 5e9ef485a..35e595bca 100644 --- a/Source/Engine/Animations/InverseKinematics.cpp +++ b/Source/Engine/Animations/InverseKinematics.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "InverseKinematics.h" diff --git a/Source/Engine/Animations/InverseKinematics.h b/Source/Engine/Animations/InverseKinematics.h index b0a4c7be3..7272e454a 100644 --- a/Source/Engine/Animations/InverseKinematics.h +++ b/Source/Engine/Animations/InverseKinematics.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp b/Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp index e2a61b074..6ad16541f 100644 --- a/Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp +++ b/Source/Engine/Animations/SceneAnimations/SceneAnimation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneAnimation.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Animations/SceneAnimations/SceneAnimation.h b/Source/Engine/Animations/SceneAnimations/SceneAnimation.h index c27c2786b..fcd0b5cca 100644 --- a/Source/Engine/Animations/SceneAnimations/SceneAnimation.h +++ b/Source/Engine/Animations/SceneAnimations/SceneAnimation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.cpp b/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.cpp index a956dc7ff..dda6e6fcb 100644 --- a/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.cpp +++ b/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneAnimationPlayer.h" #include "Engine/Core/Random.h" diff --git a/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.h b/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.h index d7243a09b..46ebc918d 100644 --- a/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.h +++ b/Source/Engine/Animations/SceneAnimations/SceneAnimationPlayer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/Audio.Build.cs b/Source/Engine/Audio/Audio.Build.cs index d4cd7628f..03e7ba2aa 100644 --- a/Source/Engine/Audio/Audio.Build.cs +++ b/Source/Engine/Audio/Audio.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Audio/Audio.cpp b/Source/Engine/Audio/Audio.cpp index 64d2a25e2..450625a48 100644 --- a/Source/Engine/Audio/Audio.cpp +++ b/Source/Engine/Audio/Audio.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Audio.h" #include "AudioBackend.h" diff --git a/Source/Engine/Audio/Audio.h b/Source/Engine/Audio/Audio.h index efbc1e4bc..fa9727064 100644 --- a/Source/Engine/Audio/Audio.h +++ b/Source/Engine/Audio/Audio.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioBackend.h b/Source/Engine/Audio/AudioBackend.h index 55a313cb4..dbc6a02c9 100644 --- a/Source/Engine/Audio/AudioBackend.h +++ b/Source/Engine/Audio/AudioBackend.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioClip.cpp b/Source/Engine/Audio/AudioClip.cpp index fd8311132..858fc5cc5 100644 --- a/Source/Engine/Audio/AudioClip.cpp +++ b/Source/Engine/Audio/AudioClip.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AudioClip.h" #include "Audio.h" diff --git a/Source/Engine/Audio/AudioClip.h b/Source/Engine/Audio/AudioClip.h index ad33e2231..f661c34c1 100644 --- a/Source/Engine/Audio/AudioClip.h +++ b/Source/Engine/Audio/AudioClip.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioDevice.h b/Source/Engine/Audio/AudioDevice.h index a2707a1d2..8cccb96fd 100644 --- a/Source/Engine/Audio/AudioDevice.h +++ b/Source/Engine/Audio/AudioDevice.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioListener.cpp b/Source/Engine/Audio/AudioListener.cpp index 6356515b6..4d8831591 100644 --- a/Source/Engine/Audio/AudioListener.cpp +++ b/Source/Engine/Audio/AudioListener.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AudioListener.h" #include "Engine/Engine/Time.h" diff --git a/Source/Engine/Audio/AudioListener.h b/Source/Engine/Audio/AudioListener.h index 28bca3b81..84c3deaf1 100644 --- a/Source/Engine/Audio/AudioListener.h +++ b/Source/Engine/Audio/AudioListener.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioSettings.h b/Source/Engine/Audio/AudioSettings.h index 506b34c8c..5bbae36fb 100644 --- a/Source/Engine/Audio/AudioSettings.h +++ b/Source/Engine/Audio/AudioSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/AudioSource.cpp b/Source/Engine/Audio/AudioSource.cpp index 333ac2c72..42a27bff4 100644 --- a/Source/Engine/Audio/AudioSource.cpp +++ b/Source/Engine/Audio/AudioSource.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AudioSource.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Audio/AudioSource.h b/Source/Engine/Audio/AudioSource.h index 791e9465e..d7719ec02 100644 --- a/Source/Engine/Audio/AudioSource.h +++ b/Source/Engine/Audio/AudioSource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/Config.h b/Source/Engine/Audio/Config.h index 8009f9f18..cfc3ec3cd 100644 --- a/Source/Engine/Audio/Config.h +++ b/Source/Engine/Audio/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/None/AudioBackendNone.cpp b/Source/Engine/Audio/None/AudioBackendNone.cpp index 9e7d97142..0d40dcb5c 100644 --- a/Source/Engine/Audio/None/AudioBackendNone.cpp +++ b/Source/Engine/Audio/None/AudioBackendNone.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if AUDIO_API_NONE diff --git a/Source/Engine/Audio/None/AudioBackendNone.h b/Source/Engine/Audio/None/AudioBackendNone.h index 53163e210..21f92eb98 100644 --- a/Source/Engine/Audio/None/AudioBackendNone.h +++ b/Source/Engine/Audio/None/AudioBackendNone.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/OpenAL/AudioBackendOAL.cpp b/Source/Engine/Audio/OpenAL/AudioBackendOAL.cpp index ef1e84675..590b950bd 100644 --- a/Source/Engine/Audio/OpenAL/AudioBackendOAL.cpp +++ b/Source/Engine/Audio/OpenAL/AudioBackendOAL.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if AUDIO_API_OPENAL diff --git a/Source/Engine/Audio/OpenAL/AudioBackendOAL.h b/Source/Engine/Audio/OpenAL/AudioBackendOAL.h index f30e3d508..5c2dd7675 100644 --- a/Source/Engine/Audio/OpenAL/AudioBackendOAL.h +++ b/Source/Engine/Audio/OpenAL/AudioBackendOAL.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/Types.h b/Source/Engine/Audio/Types.h index 5776525b9..a19f2f492 100644 --- a/Source/Engine/Audio/Types.h +++ b/Source/Engine/Audio/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.cpp b/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.cpp index 08e3cfd5b..094cbb2fb 100644 --- a/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.cpp +++ b/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if AUDIO_API_XAUDIO2 diff --git a/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.h b/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.h index 6acb600b4..9f4a2d892 100644 --- a/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.h +++ b/Source/Engine/Audio/XAudio2/AudioBackendXAudio2.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/Brush.h b/Source/Engine/CSG/Brush.h index d294e27a7..f04995b71 100644 --- a/Source/Engine/CSG/Brush.h +++ b/Source/Engine/CSG/Brush.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/CSG.Build.cs b/Source/Engine/CSG/CSG.Build.cs index b87de8915..905d7287b 100644 --- a/Source/Engine/CSG/CSG.Build.cs +++ b/Source/Engine/CSG/CSG.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/CSG/CSGBuilder.cpp b/Source/Engine/CSG/CSGBuilder.cpp index 644cf0b57..668f3c08d 100644 --- a/Source/Engine/CSG/CSGBuilder.cpp +++ b/Source/Engine/CSG/CSGBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGBuilder.h" #include "CSGMesh.h" diff --git a/Source/Engine/CSG/CSGBuilder.h b/Source/Engine/CSG/CSGBuilder.h index 1e99fb548..355a8baea 100644 --- a/Source/Engine/CSG/CSGBuilder.h +++ b/Source/Engine/CSG/CSGBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/CSGData.cpp b/Source/Engine/CSG/CSGData.cpp index c53bb1ce4..f83c9fdd3 100644 --- a/Source/Engine/CSG/CSGData.cpp +++ b/Source/Engine/CSG/CSGData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGData.h" #include "Brush.h" diff --git a/Source/Engine/CSG/CSGData.h b/Source/Engine/CSG/CSGData.h index 0f035cfd3..3f1851213 100644 --- a/Source/Engine/CSG/CSGData.h +++ b/Source/Engine/CSG/CSGData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/CSGMesh.Build.cpp b/Source/Engine/CSG/CSGMesh.Build.cpp index 5d7439450..301356bf5 100644 --- a/Source/Engine/CSG/CSGMesh.Build.cpp +++ b/Source/Engine/CSG/CSGMesh.Build.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGMesh.h" diff --git a/Source/Engine/CSG/CSGMesh.Split.cpp b/Source/Engine/CSG/CSGMesh.Split.cpp index 99eaf5096..7e114c3cf 100644 --- a/Source/Engine/CSG/CSGMesh.Split.cpp +++ b/Source/Engine/CSG/CSGMesh.Split.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGMesh.h" diff --git a/Source/Engine/CSG/CSGMesh.Triangulate.cpp b/Source/Engine/CSG/CSGMesh.Triangulate.cpp index a725b241f..ffec28d79 100644 --- a/Source/Engine/CSG/CSGMesh.Triangulate.cpp +++ b/Source/Engine/CSG/CSGMesh.Triangulate.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGMesh.h" diff --git a/Source/Engine/CSG/CSGMesh.cpp b/Source/Engine/CSG/CSGMesh.cpp index 72235f71a..f080494e4 100644 --- a/Source/Engine/CSG/CSGMesh.cpp +++ b/Source/Engine/CSG/CSGMesh.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CSGMesh.h" diff --git a/Source/Engine/CSG/CSGMesh.h b/Source/Engine/CSG/CSGMesh.h index c9ba3510d..545c41ea3 100644 --- a/Source/Engine/CSG/CSGMesh.h +++ b/Source/Engine/CSG/CSGMesh.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/HalfEdge.h b/Source/Engine/CSG/HalfEdge.h index 25607d103..367c7ad97 100644 --- a/Source/Engine/CSG/HalfEdge.h +++ b/Source/Engine/CSG/HalfEdge.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/Polygon.h b/Source/Engine/CSG/Polygon.h index c5fe1da02..6c32a5769 100644 --- a/Source/Engine/CSG/Polygon.h +++ b/Source/Engine/CSG/Polygon.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/CSG/Types.h b/Source/Engine/CSG/Types.h index d955f6734..7ccd9a098 100644 --- a/Source/Engine/CSG/Types.h +++ b/Source/Engine/CSG/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Asset.cpp b/Source/Engine/Content/Asset.cpp index 842f76ff8..6d739c331 100644 --- a/Source/Engine/Content/Asset.cpp +++ b/Source/Engine/Content/Asset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Asset.h" #include "Content.h" diff --git a/Source/Engine/Content/Asset.cs b/Source/Engine/Content/Asset.cs index 59b78feb0..053d15433 100644 --- a/Source/Engine/Content/Asset.cs +++ b/Source/Engine/Content/Asset.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Content/Asset.h b/Source/Engine/Content/Asset.h index 6039b6b3a..32cc218b0 100644 --- a/Source/Engine/Content/Asset.h +++ b/Source/Engine/Content/Asset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/AssetInfo.h b/Source/Engine/Content/AssetInfo.h index 7cb44b0f8..bc950323e 100644 --- a/Source/Engine/Content/AssetInfo.h +++ b/Source/Engine/Content/AssetInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/AssetReference.h b/Source/Engine/Content/AssetReference.h index fc347585f..ee710539d 100644 --- a/Source/Engine/Content/AssetReference.h +++ b/Source/Engine/Content/AssetReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/Animation.cpp b/Source/Engine/Content/Assets/Animation.cpp index e6d39e684..cbd57ad5d 100644 --- a/Source/Engine/Content/Assets/Animation.cpp +++ b/Source/Engine/Content/Assets/Animation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Animation.h" #include "SkinnedModel.h" diff --git a/Source/Engine/Content/Assets/Animation.h b/Source/Engine/Content/Assets/Animation.h index 826f60c1d..6aa8d32ad 100644 --- a/Source/Engine/Content/Assets/Animation.h +++ b/Source/Engine/Content/Assets/Animation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/AnimationGraph.cpp b/Source/Engine/Content/Assets/AnimationGraph.cpp index e5a40e8cf..fe87abfe4 100644 --- a/Source/Engine/Content/Assets/AnimationGraph.cpp +++ b/Source/Engine/Content/Assets/AnimationGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimationGraph.h" #if USE_EDITOR diff --git a/Source/Engine/Content/Assets/AnimationGraph.h b/Source/Engine/Content/Assets/AnimationGraph.h index 266cf4855..f378b9bbe 100644 --- a/Source/Engine/Content/Assets/AnimationGraph.h +++ b/Source/Engine/Content/Assets/AnimationGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/AnimationGraphFunction.cpp b/Source/Engine/Content/Assets/AnimationGraphFunction.cpp index c0383a32a..aa043617c 100644 --- a/Source/Engine/Content/Assets/AnimationGraphFunction.cpp +++ b/Source/Engine/Content/Assets/AnimationGraphFunction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimationGraphFunction.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/AnimationGraphFunction.h b/Source/Engine/Content/Assets/AnimationGraphFunction.h index b9a73a8b6..b571a2916 100644 --- a/Source/Engine/Content/Assets/AnimationGraphFunction.h +++ b/Source/Engine/Content/Assets/AnimationGraphFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/CubeTexture.cpp b/Source/Engine/Content/Assets/CubeTexture.cpp index 32d76db7a..d3332676b 100644 --- a/Source/Engine/Content/Assets/CubeTexture.cpp +++ b/Source/Engine/Content/Assets/CubeTexture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CubeTexture.h" #include "Engine/Content/Factories/BinaryAssetFactory.h" diff --git a/Source/Engine/Content/Assets/CubeTexture.h b/Source/Engine/Content/Assets/CubeTexture.h index 18aa10470..4bff4c99f 100644 --- a/Source/Engine/Content/Assets/CubeTexture.h +++ b/Source/Engine/Content/Assets/CubeTexture.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/IESProfile.cpp b/Source/Engine/Content/Assets/IESProfile.cpp index ff30e99e7..7f76f612e 100644 --- a/Source/Engine/Content/Assets/IESProfile.cpp +++ b/Source/Engine/Content/Assets/IESProfile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "IESProfile.h" #include "Engine/Content/Factories/BinaryAssetFactory.h" diff --git a/Source/Engine/Content/Assets/IESProfile.h b/Source/Engine/Content/Assets/IESProfile.h index f740966a8..f98d0a79e 100644 --- a/Source/Engine/Content/Assets/IESProfile.h +++ b/Source/Engine/Content/Assets/IESProfile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/Material.cpp b/Source/Engine/Content/Assets/Material.cpp index 51eb8ba57..fffced71a 100644 --- a/Source/Engine/Content/Assets/Material.cpp +++ b/Source/Engine/Content/Assets/Material.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Material.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/Material.h b/Source/Engine/Content/Assets/Material.h index 54fa0251f..05862f8bf 100644 --- a/Source/Engine/Content/Assets/Material.h +++ b/Source/Engine/Content/Assets/Material.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/MaterialBase.cpp b/Source/Engine/Content/Assets/MaterialBase.cpp index f5a100f4e..bf7ad6e5e 100644 --- a/Source/Engine/Content/Assets/MaterialBase.cpp +++ b/Source/Engine/Content/Assets/MaterialBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialBase.h" #include "MaterialInstance.h" diff --git a/Source/Engine/Content/Assets/MaterialBase.h b/Source/Engine/Content/Assets/MaterialBase.h index 26f691571..bca70b6da 100644 --- a/Source/Engine/Content/Assets/MaterialBase.h +++ b/Source/Engine/Content/Assets/MaterialBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/MaterialFunction.cpp b/Source/Engine/Content/Assets/MaterialFunction.cpp index caa909b01..1d951848f 100644 --- a/Source/Engine/Content/Assets/MaterialFunction.cpp +++ b/Source/Engine/Content/Assets/MaterialFunction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialFunction.h" #include "Engine/Threading/Threading.h" diff --git a/Source/Engine/Content/Assets/MaterialFunction.h b/Source/Engine/Content/Assets/MaterialFunction.h index e53d2cd3d..949de8d0b 100644 --- a/Source/Engine/Content/Assets/MaterialFunction.h +++ b/Source/Engine/Content/Assets/MaterialFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/MaterialInstance.cpp b/Source/Engine/Content/Assets/MaterialInstance.cpp index e1b3383d0..d7f5427df 100644 --- a/Source/Engine/Content/Assets/MaterialInstance.cpp +++ b/Source/Engine/Content/Assets/MaterialInstance.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialInstance.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/MaterialInstance.h b/Source/Engine/Content/Assets/MaterialInstance.h index 3b06c6f75..03a41ab71 100644 --- a/Source/Engine/Content/Assets/MaterialInstance.h +++ b/Source/Engine/Content/Assets/MaterialInstance.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/Model.cpp b/Source/Engine/Content/Assets/Model.cpp index c6cdec6b5..147b6dcf1 100644 --- a/Source/Engine/Content/Assets/Model.cpp +++ b/Source/Engine/Content/Assets/Model.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Model.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/Model.h b/Source/Engine/Content/Assets/Model.h index ffc63e31d..bd9815f72 100644 --- a/Source/Engine/Content/Assets/Model.h +++ b/Source/Engine/Content/Assets/Model.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/ModelBase.h b/Source/Engine/Content/Assets/ModelBase.h index 75b0d83a1..84fbf9abf 100644 --- a/Source/Engine/Content/Assets/ModelBase.h +++ b/Source/Engine/Content/Assets/ModelBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/RawDataAsset.cpp b/Source/Engine/Content/Assets/RawDataAsset.cpp index 1b39572e4..6528fd890 100644 --- a/Source/Engine/Content/Assets/RawDataAsset.cpp +++ b/Source/Engine/Content/Assets/RawDataAsset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RawDataAsset.h" #include "Engine/Content/Factories/BinaryAssetFactory.h" diff --git a/Source/Engine/Content/Assets/RawDataAsset.h b/Source/Engine/Content/Assets/RawDataAsset.h index 2558426e9..8507d395a 100644 --- a/Source/Engine/Content/Assets/RawDataAsset.h +++ b/Source/Engine/Content/Assets/RawDataAsset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/Shader.cpp b/Source/Engine/Content/Assets/Shader.cpp index 0f30208ff..15430126f 100644 --- a/Source/Engine/Content/Assets/Shader.cpp +++ b/Source/Engine/Content/Assets/Shader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Shader.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/Shader.h b/Source/Engine/Content/Assets/Shader.h index ce1a47076..44a75bcdc 100644 --- a/Source/Engine/Content/Assets/Shader.h +++ b/Source/Engine/Content/Assets/Shader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/SkeletonMask.cpp b/Source/Engine/Content/Assets/SkeletonMask.cpp index f1d9878a0..c4a5be8c4 100644 --- a/Source/Engine/Content/Assets/SkeletonMask.cpp +++ b/Source/Engine/Content/Assets/SkeletonMask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkeletonMask.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/SkeletonMask.h b/Source/Engine/Content/Assets/SkeletonMask.h index c41b8eeda..6eaf71632 100644 --- a/Source/Engine/Content/Assets/SkeletonMask.h +++ b/Source/Engine/Content/Assets/SkeletonMask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/SkinnedModel.cpp b/Source/Engine/Content/Assets/SkinnedModel.cpp index 9f6bc29b3..5c41812ef 100644 --- a/Source/Engine/Content/Assets/SkinnedModel.cpp +++ b/Source/Engine/Content/Assets/SkinnedModel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkinnedModel.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/SkinnedModel.h b/Source/Engine/Content/Assets/SkinnedModel.h index 84b6bb859..9af80fb51 100644 --- a/Source/Engine/Content/Assets/SkinnedModel.h +++ b/Source/Engine/Content/Assets/SkinnedModel.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/Texture.cpp b/Source/Engine/Content/Assets/Texture.cpp index c3ac7990e..33154fae8 100644 --- a/Source/Engine/Content/Assets/Texture.cpp +++ b/Source/Engine/Content/Assets/Texture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Texture.h" #include "Engine/Content/Content.h" diff --git a/Source/Engine/Content/Assets/Texture.h b/Source/Engine/Content/Assets/Texture.h index 78b6414e8..3d82fa0ba 100644 --- a/Source/Engine/Content/Assets/Texture.h +++ b/Source/Engine/Content/Assets/Texture.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Assets/VisualScript.cpp b/Source/Engine/Content/Assets/VisualScript.cpp index fa990d25b..932a611da 100644 --- a/Source/Engine/Content/Assets/VisualScript.cpp +++ b/Source/Engine/Content/Assets/VisualScript.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VisualScript.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Content/Assets/VisualScript.h b/Source/Engine/Content/Assets/VisualScript.h index 8cea94cd4..71caaf37a 100644 --- a/Source/Engine/Content/Assets/VisualScript.h +++ b/Source/Engine/Content/Assets/VisualScript.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/AssetsContainer.h b/Source/Engine/Content/AssetsContainer.h index f33ef637a..c0492a633 100644 --- a/Source/Engine/Content/AssetsContainer.h +++ b/Source/Engine/Content/AssetsContainer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/BinaryAsset.cpp b/Source/Engine/Content/BinaryAsset.cpp index 3b268f72e..5a33d1f31 100644 --- a/Source/Engine/Content/BinaryAsset.cpp +++ b/Source/Engine/Content/BinaryAsset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BinaryAsset.h" #include "Cache/AssetsCache.h" diff --git a/Source/Engine/Content/BinaryAsset.h b/Source/Engine/Content/BinaryAsset.h index e98c645fe..b8654706f 100644 --- a/Source/Engine/Content/BinaryAsset.h +++ b/Source/Engine/Content/BinaryAsset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Config.h b/Source/Engine/Content/Config.h index 6f5f84501..daa2d7bc4 100644 --- a/Source/Engine/Content/Config.h +++ b/Source/Engine/Content/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Content.Build.cs b/Source/Engine/Content/Content.Build.cs index 501856f02..f89ad6277 100644 --- a/Source/Engine/Content/Content.Build.cs +++ b/Source/Engine/Content/Content.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Content/Content.cpp b/Source/Engine/Content/Content.cpp index e0910f48f..48f34c180 100644 --- a/Source/Engine/Content/Content.cpp +++ b/Source/Engine/Content/Content.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Content.h" #include "JsonAsset.h" diff --git a/Source/Engine/Content/Content.cs b/Source/Engine/Content/Content.cs index f0423222c..a75ebebfd 100644 --- a/Source/Engine/Content/Content.cs +++ b/Source/Engine/Content/Content.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Content/Content.h b/Source/Engine/Content/Content.h index 654ab6ac0..6393ce48b 100644 --- a/Source/Engine/Content/Content.h +++ b/Source/Engine/Content/Content.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Factories/BinaryAssetFactory.cpp b/Source/Engine/Content/Factories/BinaryAssetFactory.cpp index 38e61d1b3..23c321071 100644 --- a/Source/Engine/Content/Factories/BinaryAssetFactory.cpp +++ b/Source/Engine/Content/Factories/BinaryAssetFactory.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BinaryAssetFactory.h" #include "../BinaryAsset.h" diff --git a/Source/Engine/Content/Factories/BinaryAssetFactory.h b/Source/Engine/Content/Factories/BinaryAssetFactory.h index af6fb0e2f..f707032eb 100644 --- a/Source/Engine/Content/Factories/BinaryAssetFactory.h +++ b/Source/Engine/Content/Factories/BinaryAssetFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Factories/IAssetFactory.h b/Source/Engine/Content/Factories/IAssetFactory.h index 7f6564ba7..e7417c9dd 100644 --- a/Source/Engine/Content/Factories/IAssetFactory.h +++ b/Source/Engine/Content/Factories/IAssetFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Factories/JsonAssetFactory.h b/Source/Engine/Content/Factories/JsonAssetFactory.h index aeb3b5fa8..86a92165a 100644 --- a/Source/Engine/Content/Factories/JsonAssetFactory.h +++ b/Source/Engine/Content/Factories/JsonAssetFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/JsonAsset.cpp b/Source/Engine/Content/JsonAsset.cpp index af49094bc..9119d43bd 100644 --- a/Source/Engine/Content/JsonAsset.cpp +++ b/Source/Engine/Content/JsonAsset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "JsonAsset.h" #include "Engine/Threading/Threading.h" diff --git a/Source/Engine/Content/JsonAsset.cs b/Source/Engine/Content/JsonAsset.cs index dda7bd879..9d1171b54 100644 --- a/Source/Engine/Content/JsonAsset.cs +++ b/Source/Engine/Content/JsonAsset.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.Json; diff --git a/Source/Engine/Content/JsonAsset.h b/Source/Engine/Content/JsonAsset.h index 7aa794ed8..3326b215d 100644 --- a/Source/Engine/Content/JsonAsset.h +++ b/Source/Engine/Content/JsonAsset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Loading/ContentLoadTask.h b/Source/Engine/Content/Loading/ContentLoadTask.h index c36438ccc..576cde379 100644 --- a/Source/Engine/Content/Loading/ContentLoadTask.h +++ b/Source/Engine/Content/Loading/ContentLoadTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Loading/ContentLoadingManager.cpp b/Source/Engine/Content/Loading/ContentLoadingManager.cpp index dedb2761f..16f962243 100644 --- a/Source/Engine/Content/Loading/ContentLoadingManager.cpp +++ b/Source/Engine/Content/Loading/ContentLoadingManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ContentLoadingManager.h" #include "ContentLoadTask.h" diff --git a/Source/Engine/Content/Loading/ContentLoadingManager.h b/Source/Engine/Content/Loading/ContentLoadingManager.h index 51ea7f6dd..f6c9c13ff 100644 --- a/Source/Engine/Content/Loading/ContentLoadingManager.h +++ b/Source/Engine/Content/Loading/ContentLoadingManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Loading/Tasks/LoadAssetDataTask.h b/Source/Engine/Content/Loading/Tasks/LoadAssetDataTask.h index ce0455a42..23cf5f787 100644 --- a/Source/Engine/Content/Loading/Tasks/LoadAssetDataTask.h +++ b/Source/Engine/Content/Loading/Tasks/LoadAssetDataTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Loading/Tasks/LoadAssetTask.h b/Source/Engine/Content/Loading/Tasks/LoadAssetTask.h index fb8cdb3e2..911f44226 100644 --- a/Source/Engine/Content/Loading/Tasks/LoadAssetTask.h +++ b/Source/Engine/Content/Loading/Tasks/LoadAssetTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/MaterialBase.cs b/Source/Engine/Content/MaterialBase.cs index 8cb6b8d67..011cfefaf 100644 --- a/Source/Engine/Content/MaterialBase.cs +++ b/Source/Engine/Content/MaterialBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Content/SkinnedModel.cs b/Source/Engine/Content/SkinnedModel.cs index eeadedcaa..d198a246a 100644 --- a/Source/Engine/Content/SkinnedModel.cs +++ b/Source/Engine/Content/SkinnedModel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Content/SoftAssetReference.h b/Source/Engine/Content/SoftAssetReference.h index dd1251d61..17b5b47cd 100644 --- a/Source/Engine/Content/SoftAssetReference.h +++ b/Source/Engine/Content/SoftAssetReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/AssetHeader.h b/Source/Engine/Content/Storage/AssetHeader.h index 1c7761e11..3c37ce35e 100644 --- a/Source/Engine/Content/Storage/AssetHeader.h +++ b/Source/Engine/Content/Storage/AssetHeader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/ContentStorageManager.cpp b/Source/Engine/Content/Storage/ContentStorageManager.cpp index 2f4bbd918..d3e18e9d0 100644 --- a/Source/Engine/Content/Storage/ContentStorageManager.cpp +++ b/Source/Engine/Content/Storage/ContentStorageManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ContentStorageManager.h" #include "FlaxFile.h" diff --git a/Source/Engine/Content/Storage/ContentStorageManager.h b/Source/Engine/Content/Storage/ContentStorageManager.h index 5cc38e212..c615632e9 100644 --- a/Source/Engine/Content/Storage/ContentStorageManager.h +++ b/Source/Engine/Content/Storage/ContentStorageManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/FlaxChunk.h b/Source/Engine/Content/Storage/FlaxChunk.h index 0aed68fc4..710540a02 100644 --- a/Source/Engine/Content/Storage/FlaxChunk.h +++ b/Source/Engine/Content/Storage/FlaxChunk.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/FlaxFile.h b/Source/Engine/Content/Storage/FlaxFile.h index 9af86da0d..fc41fe050 100644 --- a/Source/Engine/Content/Storage/FlaxFile.h +++ b/Source/Engine/Content/Storage/FlaxFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/FlaxPackage.h b/Source/Engine/Content/Storage/FlaxPackage.h index 4c468c925..ef3690bfb 100644 --- a/Source/Engine/Content/Storage/FlaxPackage.h +++ b/Source/Engine/Content/Storage/FlaxPackage.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/FlaxStorage.cpp b/Source/Engine/Content/Storage/FlaxStorage.cpp index a9798fb0c..1f4f0f778 100644 --- a/Source/Engine/Content/Storage/FlaxStorage.cpp +++ b/Source/Engine/Content/Storage/FlaxStorage.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FlaxStorage.h" #include "FlaxFile.h" diff --git a/Source/Engine/Content/Storage/FlaxStorage.h b/Source/Engine/Content/Storage/FlaxStorage.h index 01c7c7d32..85c9db072 100644 --- a/Source/Engine/Content/Storage/FlaxStorage.h +++ b/Source/Engine/Content/Storage/FlaxStorage.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/FlaxStorageReference.h b/Source/Engine/Content/Storage/FlaxStorageReference.h index aa4d91202..03f4d0c8d 100644 --- a/Source/Engine/Content/Storage/FlaxStorageReference.h +++ b/Source/Engine/Content/Storage/FlaxStorageReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Storage/JsonStorageProxy.cpp b/Source/Engine/Content/Storage/JsonStorageProxy.cpp index 45787011c..a934546ce 100644 --- a/Source/Engine/Content/Storage/JsonStorageProxy.cpp +++ b/Source/Engine/Content/Storage/JsonStorageProxy.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "JsonStorageProxy.h" #include "Engine/Platform/File.h" diff --git a/Source/Engine/Content/Storage/JsonStorageProxy.h b/Source/Engine/Content/Storage/JsonStorageProxy.h index 1af6c197f..f9665fe42 100644 --- a/Source/Engine/Content/Storage/JsonStorageProxy.h +++ b/Source/Engine/Content/Storage/JsonStorageProxy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Types.h b/Source/Engine/Content/Types.h index 8b59eb1fa..d929f3661 100644 --- a/Source/Engine/Content/Types.h +++ b/Source/Engine/Content/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/AudioClipUpgrader.h b/Source/Engine/Content/Upgraders/AudioClipUpgrader.h index 730e93ef6..46d3519e6 100644 --- a/Source/Engine/Content/Upgraders/AudioClipUpgrader.h +++ b/Source/Engine/Content/Upgraders/AudioClipUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/BinaryAssetUpgrader.h b/Source/Engine/Content/Upgraders/BinaryAssetUpgrader.h index ba275337e..66b41152d 100644 --- a/Source/Engine/Content/Upgraders/BinaryAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/BinaryAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/FontAssetUpgrader.h b/Source/Engine/Content/Upgraders/FontAssetUpgrader.h index b607acade..383b4e6cb 100644 --- a/Source/Engine/Content/Upgraders/FontAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/FontAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/IAssetUpgrader.h b/Source/Engine/Content/Upgraders/IAssetUpgrader.h index 97179d494..137e299c5 100644 --- a/Source/Engine/Content/Upgraders/IAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/IAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/MaterialInstanceUpgrader.h b/Source/Engine/Content/Upgraders/MaterialInstanceUpgrader.h index c8796cb04..7d64b1d23 100644 --- a/Source/Engine/Content/Upgraders/MaterialInstanceUpgrader.h +++ b/Source/Engine/Content/Upgraders/MaterialInstanceUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/ModelAssetUpgrader.h b/Source/Engine/Content/Upgraders/ModelAssetUpgrader.h index 135696b9a..ccf97e6b6 100644 --- a/Source/Engine/Content/Upgraders/ModelAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/ModelAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/ShaderAssetUpgrader.h b/Source/Engine/Content/Upgraders/ShaderAssetUpgrader.h index 8d26c9ccd..9562ad951 100644 --- a/Source/Engine/Content/Upgraders/ShaderAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/ShaderAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/SkeletonMaskUpgrader.h b/Source/Engine/Content/Upgraders/SkeletonMaskUpgrader.h index 9cf2bf08e..fecd103a7 100644 --- a/Source/Engine/Content/Upgraders/SkeletonMaskUpgrader.h +++ b/Source/Engine/Content/Upgraders/SkeletonMaskUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/SkinnedModelAssetUpgrader.h b/Source/Engine/Content/Upgraders/SkinnedModelAssetUpgrader.h index 4b1bfaf30..036290f4c 100644 --- a/Source/Engine/Content/Upgraders/SkinnedModelAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/SkinnedModelAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/Upgraders/TextureAssetUpgrader.h b/Source/Engine/Content/Upgraders/TextureAssetUpgrader.h index 68e413159..b3ab19c51 100644 --- a/Source/Engine/Content/Upgraders/TextureAssetUpgrader.h +++ b/Source/Engine/Content/Upgraders/TextureAssetUpgrader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Content/WeakAssetReference.h b/Source/Engine/Content/WeakAssetReference.h index 7e756211a..5a46d7515 100644 --- a/Source/Engine/Content/WeakAssetReference.h +++ b/Source/Engine/Content/WeakAssetReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentExporters/AssetExporters.h b/Source/Engine/ContentExporters/AssetExporters.h index 28e98cd1f..3e5a1e9db 100644 --- a/Source/Engine/ContentExporters/AssetExporters.h +++ b/Source/Engine/ContentExporters/AssetExporters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentExporters/AssetsExportingManager.cpp b/Source/Engine/ContentExporters/AssetsExportingManager.cpp index fcb8a88d9..b33d33914 100644 --- a/Source/Engine/ContentExporters/AssetsExportingManager.cpp +++ b/Source/Engine/ContentExporters/AssetsExportingManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_ASSETS_EXPORTER diff --git a/Source/Engine/ContentExporters/AssetsExportingManager.h b/Source/Engine/ContentExporters/AssetsExportingManager.h index bd87220cb..f9f50075e 100644 --- a/Source/Engine/ContentExporters/AssetsExportingManager.h +++ b/Source/Engine/ContentExporters/AssetsExportingManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentExporters/ContentExporters.Build.cs b/Source/Engine/ContentExporters/ContentExporters.Build.cs index fc7b1acc3..6721d43a9 100644 --- a/Source/Engine/ContentExporters/ContentExporters.Build.cs +++ b/Source/Engine/ContentExporters/ContentExporters.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/ContentExporters/ExportAudio.cpp b/Source/Engine/ContentExporters/ExportAudio.cpp index de5c3915d..fd9813479 100644 --- a/Source/Engine/ContentExporters/ExportAudio.cpp +++ b/Source/Engine/ContentExporters/ExportAudio.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AssetExporters.h" diff --git a/Source/Engine/ContentExporters/ExportModel.cpp b/Source/Engine/ContentExporters/ExportModel.cpp index e16d0d131..0f10d6d5a 100644 --- a/Source/Engine/ContentExporters/ExportModel.cpp +++ b/Source/Engine/ContentExporters/ExportModel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AssetExporters.h" diff --git a/Source/Engine/ContentExporters/ExportTexture.cpp b/Source/Engine/ContentExporters/ExportTexture.cpp index dd97739b3..7ef5bf627 100644 --- a/Source/Engine/ContentExporters/ExportTexture.cpp +++ b/Source/Engine/ContentExporters/ExportTexture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_ASSETS_EXPORTER diff --git a/Source/Engine/ContentExporters/Types.h b/Source/Engine/ContentExporters/Types.h index 8d520aefb..cfc341f37 100644 --- a/Source/Engine/ContentExporters/Types.h +++ b/Source/Engine/ContentExporters/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/AssetsImportingManager.cpp b/Source/Engine/ContentImporters/AssetsImportingManager.cpp index 9c654aada..81f654da5 100644 --- a/Source/Engine/ContentImporters/AssetsImportingManager.cpp +++ b/Source/Engine/ContentImporters/AssetsImportingManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_ASSETS_IMPORTER diff --git a/Source/Engine/ContentImporters/AssetsImportingManager.h b/Source/Engine/ContentImporters/AssetsImportingManager.h index 0ec23d6bb..344ff2c33 100644 --- a/Source/Engine/ContentImporters/AssetsImportingManager.h +++ b/Source/Engine/ContentImporters/AssetsImportingManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ContentImporters.Build.cs b/Source/Engine/ContentImporters/ContentImporters.Build.cs index 757982886..8c4614cd5 100644 --- a/Source/Engine/ContentImporters/ContentImporters.Build.cs +++ b/Source/Engine/ContentImporters/ContentImporters.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/ContentImporters/CreateAnimation.h b/Source/Engine/ContentImporters/CreateAnimation.h index 1f708d9b6..94f02ca8e 100644 --- a/Source/Engine/ContentImporters/CreateAnimation.h +++ b/Source/Engine/ContentImporters/CreateAnimation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateAnimationGraph.cpp b/Source/Engine/ContentImporters/CreateAnimationGraph.cpp index b4450ef09..695e5c2a7 100644 --- a/Source/Engine/ContentImporters/CreateAnimationGraph.cpp +++ b/Source/Engine/ContentImporters/CreateAnimationGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CreateAnimationGraph.h" diff --git a/Source/Engine/ContentImporters/CreateAnimationGraph.h b/Source/Engine/ContentImporters/CreateAnimationGraph.h index 785839aa8..763ed5a68 100644 --- a/Source/Engine/ContentImporters/CreateAnimationGraph.h +++ b/Source/Engine/ContentImporters/CreateAnimationGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateAnimationGraphFunction.h b/Source/Engine/ContentImporters/CreateAnimationGraphFunction.h index 2dd47b62f..d0fc31304 100644 --- a/Source/Engine/ContentImporters/CreateAnimationGraphFunction.h +++ b/Source/Engine/ContentImporters/CreateAnimationGraphFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateCollisionData.cpp b/Source/Engine/ContentImporters/CreateCollisionData.cpp index f90633f99..a7bb48cda 100644 --- a/Source/Engine/ContentImporters/CreateCollisionData.cpp +++ b/Source/Engine/ContentImporters/CreateCollisionData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CreateCollisionData.h" diff --git a/Source/Engine/ContentImporters/CreateCollisionData.h b/Source/Engine/ContentImporters/CreateCollisionData.h index b29a61198..7fefbea12 100644 --- a/Source/Engine/ContentImporters/CreateCollisionData.h +++ b/Source/Engine/ContentImporters/CreateCollisionData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateJson.cpp b/Source/Engine/ContentImporters/CreateJson.cpp index d7a561758..ed4926505 100644 --- a/Source/Engine/ContentImporters/CreateJson.cpp +++ b/Source/Engine/ContentImporters/CreateJson.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CreateJson.h" diff --git a/Source/Engine/ContentImporters/CreateJson.h b/Source/Engine/ContentImporters/CreateJson.h index 5622c5746..c3a3da58d 100644 --- a/Source/Engine/ContentImporters/CreateJson.h +++ b/Source/Engine/ContentImporters/CreateJson.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateMaterial.cpp b/Source/Engine/ContentImporters/CreateMaterial.cpp index 7e6df3c0c..fb16b89ee 100644 --- a/Source/Engine/ContentImporters/CreateMaterial.cpp +++ b/Source/Engine/ContentImporters/CreateMaterial.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CreateMaterial.h" diff --git a/Source/Engine/ContentImporters/CreateMaterial.h b/Source/Engine/ContentImporters/CreateMaterial.h index ee0e1095d..3f6a2ff7f 100644 --- a/Source/Engine/ContentImporters/CreateMaterial.h +++ b/Source/Engine/ContentImporters/CreateMaterial.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateMaterialFunction.h b/Source/Engine/ContentImporters/CreateMaterialFunction.h index 8e407deb8..27c220328 100644 --- a/Source/Engine/ContentImporters/CreateMaterialFunction.h +++ b/Source/Engine/ContentImporters/CreateMaterialFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateMaterialInstance.h b/Source/Engine/ContentImporters/CreateMaterialInstance.h index c2d5097e1..25e6c8727 100644 --- a/Source/Engine/ContentImporters/CreateMaterialInstance.h +++ b/Source/Engine/ContentImporters/CreateMaterialInstance.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateParticleEmitter.h b/Source/Engine/ContentImporters/CreateParticleEmitter.h index 60928e563..92410ab03 100644 --- a/Source/Engine/ContentImporters/CreateParticleEmitter.h +++ b/Source/Engine/ContentImporters/CreateParticleEmitter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateParticleEmitterFunction.h b/Source/Engine/ContentImporters/CreateParticleEmitterFunction.h index d66699ab8..7df0fd266 100644 --- a/Source/Engine/ContentImporters/CreateParticleEmitterFunction.h +++ b/Source/Engine/ContentImporters/CreateParticleEmitterFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateParticleSystem.h b/Source/Engine/ContentImporters/CreateParticleSystem.h index deb04f593..b89309e8d 100644 --- a/Source/Engine/ContentImporters/CreateParticleSystem.h +++ b/Source/Engine/ContentImporters/CreateParticleSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateRawData.h b/Source/Engine/ContentImporters/CreateRawData.h index 1c845c778..66bb7a595 100644 --- a/Source/Engine/ContentImporters/CreateRawData.h +++ b/Source/Engine/ContentImporters/CreateRawData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateSceneAnimation.h b/Source/Engine/ContentImporters/CreateSceneAnimation.h index 6624c0ff6..5bb986cac 100644 --- a/Source/Engine/ContentImporters/CreateSceneAnimation.h +++ b/Source/Engine/ContentImporters/CreateSceneAnimation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateSkeletonMask.h b/Source/Engine/ContentImporters/CreateSkeletonMask.h index 4bfebadb2..538f6d566 100644 --- a/Source/Engine/ContentImporters/CreateSkeletonMask.h +++ b/Source/Engine/ContentImporters/CreateSkeletonMask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/CreateVisualScript.h b/Source/Engine/ContentImporters/CreateVisualScript.h index d40889908..f2c4ef38c 100644 --- a/Source/Engine/ContentImporters/CreateVisualScript.h +++ b/Source/Engine/ContentImporters/CreateVisualScript.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportAudio.cpp b/Source/Engine/ContentImporters/ImportAudio.cpp index 024a907a5..6fa19a15b 100644 --- a/Source/Engine/ContentImporters/ImportAudio.cpp +++ b/Source/Engine/ContentImporters/ImportAudio.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ImportAudio.h" diff --git a/Source/Engine/ContentImporters/ImportAudio.h b/Source/Engine/ContentImporters/ImportAudio.h index d269e6851..77861a177 100644 --- a/Source/Engine/ContentImporters/ImportAudio.h +++ b/Source/Engine/ContentImporters/ImportAudio.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportFont.cpp b/Source/Engine/ContentImporters/ImportFont.cpp index a7e3f176f..9748dfaa7 100644 --- a/Source/Engine/ContentImporters/ImportFont.cpp +++ b/Source/Engine/ContentImporters/ImportFont.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ImportFont.h" diff --git a/Source/Engine/ContentImporters/ImportFont.h b/Source/Engine/ContentImporters/ImportFont.h index b067f4f6b..c09c7c349 100644 --- a/Source/Engine/ContentImporters/ImportFont.h +++ b/Source/Engine/ContentImporters/ImportFont.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportIES.cpp b/Source/Engine/ContentImporters/ImportIES.cpp index 49f100339..dc4b7b887 100644 --- a/Source/Engine/ContentImporters/ImportIES.cpp +++ b/Source/Engine/ContentImporters/ImportIES.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_ASSETS_IMPORTER diff --git a/Source/Engine/ContentImporters/ImportIES.h b/Source/Engine/ContentImporters/ImportIES.h index 5060626a7..eec2433e3 100644 --- a/Source/Engine/ContentImporters/ImportIES.h +++ b/Source/Engine/ContentImporters/ImportIES.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportModel.h b/Source/Engine/ContentImporters/ImportModel.h index 098805a20..6a39d0bb3 100644 --- a/Source/Engine/ContentImporters/ImportModel.h +++ b/Source/Engine/ContentImporters/ImportModel.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportModelFile.cpp b/Source/Engine/ContentImporters/ImportModelFile.cpp index cd56f0025..8851ee4ce 100644 --- a/Source/Engine/ContentImporters/ImportModelFile.cpp +++ b/Source/Engine/ContentImporters/ImportModelFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ImportModel.h" diff --git a/Source/Engine/ContentImporters/ImportModelFile.h b/Source/Engine/ContentImporters/ImportModelFile.h index c4e9102c8..a40109601 100644 --- a/Source/Engine/ContentImporters/ImportModelFile.h +++ b/Source/Engine/ContentImporters/ImportModelFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportShader.cpp b/Source/Engine/ContentImporters/ImportShader.cpp index c6394c91b..9cfb1242c 100644 --- a/Source/Engine/ContentImporters/ImportShader.cpp +++ b/Source/Engine/ContentImporters/ImportShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ImportShader.h" diff --git a/Source/Engine/ContentImporters/ImportShader.h b/Source/Engine/ContentImporters/ImportShader.h index 00b178b53..0a0ba390e 100644 --- a/Source/Engine/ContentImporters/ImportShader.h +++ b/Source/Engine/ContentImporters/ImportShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/ImportTexture.cpp b/Source/Engine/ContentImporters/ImportTexture.cpp index 6e4180c47..45951a74f 100644 --- a/Source/Engine/ContentImporters/ImportTexture.cpp +++ b/Source/Engine/ContentImporters/ImportTexture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ImportTexture.h" diff --git a/Source/Engine/ContentImporters/ImportTexture.h b/Source/Engine/ContentImporters/ImportTexture.h index 2328979f9..a6ccad5cd 100644 --- a/Source/Engine/ContentImporters/ImportTexture.h +++ b/Source/Engine/ContentImporters/ImportTexture.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ContentImporters/Types.h b/Source/Engine/ContentImporters/Types.h index 9ae577400..05d1fc116 100644 --- a/Source/Engine/ContentImporters/Types.h +++ b/Source/Engine/ContentImporters/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Cache.cpp b/Source/Engine/Core/Cache.cpp index e37817af0..25f4066a8 100644 --- a/Source/Engine/Core/Cache.cpp +++ b/Source/Engine/Core/Cache.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Cache.h" #include "FlaxEngine.Gen.h" diff --git a/Source/Engine/Core/Cache.h b/Source/Engine/Core/Cache.h index 81f205f69..b212f0064 100644 --- a/Source/Engine/Core/Cache.h +++ b/Source/Engine/Core/Cache.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/Array.h b/Source/Engine/Core/Collections/Array.h index d5d93495f..e569666f0 100644 --- a/Source/Engine/Core/Collections/Array.h +++ b/Source/Engine/Core/Collections/Array.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/ArrayExtensions.h b/Source/Engine/Core/Collections/ArrayExtensions.h index d83238f5e..788b31edb 100644 --- a/Source/Engine/Core/Collections/ArrayExtensions.h +++ b/Source/Engine/Core/Collections/ArrayExtensions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/BitArray.h b/Source/Engine/Core/Collections/BitArray.h index 660b1e0fe..6b5385573 100644 --- a/Source/Engine/Core/Collections/BitArray.h +++ b/Source/Engine/Core/Collections/BitArray.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/ChunkedArray.h b/Source/Engine/Core/Collections/ChunkedArray.h index 89c2bfe64..4ba457490 100644 --- a/Source/Engine/Core/Collections/ChunkedArray.h +++ b/Source/Engine/Core/Collections/ChunkedArray.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/CircularBuffer.cs b/Source/Engine/Core/Collections/CircularBuffer.cs index 8dee714c1..377f651f0 100644 --- a/Source/Engine/Core/Collections/CircularBuffer.cs +++ b/Source/Engine/Core/Collections/CircularBuffer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Engine/Core/Collections/CollectionPoolCache.h b/Source/Engine/Core/Collections/CollectionPoolCache.h index 490794ec7..815955028 100644 --- a/Source/Engine/Core/Collections/CollectionPoolCache.h +++ b/Source/Engine/Core/Collections/CollectionPoolCache.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/Config.h b/Source/Engine/Core/Collections/Config.h index 47306117c..792ae57c8 100644 --- a/Source/Engine/Core/Collections/Config.h +++ b/Source/Engine/Core/Collections/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/Dictionary.h b/Source/Engine/Core/Collections/Dictionary.h index 4b3d35d58..abd64d528 100644 --- a/Source/Engine/Core/Collections/Dictionary.h +++ b/Source/Engine/Core/Collections/Dictionary.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/HashFunctions.h b/Source/Engine/Core/Collections/HashFunctions.h index 8587f0e03..345a50ec6 100644 --- a/Source/Engine/Core/Collections/HashFunctions.h +++ b/Source/Engine/Core/Collections/HashFunctions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/HashSet.h b/Source/Engine/Core/Collections/HashSet.h index 855f124da..95138640c 100644 --- a/Source/Engine/Core/Collections/HashSet.h +++ b/Source/Engine/Core/Collections/HashSet.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/IOrderedDictionary.cs b/Source/Engine/Core/Collections/IOrderedDictionary.cs index a41457d15..1537258f2 100644 --- a/Source/Engine/Core/Collections/IOrderedDictionary.cs +++ b/Source/Engine/Core/Collections/IOrderedDictionary.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Collections.Specialized; diff --git a/Source/Engine/Core/Collections/OrderedDictionary.cs b/Source/Engine/Core/Collections/OrderedDictionary.cs index d59b6de8e..4dee247a2 100644 --- a/Source/Engine/Core/Collections/OrderedDictionary.cs +++ b/Source/Engine/Core/Collections/OrderedDictionary.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Engine/Core/Collections/RingBuffer.h b/Source/Engine/Core/Collections/RingBuffer.h index 27edc59cc..4b4303b17 100644 --- a/Source/Engine/Core/Collections/RingBuffer.h +++ b/Source/Engine/Core/Collections/RingBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/SamplesBuffer.h b/Source/Engine/Core/Collections/SamplesBuffer.h index 2d6d1e27b..5b8464a8c 100644 --- a/Source/Engine/Core/Collections/SamplesBuffer.h +++ b/Source/Engine/Core/Collections/SamplesBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Collections/Sorting.cpp b/Source/Engine/Core/Collections/Sorting.cpp index 9d04b7dc2..49ce0f3d4 100644 --- a/Source/Engine/Core/Collections/Sorting.cpp +++ b/Source/Engine/Core/Collections/Sorting.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Sorting.h" #include "Engine/Core/Memory/Memory.h" diff --git a/Source/Engine/Core/Collections/Sorting.h b/Source/Engine/Core/Collections/Sorting.h index 34c0e8240..2210f6f1c 100644 --- a/Source/Engine/Core/Collections/Sorting.h +++ b/Source/Engine/Core/Collections/Sorting.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Common.h b/Source/Engine/Core/Common.h index 4ae7eb4cc..8803e04f1 100644 --- a/Source/Engine/Core/Common.h +++ b/Source/Engine/Core/Common.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Compiler.h b/Source/Engine/Core/Compiler.h index fa6b77d05..9a33b8758 100644 --- a/Source/Engine/Core/Compiler.h +++ b/Source/Engine/Core/Compiler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config.h b/Source/Engine/Core/Config.h index 7a514be27..f3a2ba4be 100644 --- a/Source/Engine/Core/Config.h +++ b/Source/Engine/Core/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/BuildSettings.cs b/Source/Engine/Core/Config/BuildSettings.cs index cb5fefc79..ee761c260 100644 --- a/Source/Engine/Core/Config/BuildSettings.cs +++ b/Source/Engine/Core/Config/BuildSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Engine/Core/Config/BuildSettings.h b/Source/Engine/Core/Config/BuildSettings.h index 471818ddc..077112d96 100644 --- a/Source/Engine/Core/Config/BuildSettings.h +++ b/Source/Engine/Core/Config/BuildSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/GameSettings.cpp b/Source/Engine/Core/Config/GameSettings.cpp index 66004afd9..9c639032f 100644 --- a/Source/Engine/Core/Config/GameSettings.cpp +++ b/Source/Engine/Core/Config/GameSettings.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GameSettings.h" #include "Engine/Serialization/JsonTools.h" diff --git a/Source/Engine/Core/Config/GameSettings.cs b/Source/Engine/Core/Config/GameSettings.cs index 7e70f29bd..2f68d173e 100644 --- a/Source/Engine/Core/Config/GameSettings.cs +++ b/Source/Engine/Core/Config/GameSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Core/Config/GameSettings.h b/Source/Engine/Core/Config/GameSettings.h index fe2961430..a7c294477 100644 --- a/Source/Engine/Core/Config/GameSettings.h +++ b/Source/Engine/Core/Config/GameSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/GraphicsSettings.cpp b/Source/Engine/Core/Config/GraphicsSettings.cpp index d10df48d2..ad9128f2a 100644 --- a/Source/Engine/Core/Config/GraphicsSettings.cpp +++ b/Source/Engine/Core/Config/GraphicsSettings.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GraphicsSettings.h" #include "Engine/Graphics/Graphics.h" diff --git a/Source/Engine/Core/Config/GraphicsSettings.h b/Source/Engine/Core/Config/GraphicsSettings.h index 8099e8437..febba7eeb 100644 --- a/Source/Engine/Core/Config/GraphicsSettings.h +++ b/Source/Engine/Core/Config/GraphicsSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/LayersAndTagsSettings.cs b/Source/Engine/Core/Config/LayersAndTagsSettings.cs index 0396b7588..e6df9f3ba 100644 --- a/Source/Engine/Core/Config/LayersAndTagsSettings.cs +++ b/Source/Engine/Core/Config/LayersAndTagsSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Core/Config/LayersTagsSettings.h b/Source/Engine/Core/Config/LayersTagsSettings.h index 890a8391c..215fcf95d 100644 --- a/Source/Engine/Core/Config/LayersTagsSettings.h +++ b/Source/Engine/Core/Config/LayersTagsSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/PlatformSettings.h b/Source/Engine/Core/Config/PlatformSettings.h index 52d8c4e5a..ed26af514 100644 --- a/Source/Engine/Core/Config/PlatformSettings.h +++ b/Source/Engine/Core/Config/PlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/PlatformSettingsBase.h b/Source/Engine/Core/Config/PlatformSettingsBase.h index 849d20650..6d7e8601e 100644 --- a/Source/Engine/Core/Config/PlatformSettingsBase.h +++ b/Source/Engine/Core/Config/PlatformSettingsBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/Settings.h b/Source/Engine/Core/Config/Settings.h index 31af8d25a..55c133292 100644 --- a/Source/Engine/Core/Config/Settings.h +++ b/Source/Engine/Core/Config/Settings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Config/TimeSettings.h b/Source/Engine/Core/Config/TimeSettings.h index 9bdf5ea05..96f8720fc 100644 --- a/Source/Engine/Core/Config/TimeSettings.h +++ b/Source/Engine/Core/Config/TimeSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Core.Build.cs b/Source/Engine/Core/Core.Build.cs index 3d1db83c6..d4f875a26 100644 --- a/Source/Engine/Core/Core.Build.cs +++ b/Source/Engine/Core/Core.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Core/Core.h b/Source/Engine/Core/Core.h index 69612e010..efb0b6830 100644 --- a/Source/Engine/Core/Core.h +++ b/Source/Engine/Core/Core.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Delegate.h b/Source/Engine/Core/Delegate.h index 57d685031..571e217fd 100644 --- a/Source/Engine/Core/Delegate.h +++ b/Source/Engine/Core/Delegate.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/DeleteMe.h b/Source/Engine/Core/DeleteMe.h index 118ef08d0..611f6d99a 100644 --- a/Source/Engine/Core/DeleteMe.h +++ b/Source/Engine/Core/DeleteMe.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Encoding.h b/Source/Engine/Core/Encoding.h index 882c854e1..6ac716ba8 100644 --- a/Source/Engine/Core/Encoding.h +++ b/Source/Engine/Core/Encoding.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Enums.h b/Source/Engine/Core/Enums.h index a02c40cf5..e269c959a 100644 --- a/Source/Engine/Core/Enums.h +++ b/Source/Engine/Core/Enums.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Formatting.h b/Source/Engine/Core/Formatting.h index 4e85d21a5..bc2dc150b 100644 --- a/Source/Engine/Core/Formatting.h +++ b/Source/Engine/Core/Formatting.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/ISerializable.h b/Source/Engine/Core/ISerializable.h index aac16539d..c0b658772 100644 --- a/Source/Engine/Core/ISerializable.h +++ b/Source/Engine/Core/ISerializable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Log.cpp b/Source/Engine/Core/Log.cpp index 6daf82e37..c642e4da1 100644 --- a/Source/Engine/Core/Log.cpp +++ b/Source/Engine/Core/Log.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Log.h" #include "Engine/Engine/CommandLine.h" diff --git a/Source/Engine/Core/Log.h b/Source/Engine/Core/Log.h index 8175234a0..de4dc108d 100644 --- a/Source/Engine/Core/Log.h +++ b/Source/Engine/Core/Log.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/AABB.h b/Source/Engine/Core/Math/AABB.h index 91321b76b..1b1ea4bff 100644 --- a/Source/Engine/Core/Math/AABB.h +++ b/Source/Engine/Core/Math/AABB.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/BoundingBox.cpp b/Source/Engine/Core/Math/BoundingBox.cpp index 91b21cb35..8aeb2f222 100644 --- a/Source/Engine/Core/Math/BoundingBox.cpp +++ b/Source/Engine/Core/Math/BoundingBox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoundingBox.h" #include "BoundingSphere.h" diff --git a/Source/Engine/Core/Math/BoundingBox.cs b/Source/Engine/Core/Math/BoundingBox.cs index e65e37f88..da3a2c863 100644 --- a/Source/Engine/Core/Math/BoundingBox.cs +++ b/Source/Engine/Core/Math/BoundingBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/BoundingBox.h b/Source/Engine/Core/Math/BoundingBox.h index e0785edfb..0ee4fc1a9 100644 --- a/Source/Engine/Core/Math/BoundingBox.h +++ b/Source/Engine/Core/Math/BoundingBox.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/BoundingFrustum.cpp b/Source/Engine/Core/Math/BoundingFrustum.cpp index 88f35b8ca..db2648c03 100644 --- a/Source/Engine/Core/Math/BoundingFrustum.cpp +++ b/Source/Engine/Core/Math/BoundingFrustum.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoundingFrustum.h" #include "BoundingBox.h" diff --git a/Source/Engine/Core/Math/BoundingFrustum.cs b/Source/Engine/Core/Math/BoundingFrustum.cs index fb987a09c..970957fbb 100644 --- a/Source/Engine/Core/Math/BoundingFrustum.cs +++ b/Source/Engine/Core/Math/BoundingFrustum.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/BoundingFrustum.h b/Source/Engine/Core/Math/BoundingFrustum.h index 2ceed02ab..47fcdd843 100644 --- a/Source/Engine/Core/Math/BoundingFrustum.h +++ b/Source/Engine/Core/Math/BoundingFrustum.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/BoundingSphere.cpp b/Source/Engine/Core/Math/BoundingSphere.cpp index 18d858108..2b20e2e81 100644 --- a/Source/Engine/Core/Math/BoundingSphere.cpp +++ b/Source/Engine/Core/Math/BoundingSphere.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoundingSphere.h" #include "BoundingBox.h" diff --git a/Source/Engine/Core/Math/BoundingSphere.cs b/Source/Engine/Core/Math/BoundingSphere.cs index 3ace250ed..61dae2a76 100644 --- a/Source/Engine/Core/Math/BoundingSphere.cs +++ b/Source/Engine/Core/Math/BoundingSphere.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/BoundingSphere.h b/Source/Engine/Core/Math/BoundingSphere.h index efb4442ae..08f5df7f1 100644 --- a/Source/Engine/Core/Math/BoundingSphere.h +++ b/Source/Engine/Core/Math/BoundingSphere.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/CollisionsHelper.cpp b/Source/Engine/Core/Math/CollisionsHelper.cpp index 4654e5975..60ba61f28 100644 --- a/Source/Engine/Core/Math/CollisionsHelper.cpp +++ b/Source/Engine/Core/Math/CollisionsHelper.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CollisionsHelper.h" #include "Vector2.h" diff --git a/Source/Engine/Core/Math/CollisionsHelper.cs b/Source/Engine/Core/Math/CollisionsHelper.cs index 1ba9be22b..9400200f3 100644 --- a/Source/Engine/Core/Math/CollisionsHelper.cs +++ b/Source/Engine/Core/Math/CollisionsHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/CollisionsHelper.h b/Source/Engine/Core/Math/CollisionsHelper.h index 9e652180a..965255028 100644 --- a/Source/Engine/Core/Math/CollisionsHelper.h +++ b/Source/Engine/Core/Math/CollisionsHelper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Color.Palette.cs b/Source/Engine/Core/Math/Color.Palette.cs index 6ab61fb79..cfb69ac55 100644 --- a/Source/Engine/Core/Math/Color.Palette.cs +++ b/Source/Engine/Core/Math/Color.Palette.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Color.cpp b/Source/Engine/Core/Math/Color.cpp index 3fa4f91fd..84aef303e 100644 --- a/Source/Engine/Core/Math/Color.cpp +++ b/Source/Engine/Core/Math/Color.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Color.h" #include "../Types/String.h" diff --git a/Source/Engine/Core/Math/Color.cs b/Source/Engine/Core/Math/Color.cs index 2e0b6bc03..7bf60b42a 100644 --- a/Source/Engine/Core/Math/Color.cs +++ b/Source/Engine/Core/Math/Color.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Color.h b/Source/Engine/Core/Math/Color.h index de79f5b6a..abc2f3696 100644 --- a/Source/Engine/Core/Math/Color.h +++ b/Source/Engine/Core/Math/Color.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Color32.cpp b/Source/Engine/Core/Math/Color32.cpp index 3fc585141..d71051b82 100644 --- a/Source/Engine/Core/Math/Color32.cpp +++ b/Source/Engine/Core/Math/Color32.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Color32.h" #include "../Types/String.h" diff --git a/Source/Engine/Core/Math/Color32.cs b/Source/Engine/Core/Math/Color32.cs index d31f3ea40..70532453b 100644 --- a/Source/Engine/Core/Math/Color32.cs +++ b/Source/Engine/Core/Math/Color32.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Core/Math/Color32.h b/Source/Engine/Core/Math/Color32.h index e10e6d2e7..36da3d41d 100644 --- a/Source/Engine/Core/Math/Color32.h +++ b/Source/Engine/Core/Math/Color32.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/ColorHSV.cs b/Source/Engine/Core/Math/ColorHSV.cs index bb53a81c5..703978fcf 100644 --- a/Source/Engine/Core/Math/ColorHSV.cs +++ b/Source/Engine/Core/Math/ColorHSV.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/Core/Math/Double2.cs b/Source/Engine/Core/Math/Double2.cs index cfa184b42..825582ceb 100644 --- a/Source/Engine/Core/Math/Double2.cs +++ b/Source/Engine/Core/Math/Double2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Double2.h b/Source/Engine/Core/Math/Double2.h index a814bbed4..512bde781 100644 --- a/Source/Engine/Core/Math/Double2.h +++ b/Source/Engine/Core/Math/Double2.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Double3.cs b/Source/Engine/Core/Math/Double3.cs index 0e06a9eae..d38320254 100644 --- a/Source/Engine/Core/Math/Double3.cs +++ b/Source/Engine/Core/Math/Double3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Double3.h b/Source/Engine/Core/Math/Double3.h index b2f09576c..138ad5870 100644 --- a/Source/Engine/Core/Math/Double3.h +++ b/Source/Engine/Core/Math/Double3.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Double4.cs b/Source/Engine/Core/Math/Double4.cs index 7d7ca5252..774b3b5ed 100644 --- a/Source/Engine/Core/Math/Double4.cs +++ b/Source/Engine/Core/Math/Double4.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Double4.h b/Source/Engine/Core/Math/Double4.h index 0ba849628..ec30b8550 100644 --- a/Source/Engine/Core/Math/Double4.h +++ b/Source/Engine/Core/Math/Double4.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Float2.cs b/Source/Engine/Core/Math/Float2.cs index 26ef083b2..276c0c713 100644 --- a/Source/Engine/Core/Math/Float2.cs +++ b/Source/Engine/Core/Math/Float2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Float3.cs b/Source/Engine/Core/Math/Float3.cs index f98850963..e0ef9b1da 100644 --- a/Source/Engine/Core/Math/Float3.cs +++ b/Source/Engine/Core/Math/Float3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Float4.cs b/Source/Engine/Core/Math/Float4.cs index 89bd5e350..1504a9e03 100644 --- a/Source/Engine/Core/Math/Float4.cs +++ b/Source/Engine/Core/Math/Float4.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/FloatR10G10B10A2.cs b/Source/Engine/Core/Math/FloatR10G10B10A2.cs index 13352af7a..7e4f27996 100644 --- a/Source/Engine/Core/Math/FloatR10G10B10A2.cs +++ b/Source/Engine/Core/Math/FloatR10G10B10A2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Core/Math/FloatR11G11B10.cs b/Source/Engine/Core/Math/FloatR11G11B10.cs index 67a4b181a..5b66e504d 100644 --- a/Source/Engine/Core/Math/FloatR11G11B10.cs +++ b/Source/Engine/Core/Math/FloatR11G11B10.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Core/Math/Half.cpp b/Source/Engine/Core/Math/Half.cpp index 27c451b1b..4e4b6eb50 100644 --- a/Source/Engine/Core/Math/Half.cpp +++ b/Source/Engine/Core/Math/Half.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Half.h" #include "Rectangle.h" diff --git a/Source/Engine/Core/Math/Half.cs b/Source/Engine/Core/Math/Half.cs index 7132aa025..5cea16fa4 100644 --- a/Source/Engine/Core/Math/Half.cs +++ b/Source/Engine/Core/Math/Half.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Half.h b/Source/Engine/Core/Math/Half.h index e75214057..06b03895d 100644 --- a/Source/Engine/Core/Math/Half.h +++ b/Source/Engine/Core/Math/Half.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Half2.cs b/Source/Engine/Core/Math/Half2.cs index 0a6889f19..184835acd 100644 --- a/Source/Engine/Core/Math/Half2.cs +++ b/Source/Engine/Core/Math/Half2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Half3.cs b/Source/Engine/Core/Math/Half3.cs index d486313d9..c50f93636 100644 --- a/Source/Engine/Core/Math/Half3.cs +++ b/Source/Engine/Core/Math/Half3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Half4.cs b/Source/Engine/Core/Math/Half4.cs index 05f21b455..ddb594847 100644 --- a/Source/Engine/Core/Math/Half4.cs +++ b/Source/Engine/Core/Math/Half4.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/HalfUtils.cs b/Source/Engine/Core/Math/HalfUtils.cs index db8c6aabd..36ef11ae3 100644 --- a/Source/Engine/Core/Math/HalfUtils.cs +++ b/Source/Engine/Core/Math/HalfUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Int2.cs b/Source/Engine/Core/Math/Int2.cs index d35999979..62c8bf7ee 100644 --- a/Source/Engine/Core/Math/Int2.cs +++ b/Source/Engine/Core/Math/Int2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Int2.h b/Source/Engine/Core/Math/Int2.h index a814bbed4..512bde781 100644 --- a/Source/Engine/Core/Math/Int2.h +++ b/Source/Engine/Core/Math/Int2.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Int3.cs b/Source/Engine/Core/Math/Int3.cs index 946e98e14..d8fe4bda7 100644 --- a/Source/Engine/Core/Math/Int3.cs +++ b/Source/Engine/Core/Math/Int3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Int3.h b/Source/Engine/Core/Math/Int3.h index b2f09576c..138ad5870 100644 --- a/Source/Engine/Core/Math/Int3.h +++ b/Source/Engine/Core/Math/Int3.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Int4.cs b/Source/Engine/Core/Math/Int4.cs index e44593a44..f3ff7d05a 100644 --- a/Source/Engine/Core/Math/Int4.cs +++ b/Source/Engine/Core/Math/Int4.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Int4.h b/Source/Engine/Core/Math/Int4.h index 0ba849628..ec30b8550 100644 --- a/Source/Engine/Core/Math/Int4.h +++ b/Source/Engine/Core/Math/Int4.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Math.cpp b/Source/Engine/Core/Math/Math.cpp index 79befc86c..ac56eea74 100644 --- a/Source/Engine/Core/Math/Math.cpp +++ b/Source/Engine/Core/Math/Math.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Math.h" #include "Mathd.h" diff --git a/Source/Engine/Core/Math/Math.h b/Source/Engine/Core/Math/Math.h index c0bc52dcb..162acc97f 100644 --- a/Source/Engine/Core/Math/Math.h +++ b/Source/Engine/Core/Math/Math.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Mathd.cs b/Source/Engine/Core/Math/Mathd.cs index 2c2b4b82d..cf2c20eb3 100644 --- a/Source/Engine/Core/Math/Mathd.cs +++ b/Source/Engine/Core/Math/Mathd.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Mathd.h b/Source/Engine/Core/Math/Mathd.h index 92b760682..81885833d 100644 --- a/Source/Engine/Core/Math/Mathd.h +++ b/Source/Engine/Core/Math/Mathd.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Mathf.cs b/Source/Engine/Core/Math/Mathf.cs index 59fdfb244..08ee103c0 100644 --- a/Source/Engine/Core/Math/Mathf.cs +++ b/Source/Engine/Core/Math/Mathf.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Matrix.cpp b/Source/Engine/Core/Math/Matrix.cpp index 5c41ad28c..058936d61 100644 --- a/Source/Engine/Core/Math/Matrix.cpp +++ b/Source/Engine/Core/Math/Matrix.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Matrix.h" #include "Matrix3x3.h" diff --git a/Source/Engine/Core/Math/Matrix.cs b/Source/Engine/Core/Math/Matrix.cs index 1705517c8..6344b008a 100644 --- a/Source/Engine/Core/Math/Matrix.cs +++ b/Source/Engine/Core/Math/Matrix.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Matrix.h b/Source/Engine/Core/Math/Matrix.h index f951f4666..7d6d57bac 100644 --- a/Source/Engine/Core/Math/Matrix.h +++ b/Source/Engine/Core/Math/Matrix.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Matrix2x2.cs b/Source/Engine/Core/Math/Matrix2x2.cs index 5dc432021..99e9de76d 100644 --- a/Source/Engine/Core/Math/Matrix2x2.cs +++ b/Source/Engine/Core/Math/Matrix2x2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/Core/Math/Matrix3x3.cpp b/Source/Engine/Core/Math/Matrix3x3.cpp index 7296a36d1..65a1b6b7e 100644 --- a/Source/Engine/Core/Math/Matrix3x3.cpp +++ b/Source/Engine/Core/Math/Matrix3x3.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Matrix3x3.h" #include "Matrix.h" diff --git a/Source/Engine/Core/Math/Matrix3x3.cs b/Source/Engine/Core/Math/Matrix3x3.cs index 33c4f1f39..f4487bb1e 100644 --- a/Source/Engine/Core/Math/Matrix3x3.cs +++ b/Source/Engine/Core/Math/Matrix3x3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Matrix3x3.h b/Source/Engine/Core/Math/Matrix3x3.h index 1d92c622c..1e29be85a 100644 --- a/Source/Engine/Core/Math/Matrix3x3.h +++ b/Source/Engine/Core/Math/Matrix3x3.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Matrix3x4.h b/Source/Engine/Core/Math/Matrix3x4.h index 44cc1bd87..0cb8dd01d 100644 --- a/Source/Engine/Core/Math/Matrix3x4.h +++ b/Source/Engine/Core/Math/Matrix3x4.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/OrientedBoundingBox.cpp b/Source/Engine/Core/Math/OrientedBoundingBox.cpp index 803cdf73a..3733a5f1d 100644 --- a/Source/Engine/Core/Math/OrientedBoundingBox.cpp +++ b/Source/Engine/Core/Math/OrientedBoundingBox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "OrientedBoundingBox.h" #include "BoundingSphere.h" diff --git a/Source/Engine/Core/Math/OrientedBoundingBox.cs b/Source/Engine/Core/Math/OrientedBoundingBox.cs index 2a2b4f0d2..e3db4d7bf 100644 --- a/Source/Engine/Core/Math/OrientedBoundingBox.cs +++ b/Source/Engine/Core/Math/OrientedBoundingBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/OrientedBoundingBox.h b/Source/Engine/Core/Math/OrientedBoundingBox.h index 4a72419ef..d4af28f02 100644 --- a/Source/Engine/Core/Math/OrientedBoundingBox.h +++ b/Source/Engine/Core/Math/OrientedBoundingBox.h @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel #pragma once diff --git a/Source/Engine/Core/Math/Packed.cpp b/Source/Engine/Core/Math/Packed.cpp index 64bdd9011..8cb77ca85 100644 --- a/Source/Engine/Core/Math/Packed.cpp +++ b/Source/Engine/Core/Math/Packed.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Packed.h" #include "Vector2.h" diff --git a/Source/Engine/Core/Math/Packed.h b/Source/Engine/Core/Math/Packed.h index 101b6830a..579582b3d 100644 --- a/Source/Engine/Core/Math/Packed.h +++ b/Source/Engine/Core/Math/Packed.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Plane.cpp b/Source/Engine/Core/Math/Plane.cpp index 95eebd0f0..23a96c7ed 100644 --- a/Source/Engine/Core/Math/Plane.cpp +++ b/Source/Engine/Core/Math/Plane.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Plane.h" #include "Matrix.h" diff --git a/Source/Engine/Core/Math/Plane.cs b/Source/Engine/Core/Math/Plane.cs index b40025eea..66d6a7376 100644 --- a/Source/Engine/Core/Math/Plane.cs +++ b/Source/Engine/Core/Math/Plane.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Plane.h b/Source/Engine/Core/Math/Plane.h index ad289b8bd..57a2be344 100644 --- a/Source/Engine/Core/Math/Plane.h +++ b/Source/Engine/Core/Math/Plane.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Quaternion.cpp b/Source/Engine/Core/Math/Quaternion.cpp index b94815d94..bdbe3037d 100644 --- a/Source/Engine/Core/Math/Quaternion.cpp +++ b/Source/Engine/Core/Math/Quaternion.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Quaternion.h" #include "Vector3.h" diff --git a/Source/Engine/Core/Math/Quaternion.cs b/Source/Engine/Core/Math/Quaternion.cs index 25eda1daf..30cc39208 100644 --- a/Source/Engine/Core/Math/Quaternion.cs +++ b/Source/Engine/Core/Math/Quaternion.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Quaternion.h b/Source/Engine/Core/Math/Quaternion.h index 52389045d..5b164f979 100644 --- a/Source/Engine/Core/Math/Quaternion.h +++ b/Source/Engine/Core/Math/Quaternion.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Ray.cpp b/Source/Engine/Core/Math/Ray.cpp index 13ce82460..fef1726e8 100644 --- a/Source/Engine/Core/Math/Ray.cpp +++ b/Source/Engine/Core/Math/Ray.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Ray.h" #include "Matrix.h" diff --git a/Source/Engine/Core/Math/Ray.cs b/Source/Engine/Core/Math/Ray.cs index 77e9a7a69..256f32431 100644 --- a/Source/Engine/Core/Math/Ray.cs +++ b/Source/Engine/Core/Math/Ray.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Ray.h b/Source/Engine/Core/Math/Ray.h index 6ff23c281..c8486f39e 100644 --- a/Source/Engine/Core/Math/Ray.h +++ b/Source/Engine/Core/Math/Ray.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Rectangle.cpp b/Source/Engine/Core/Math/Rectangle.cpp index 8c3a5d798..5f468b62b 100644 --- a/Source/Engine/Core/Math/Rectangle.cpp +++ b/Source/Engine/Core/Math/Rectangle.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Rectangle.h" #include "../Types/String.h" diff --git a/Source/Engine/Core/Math/Rectangle.cs b/Source/Engine/Core/Math/Rectangle.cs index 1bfd0624b..5466f1b48 100644 --- a/Source/Engine/Core/Math/Rectangle.cs +++ b/Source/Engine/Core/Math/Rectangle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/Core/Math/Rectangle.h b/Source/Engine/Core/Math/Rectangle.h index ae0a8364c..c59905fd6 100644 --- a/Source/Engine/Core/Math/Rectangle.h +++ b/Source/Engine/Core/Math/Rectangle.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/SphericalHarmonics.cs b/Source/Engine/Core/Math/SphericalHarmonics.cs index 2e30068fc..2288dc243 100644 --- a/Source/Engine/Core/Math/SphericalHarmonics.cs +++ b/Source/Engine/Core/Math/SphericalHarmonics.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Core/Math/Transform.cpp b/Source/Engine/Core/Math/Transform.cpp index 4afd2ab83..f08de8279 100644 --- a/Source/Engine/Core/Math/Transform.cpp +++ b/Source/Engine/Core/Math/Transform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Transform.h" #include "Matrix.h" diff --git a/Source/Engine/Core/Math/Transform.cs b/Source/Engine/Core/Math/Transform.cs index fcb294994..3c837ae55 100644 --- a/Source/Engine/Core/Math/Transform.cs +++ b/Source/Engine/Core/Math/Transform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Transform.h b/Source/Engine/Core/Math/Transform.h index 2b90e0c0c..ef644f08a 100644 --- a/Source/Engine/Core/Math/Transform.h +++ b/Source/Engine/Core/Math/Transform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Triangle.h b/Source/Engine/Core/Math/Triangle.h index 709b1a9bf..a92919cfc 100644 --- a/Source/Engine/Core/Math/Triangle.h +++ b/Source/Engine/Core/Math/Triangle.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/TypeConverters/ColorConverter.cs b/Source/Engine/Core/Math/TypeConverters/ColorConverter.cs index 2cf55e03e..a8c0cb766 100644 --- a/Source/Engine/Core/Math/TypeConverters/ColorConverter.cs +++ b/Source/Engine/Core/Math/TypeConverters/ColorConverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Double2Converter.cs b/Source/Engine/Core/Math/TypeConverters/Double2Converter.cs index bde9d5bd5..7afca8e6d 100644 --- a/Source/Engine/Core/Math/TypeConverters/Double2Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Double2Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Double3Converter.cs b/Source/Engine/Core/Math/TypeConverters/Double3Converter.cs index ccd27261f..898f74e8a 100644 --- a/Source/Engine/Core/Math/TypeConverters/Double3Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Double3Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Double4Converter.cs b/Source/Engine/Core/Math/TypeConverters/Double4Converter.cs index ade244eb4..ad3593178 100644 --- a/Source/Engine/Core/Math/TypeConverters/Double4Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Double4Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Float2Converter.cs b/Source/Engine/Core/Math/TypeConverters/Float2Converter.cs index eb7041058..415b63cbd 100644 --- a/Source/Engine/Core/Math/TypeConverters/Float2Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Float2Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Float3Converter.cs b/Source/Engine/Core/Math/TypeConverters/Float3Converter.cs index f6a7a5f73..ef64662fb 100644 --- a/Source/Engine/Core/Math/TypeConverters/Float3Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Float3Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Float4Converter.cs b/Source/Engine/Core/Math/TypeConverters/Float4Converter.cs index dd69a5bea..79da8d765 100644 --- a/Source/Engine/Core/Math/TypeConverters/Float4Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Float4Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Int2Converter.cs b/Source/Engine/Core/Math/TypeConverters/Int2Converter.cs index 02b2b9a0c..ee4e6bf38 100644 --- a/Source/Engine/Core/Math/TypeConverters/Int2Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Int2Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Int3Converter.cs b/Source/Engine/Core/Math/TypeConverters/Int3Converter.cs index 78f3fe2e7..0b6f74a5b 100644 --- a/Source/Engine/Core/Math/TypeConverters/Int3Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Int3Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Int4Converter.cs b/Source/Engine/Core/Math/TypeConverters/Int4Converter.cs index 5f837e5ea..71d19dc4b 100644 --- a/Source/Engine/Core/Math/TypeConverters/Int4Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Int4Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/QuaternionConverter.cs b/Source/Engine/Core/Math/TypeConverters/QuaternionConverter.cs index 8cc95fe20..e8b1ff6a3 100644 --- a/Source/Engine/Core/Math/TypeConverters/QuaternionConverter.cs +++ b/Source/Engine/Core/Math/TypeConverters/QuaternionConverter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Vector2Converter.cs b/Source/Engine/Core/Math/TypeConverters/Vector2Converter.cs index 483e7a8ed..1eef270ee 100644 --- a/Source/Engine/Core/Math/TypeConverters/Vector2Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Vector2Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Vector3Converter.cs b/Source/Engine/Core/Math/TypeConverters/Vector3Converter.cs index 70336deb9..398a85811 100644 --- a/Source/Engine/Core/Math/TypeConverters/Vector3Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Vector3Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/TypeConverters/Vector4Converter.cs b/Source/Engine/Core/Math/TypeConverters/Vector4Converter.cs index 8fcd5ba34..75cc264af 100644 --- a/Source/Engine/Core/Math/TypeConverters/Vector4Converter.cs +++ b/Source/Engine/Core/Math/TypeConverters/Vector4Converter.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.ComponentModel; diff --git a/Source/Engine/Core/Math/Vector2.cpp b/Source/Engine/Core/Math/Vector2.cpp index 16695388c..ec168de33 100644 --- a/Source/Engine/Core/Math/Vector2.cpp +++ b/Source/Engine/Core/Math/Vector2.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Vector2.h" #include "Vector3.h" diff --git a/Source/Engine/Core/Math/Vector2.cs b/Source/Engine/Core/Math/Vector2.cs index 58d0294f5..25c25ca21 100644 --- a/Source/Engine/Core/Math/Vector2.cs +++ b/Source/Engine/Core/Math/Vector2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Vector2.h b/Source/Engine/Core/Math/Vector2.h index f41865956..2b8c80293 100644 --- a/Source/Engine/Core/Math/Vector2.h +++ b/Source/Engine/Core/Math/Vector2.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Vector3.cpp b/Source/Engine/Core/Math/Vector3.cpp index 8571df57e..d73cbd6d5 100644 --- a/Source/Engine/Core/Math/Vector3.cpp +++ b/Source/Engine/Core/Math/Vector3.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Vector3.h" #include "Vector2.h" diff --git a/Source/Engine/Core/Math/Vector3.cs b/Source/Engine/Core/Math/Vector3.cs index 1bf05ee8c..61f81e353 100644 --- a/Source/Engine/Core/Math/Vector3.cs +++ b/Source/Engine/Core/Math/Vector3.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Vector3.h b/Source/Engine/Core/Math/Vector3.h index d7390c499..f21bdca57 100644 --- a/Source/Engine/Core/Math/Vector3.h +++ b/Source/Engine/Core/Math/Vector3.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Vector4.cpp b/Source/Engine/Core/Math/Vector4.cpp index bb805f0a7..b5fa7a81d 100644 --- a/Source/Engine/Core/Math/Vector4.cpp +++ b/Source/Engine/Core/Math/Vector4.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Vector4.h" #include "Vector2.h" diff --git a/Source/Engine/Core/Math/Vector4.cs b/Source/Engine/Core/Math/Vector4.cs index f6c4038b5..738fcfffb 100644 --- a/Source/Engine/Core/Math/Vector4.cs +++ b/Source/Engine/Core/Math/Vector4.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Core/Math/Vector4.h b/Source/Engine/Core/Math/Vector4.h index 41881f54d..213f05815 100644 --- a/Source/Engine/Core/Math/Vector4.h +++ b/Source/Engine/Core/Math/Vector4.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Math/Viewport.cpp b/Source/Engine/Core/Math/Viewport.cpp index 87756c63c..0eccfe0e0 100644 --- a/Source/Engine/Core/Math/Viewport.cpp +++ b/Source/Engine/Core/Math/Viewport.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Viewport.h" #include "Rectangle.h" diff --git a/Source/Engine/Core/Math/Viewport.cs b/Source/Engine/Core/Math/Viewport.cs index 993498b47..cf100dc9c 100644 --- a/Source/Engine/Core/Math/Viewport.cs +++ b/Source/Engine/Core/Math/Viewport.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ----------------------------------------------------------------------------- // Original code from SharpDX project. https://github.com/sharpdx/SharpDX/ diff --git a/Source/Engine/Core/Math/Viewport.h b/Source/Engine/Core/Math/Viewport.h index 3a2ef775e..bb4ec8f8b 100644 --- a/Source/Engine/Core/Math/Viewport.h +++ b/Source/Engine/Core/Math/Viewport.h @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2010-2014 SharpDX - Alexandre Mutel #pragma once diff --git a/Source/Engine/Core/Memory/Allocation.h b/Source/Engine/Core/Memory/Allocation.h index 80da810a8..89d2f2003 100644 --- a/Source/Engine/Core/Memory/Allocation.h +++ b/Source/Engine/Core/Memory/Allocation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Memory/CrtAllocator.h b/Source/Engine/Core/Memory/CrtAllocator.h index dd722b69b..fa29193fa 100644 --- a/Source/Engine/Core/Memory/CrtAllocator.h +++ b/Source/Engine/Core/Memory/CrtAllocator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Memory/Memory.h b/Source/Engine/Core/Memory/Memory.h index d2ac0487b..770fd2c22 100644 --- a/Source/Engine/Core/Memory/Memory.h +++ b/Source/Engine/Core/Memory/Memory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Memory/StlWrapper.h b/Source/Engine/Core/Memory/StlWrapper.h index d80494084..868ff2b63 100644 --- a/Source/Engine/Core/Memory/StlWrapper.h +++ b/Source/Engine/Core/Memory/StlWrapper.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/NonCopyable.h b/Source/Engine/Core/NonCopyable.h index 622053605..bdea4ed3c 100644 --- a/Source/Engine/Core/NonCopyable.h +++ b/Source/Engine/Core/NonCopyable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Object.h b/Source/Engine/Core/Object.h index c9078a023..901118dc5 100644 --- a/Source/Engine/Core/Object.h +++ b/Source/Engine/Core/Object.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/ObjectsRemovalService.cpp b/Source/Engine/Core/ObjectsRemovalService.cpp index 7d79a9523..567f621c1 100644 --- a/Source/Engine/Core/ObjectsRemovalService.cpp +++ b/Source/Engine/Core/ObjectsRemovalService.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ObjectsRemovalService.h" #include "Collections/Dictionary.h" diff --git a/Source/Engine/Core/ObjectsRemovalService.h b/Source/Engine/Core/ObjectsRemovalService.h index e9120a6dd..a9fa97883 100644 --- a/Source/Engine/Core/ObjectsRemovalService.h +++ b/Source/Engine/Core/ObjectsRemovalService.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Random.h b/Source/Engine/Core/Random.h index ef63d3996..805c687ab 100644 --- a/Source/Engine/Core/Random.h +++ b/Source/Engine/Core/Random.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/RandomStream.h b/Source/Engine/Core/RandomStream.h index 0d8ad48e2..c0a83d528 100644 --- a/Source/Engine/Core/RandomStream.h +++ b/Source/Engine/Core/RandomStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/SIMD.h b/Source/Engine/Core/SIMD.h index 45e32d17e..fc2f672dd 100644 --- a/Source/Engine/Core/SIMD.h +++ b/Source/Engine/Core/SIMD.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Singleton.h b/Source/Engine/Core/Singleton.h index bdd0171c6..bc1ce10ab 100644 --- a/Source/Engine/Core/Singleton.h +++ b/Source/Engine/Core/Singleton.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Templates.h b/Source/Engine/Core/Templates.h index eda22f6fe..dbb6388fc 100644 --- a/Source/Engine/Core/Templates.h +++ b/Source/Engine/Core/Templates.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/BaseTypes.h b/Source/Engine/Core/Types/BaseTypes.h index 26333c316..40fc84505 100644 --- a/Source/Engine/Core/Types/BaseTypes.h +++ b/Source/Engine/Core/Types/BaseTypes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/CommonValue.cpp b/Source/Engine/Core/Types/CommonValue.cpp index 2f8b72c5d..f68d2d2e6 100644 --- a/Source/Engine/Core/Types/CommonValue.cpp +++ b/Source/Engine/Core/Types/CommonValue.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CommonValue.h" #include "Engine/Scripting/ScriptingObject.h" diff --git a/Source/Engine/Core/Types/CommonValue.h b/Source/Engine/Core/Types/CommonValue.h index 9820c6e35..ee4efb302 100644 --- a/Source/Engine/Core/Types/CommonValue.h +++ b/Source/Engine/Core/Types/CommonValue.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/DataContainer.h b/Source/Engine/Core/Types/DataContainer.h index de6da6a34..6e7cf8afc 100644 --- a/Source/Engine/Core/Types/DataContainer.h +++ b/Source/Engine/Core/Types/DataContainer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/DateTime.cpp b/Source/Engine/Core/Types/DateTime.cpp index af8303b01..a0d873b43 100644 --- a/Source/Engine/Core/Types/DateTime.cpp +++ b/Source/Engine/Core/Types/DateTime.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DateTime.h" #include "TimeSpan.h" diff --git a/Source/Engine/Core/Types/DateTime.h b/Source/Engine/Core/Types/DateTime.h index 8b593a405..13a2261c8 100644 --- a/Source/Engine/Core/Types/DateTime.h +++ b/Source/Engine/Core/Types/DateTime.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Guid.cpp b/Source/Engine/Core/Types/Guid.cpp index b515839d9..12e9ea1d1 100644 --- a/Source/Engine/Core/Types/Guid.cpp +++ b/Source/Engine/Core/Types/Guid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Guid.h" #include "String.h" diff --git a/Source/Engine/Core/Types/Guid.h b/Source/Engine/Core/Types/Guid.h index 721d75385..f4cb9ec57 100644 --- a/Source/Engine/Core/Types/Guid.h +++ b/Source/Engine/Core/Types/Guid.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/LayersMask.cs b/Source/Engine/Core/Types/LayersMask.cs index 47fee540d..9c90cfbc7 100644 --- a/Source/Engine/Core/Types/LayersMask.cs +++ b/Source/Engine/Core/Types/LayersMask.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Core/Types/LayersMask.h b/Source/Engine/Core/Types/LayersMask.h index f4cd5f116..9bc8b2fe8 100644 --- a/Source/Engine/Core/Types/LayersMask.h +++ b/Source/Engine/Core/Types/LayersMask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Nullable.h b/Source/Engine/Core/Types/Nullable.h index 6ad8590be..7999c35c1 100644 --- a/Source/Engine/Core/Types/Nullable.h +++ b/Source/Engine/Core/Types/Nullable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Pair.h b/Source/Engine/Core/Types/Pair.h index 339a8ddfe..f131b1611 100644 --- a/Source/Engine/Core/Types/Pair.h +++ b/Source/Engine/Core/Types/Pair.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Span.h b/Source/Engine/Core/Types/Span.h index cf508a901..6d6ba3b44 100644 --- a/Source/Engine/Core/Types/Span.h +++ b/Source/Engine/Core/Types/Span.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/String.cpp b/Source/Engine/Core/Types/String.cpp index 340430d32..321e3568a 100644 --- a/Source/Engine/Core/Types/String.cpp +++ b/Source/Engine/Core/Types/String.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "String.h" #include "StringView.h" diff --git a/Source/Engine/Core/Types/String.h b/Source/Engine/Core/Types/String.h index 464c7ff2e..a58dbf454 100644 --- a/Source/Engine/Core/Types/String.h +++ b/Source/Engine/Core/Types/String.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/StringBuilder.h b/Source/Engine/Core/Types/StringBuilder.h index eb29985ea..1df7fc4a2 100644 --- a/Source/Engine/Core/Types/StringBuilder.h +++ b/Source/Engine/Core/Types/StringBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/StringView.cpp b/Source/Engine/Core/Types/StringView.cpp index 6f84ed22d..9d651fb2a 100644 --- a/Source/Engine/Core/Types/StringView.cpp +++ b/Source/Engine/Core/Types/StringView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StringView.h" #include "String.h" diff --git a/Source/Engine/Core/Types/StringView.h b/Source/Engine/Core/Types/StringView.h index 61ac3c6ec..41684e65f 100644 --- a/Source/Engine/Core/Types/StringView.h +++ b/Source/Engine/Core/Types/StringView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/TimeSpan.cpp b/Source/Engine/Core/Types/TimeSpan.cpp index 7f372150a..0e4aed407 100644 --- a/Source/Engine/Core/Types/TimeSpan.cpp +++ b/Source/Engine/Core/Types/TimeSpan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TimeSpan.h" #include "String.h" diff --git a/Source/Engine/Core/Types/TimeSpan.h b/Source/Engine/Core/Types/TimeSpan.h index 827a36a31..7545a21c0 100644 --- a/Source/Engine/Core/Types/TimeSpan.h +++ b/Source/Engine/Core/Types/TimeSpan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Variant.cpp b/Source/Engine/Core/Types/Variant.cpp index 5bf8dbf88..46c40aa67 100644 --- a/Source/Engine/Core/Types/Variant.cpp +++ b/Source/Engine/Core/Types/Variant.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Variant.h" #include "CommonValue.h" diff --git a/Source/Engine/Core/Types/Variant.h b/Source/Engine/Core/Types/Variant.h index 33ad6df19..9d274363b 100644 --- a/Source/Engine/Core/Types/Variant.h +++ b/Source/Engine/Core/Types/Variant.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Types/Version.cpp b/Source/Engine/Core/Types/Version.cpp index a598307e4..4a11a0af6 100644 --- a/Source/Engine/Core/Types/Version.cpp +++ b/Source/Engine/Core/Types/Version.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Version.h" #include "Engine/Core/Types/StringBuilder.h" diff --git a/Source/Engine/Core/Types/Version.h b/Source/Engine/Core/Types/Version.h index d71e76551..57c6e10fe 100644 --- a/Source/Engine/Core/Types/Version.h +++ b/Source/Engine/Core/Types/Version.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Core/Utilities.h b/Source/Engine/Core/Utilities.h index b32407b14..c65200077 100644 --- a/Source/Engine/Core/Utilities.h +++ b/Source/Engine/Core/Utilities.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Assert.cs b/Source/Engine/Debug/Assert.cs index bb0b3b7a2..c33370db1 100644 --- a/Source/Engine/Debug/Assert.cs +++ b/Source/Engine/Debug/Assert.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Debug/AssertionException.cs b/Source/Engine/Debug/AssertionException.cs index c4c212122..fb609ece8 100644 --- a/Source/Engine/Debug/AssertionException.cs +++ b/Source/Engine/Debug/AssertionException.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Debug/Debug.Build.cs b/Source/Engine/Debug/Debug.Build.cs index 6394e2af9..0dde810b5 100644 --- a/Source/Engine/Debug/Debug.Build.cs +++ b/Source/Engine/Debug/Debug.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Debug/DebugDraw.cpp b/Source/Engine/Debug/DebugDraw.cpp index 1d76014e4..e91718477 100644 --- a/Source/Engine/Debug/DebugDraw.cpp +++ b/Source/Engine/Debug/DebugDraw.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_DEBUG_DRAW diff --git a/Source/Engine/Debug/DebugDraw.cs b/Source/Engine/Debug/DebugDraw.cs index cfe8e7de1..af39ebeea 100644 --- a/Source/Engine/Debug/DebugDraw.cs +++ b/Source/Engine/Debug/DebugDraw.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if !FLAX_EDITOR using System; diff --git a/Source/Engine/Debug/DebugDraw.h b/Source/Engine/Debug/DebugDraw.h index 1e6e3b23c..b37080d0f 100644 --- a/Source/Engine/Debug/DebugDraw.h +++ b/Source/Engine/Debug/DebugDraw.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/DebugLog.cpp b/Source/Engine/Debug/DebugLog.cpp index 549237fc5..d873f4886 100644 --- a/Source/Engine/Debug/DebugLog.cpp +++ b/Source/Engine/Debug/DebugLog.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DebugLog.h" #include "Engine/Scripting/Scripting.h" diff --git a/Source/Engine/Debug/DebugLog.h b/Source/Engine/Debug/DebugLog.h index afc05fd32..2eefa9e7d 100644 --- a/Source/Engine/Debug/DebugLog.h +++ b/Source/Engine/Debug/DebugLog.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exception.cpp b/Source/Engine/Debug/Exception.cpp index 9c07d1941..ac2edf0a8 100644 --- a/Source/Engine/Debug/Exception.cpp +++ b/Source/Engine/Debug/Exception.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Exception.h" diff --git a/Source/Engine/Debug/Exception.h b/Source/Engine/Debug/Exception.h index a849210c6..1815e7b6a 100644 --- a/Source/Engine/Debug/Exception.h +++ b/Source/Engine/Debug/Exception.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/ArgumentException.h b/Source/Engine/Debug/Exceptions/ArgumentException.h index f0ab7df08..32142f60e 100644 --- a/Source/Engine/Debug/Exceptions/ArgumentException.h +++ b/Source/Engine/Debug/Exceptions/ArgumentException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/ArgumentNullException.h b/Source/Engine/Debug/Exceptions/ArgumentNullException.h index 7f5c0bfba..ef0ea95d5 100644 --- a/Source/Engine/Debug/Exceptions/ArgumentNullException.h +++ b/Source/Engine/Debug/Exceptions/ArgumentNullException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/ArgumentOutOfRangeException.h b/Source/Engine/Debug/Exceptions/ArgumentOutOfRangeException.h index 4bd78c850..011b64bbb 100644 --- a/Source/Engine/Debug/Exceptions/ArgumentOutOfRangeException.h +++ b/Source/Engine/Debug/Exceptions/ArgumentOutOfRangeException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/CLRInnerException.h b/Source/Engine/Debug/Exceptions/CLRInnerException.h index 8bf0b1b61..919739d57 100644 --- a/Source/Engine/Debug/Exceptions/CLRInnerException.h +++ b/Source/Engine/Debug/Exceptions/CLRInnerException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/DivideByZeroException.h b/Source/Engine/Debug/Exceptions/DivideByZeroException.h index 37ca7715a..3d319df19 100644 --- a/Source/Engine/Debug/Exceptions/DivideByZeroException.h +++ b/Source/Engine/Debug/Exceptions/DivideByZeroException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/Exceptions.h b/Source/Engine/Debug/Exceptions/Exceptions.h index 84acff23a..8397463dc 100644 --- a/Source/Engine/Debug/Exceptions/Exceptions.h +++ b/Source/Engine/Debug/Exceptions/Exceptions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/FileNotFoundException.h b/Source/Engine/Debug/Exceptions/FileNotFoundException.h index aafbfb1fd..bcb9463d5 100644 --- a/Source/Engine/Debug/Exceptions/FileNotFoundException.h +++ b/Source/Engine/Debug/Exceptions/FileNotFoundException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/IOException.h b/Source/Engine/Debug/Exceptions/IOException.h index 90d032a13..f130c7e18 100644 --- a/Source/Engine/Debug/Exceptions/IOException.h +++ b/Source/Engine/Debug/Exceptions/IOException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/IndexOutOfRangeException.h b/Source/Engine/Debug/Exceptions/IndexOutOfRangeException.h index 37208cabc..23511d5ce 100644 --- a/Source/Engine/Debug/Exceptions/IndexOutOfRangeException.h +++ b/Source/Engine/Debug/Exceptions/IndexOutOfRangeException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/InvalidOperationException.h b/Source/Engine/Debug/Exceptions/InvalidOperationException.h index 00167d38c..3194741b1 100644 --- a/Source/Engine/Debug/Exceptions/InvalidOperationException.h +++ b/Source/Engine/Debug/Exceptions/InvalidOperationException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/JsonParseException.h b/Source/Engine/Debug/Exceptions/JsonParseException.h index d11ac67b2..94345d7ab 100644 --- a/Source/Engine/Debug/Exceptions/JsonParseException.h +++ b/Source/Engine/Debug/Exceptions/JsonParseException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/NotImplementedException.h b/Source/Engine/Debug/Exceptions/NotImplementedException.h index 137ecb3dd..49e330a73 100644 --- a/Source/Engine/Debug/Exceptions/NotImplementedException.h +++ b/Source/Engine/Debug/Exceptions/NotImplementedException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/NotSupportedException.h b/Source/Engine/Debug/Exceptions/NotSupportedException.h index 5750a3b58..44f692480 100644 --- a/Source/Engine/Debug/Exceptions/NotSupportedException.h +++ b/Source/Engine/Debug/Exceptions/NotSupportedException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/OverflowException.h b/Source/Engine/Debug/Exceptions/OverflowException.h index 58412b8df..d484d109e 100644 --- a/Source/Engine/Debug/Exceptions/OverflowException.h +++ b/Source/Engine/Debug/Exceptions/OverflowException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/PathTooLongException.h b/Source/Engine/Debug/Exceptions/PathTooLongException.h index 349f60d14..cc350986c 100644 --- a/Source/Engine/Debug/Exceptions/PathTooLongException.h +++ b/Source/Engine/Debug/Exceptions/PathTooLongException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/PlatformNotSupportedException.h b/Source/Engine/Debug/Exceptions/PlatformNotSupportedException.h index 963242fe2..46559080b 100644 --- a/Source/Engine/Debug/Exceptions/PlatformNotSupportedException.h +++ b/Source/Engine/Debug/Exceptions/PlatformNotSupportedException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/Exceptions/TimeoutException.h b/Source/Engine/Debug/Exceptions/TimeoutException.h index d6bd8d67d..9220e50cf 100644 --- a/Source/Engine/Debug/Exceptions/TimeoutException.h +++ b/Source/Engine/Debug/Exceptions/TimeoutException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Debug/FloatComparer.cs b/Source/Engine/Debug/FloatComparer.cs index 69880f23c..d852d2d09 100644 --- a/Source/Engine/Debug/FloatComparer.cs +++ b/Source/Engine/Debug/FloatComparer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Engine/Android/AndroidGame.h b/Source/Engine/Engine/Android/AndroidGame.h index 4ad76dd1f..cb52a49f4 100644 --- a/Source/Engine/Engine/Android/AndroidGame.h +++ b/Source/Engine/Engine/Android/AndroidGame.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Application.h b/Source/Engine/Engine/Application.h index c78b579ce..2dc5d5f55 100644 --- a/Source/Engine/Engine/Application.h +++ b/Source/Engine/Engine/Application.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Base/ApplicationBase.h b/Source/Engine/Engine/Base/ApplicationBase.h index de5e89e59..2bd470333 100644 --- a/Source/Engine/Engine/Base/ApplicationBase.h +++ b/Source/Engine/Engine/Base/ApplicationBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Base/GameBase.cpp b/Source/Engine/Engine/Base/GameBase.cpp index 6d0614eed..f0cd7043c 100644 --- a/Source/Engine/Engine/Base/GameBase.cpp +++ b/Source/Engine/Engine/Base/GameBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "../Game.h" diff --git a/Source/Engine/Engine/Base/GameBase.h b/Source/Engine/Engine/Base/GameBase.h index 1e927a1cb..7247fe96e 100644 --- a/Source/Engine/Engine/Base/GameBase.h +++ b/Source/Engine/Engine/Base/GameBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/CommandLine.cpp b/Source/Engine/Engine/CommandLine.cpp index cf636fea8..8913c1760 100644 --- a/Source/Engine/Engine/CommandLine.cpp +++ b/Source/Engine/Engine/CommandLine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CommandLine.h" #include "Engine/Core/Collections/Array.h" diff --git a/Source/Engine/Engine/CommandLine.h b/Source/Engine/Engine/CommandLine.h index 886e85de6..0383fd4db 100644 --- a/Source/Engine/Engine/CommandLine.h +++ b/Source/Engine/Engine/CommandLine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Debug.cs b/Source/Engine/Engine/Debug.cs index d87d64dbb..30407cb9a 100644 --- a/Source/Engine/Engine/Debug.cs +++ b/Source/Engine/Engine/Debug.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Diagnostics; diff --git a/Source/Engine/Engine/DebugLogHandler.cs b/Source/Engine/Engine/DebugLogHandler.cs index b7bc0d52e..c29da21cc 100644 --- a/Source/Engine/Engine/DebugLogHandler.cs +++ b/Source/Engine/Engine/DebugLogHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Diagnostics; diff --git a/Source/Engine/Engine/Engine.Build.cs b/Source/Engine/Engine/Engine.Build.cs index 85c88024d..56997a721 100644 --- a/Source/Engine/Engine/Engine.Build.cs +++ b/Source/Engine/Engine/Engine.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Engine/Engine/Engine.cpp b/Source/Engine/Engine/Engine.cpp index cf24223ea..9c34dafda 100644 --- a/Source/Engine/Engine/Engine.cpp +++ b/Source/Engine/Engine/Engine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine.h" #include "Game.h" diff --git a/Source/Engine/Engine/Engine.h b/Source/Engine/Engine/Engine.h index 0e72e6b4b..6f8c5fe6e 100644 --- a/Source/Engine/Engine/Engine.h +++ b/Source/Engine/Engine/Engine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/EngineService.cpp b/Source/Engine/Engine/EngineService.cpp index 7f8569e7c..ac58ba40c 100644 --- a/Source/Engine/Engine/EngineService.cpp +++ b/Source/Engine/Engine/EngineService.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EngineService.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Engine/EngineService.h b/Source/Engine/Engine/EngineService.h index f121f77db..f4ae1b271 100644 --- a/Source/Engine/Engine/EngineService.h +++ b/Source/Engine/Engine/EngineService.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Game.h b/Source/Engine/Engine/Game.h index 0b0c88a3a..16a992c82 100644 --- a/Source/Engine/Engine/Game.h +++ b/Source/Engine/Engine/Game.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/GameplayGlobals.cpp b/Source/Engine/Engine/GameplayGlobals.cpp index ceae6cad9..247a87dce 100644 --- a/Source/Engine/Engine/GameplayGlobals.cpp +++ b/Source/Engine/Engine/GameplayGlobals.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GameplayGlobals.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Engine/GameplayGlobals.h b/Source/Engine/Engine/GameplayGlobals.h index fed2c24c2..6f700ef31 100644 --- a/Source/Engine/Engine/GameplayGlobals.h +++ b/Source/Engine/Engine/GameplayGlobals.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Globals.cpp b/Source/Engine/Engine/Globals.cpp index 0bbda9514..88d1ced23 100644 --- a/Source/Engine/Engine/Globals.cpp +++ b/Source/Engine/Engine/Globals.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Globals.h" #include "Engine/Core/Types/String.h" diff --git a/Source/Engine/Engine/Globals.h b/Source/Engine/Engine/Globals.h index fa001f834..c033e9ef5 100644 --- a/Source/Engine/Engine/Globals.h +++ b/Source/Engine/Engine/Globals.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/IDrawable.cs b/Source/Engine/Engine/IDrawable.cs index 740681739..a612f4007 100644 --- a/Source/Engine/Engine/IDrawable.cs +++ b/Source/Engine/Engine/IDrawable.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Engine/ILogHandler.cs b/Source/Engine/Engine/ILogHandler.cs index 2a7c576c3..6074a96a4 100644 --- a/Source/Engine/Engine/ILogHandler.cs +++ b/Source/Engine/Engine/ILogHandler.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Engine/ILogger.cs b/Source/Engine/Engine/ILogger.cs index 9350f09ec..cce903689 100644 --- a/Source/Engine/Engine/ILogger.cs +++ b/Source/Engine/Engine/ILogger.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Engine/InputAxis.cs b/Source/Engine/Engine/InputAxis.cs index 8c687018e..f8ba7e72b 100644 --- a/Source/Engine/Engine/InputAxis.cs +++ b/Source/Engine/Engine/InputAxis.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Engine/InputEvent.cs b/Source/Engine/Engine/InputEvent.cs index 4fd70849b..176d21fd0 100644 --- a/Source/Engine/Engine/InputEvent.cs +++ b/Source/Engine/Engine/InputEvent.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Engine/Linux/LinuxGame.cpp b/Source/Engine/Engine/Linux/LinuxGame.cpp index 7614fd5d7..84eefe990 100644 --- a/Source/Engine/Engine/Linux/LinuxGame.cpp +++ b/Source/Engine/Engine/Linux/LinuxGame.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX && !USE_EDITOR diff --git a/Source/Engine/Engine/Linux/LinuxGame.h b/Source/Engine/Engine/Linux/LinuxGame.h index 3a51c725b..b6bf5489b 100644 --- a/Source/Engine/Engine/Linux/LinuxGame.h +++ b/Source/Engine/Engine/Linux/LinuxGame.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Logger.cs b/Source/Engine/Engine/Logger.cs index 02ef650da..b183421ec 100644 --- a/Source/Engine/Engine/Logger.cs +++ b/Source/Engine/Engine/Logger.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Engine/Mac/MacGame.cpp b/Source/Engine/Engine/Mac/MacGame.cpp index 32b1bf3be..d144cd594 100644 --- a/Source/Engine/Engine/Mac/MacGame.cpp +++ b/Source/Engine/Engine/Mac/MacGame.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_MAC && !USE_EDITOR diff --git a/Source/Engine/Engine/Mac/MacGame.h b/Source/Engine/Engine/Mac/MacGame.h index d270f8fd1..4abfd389c 100644 --- a/Source/Engine/Engine/Mac/MacGame.h +++ b/Source/Engine/Engine/Mac/MacGame.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/PostProcessEffect.cs b/Source/Engine/Engine/PostProcessEffect.cs index 5a85f4549..c17247f77 100644 --- a/Source/Engine/Engine/PostProcessEffect.cs +++ b/Source/Engine/Engine/PostProcessEffect.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Engine/SceneReference.cs b/Source/Engine/Engine/SceneReference.cs index 760da842a..46112fa21 100644 --- a/Source/Engine/Engine/SceneReference.cs +++ b/Source/Engine/Engine/SceneReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Engine/Screen.cpp b/Source/Engine/Engine/Screen.cpp index a527bbcfe..2fc58c7a3 100644 --- a/Source/Engine/Engine/Screen.cpp +++ b/Source/Engine/Engine/Screen.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Screen.h" #include "Engine.h" diff --git a/Source/Engine/Engine/Screen.h b/Source/Engine/Engine/Screen.h index 7f0f4ff6d..532529980 100644 --- a/Source/Engine/Engine/Screen.h +++ b/Source/Engine/Engine/Screen.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Time.cpp b/Source/Engine/Engine/Time.cpp index ee11fe3f7..a7c4bf80d 100644 --- a/Source/Engine/Engine/Time.cpp +++ b/Source/Engine/Engine/Time.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Time.h" #include "EngineService.h" diff --git a/Source/Engine/Engine/Time.h b/Source/Engine/Engine/Time.h index 3103376a0..cb0f94d5f 100644 --- a/Source/Engine/Engine/Time.h +++ b/Source/Engine/Engine/Time.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/UWP/UWPGame.cpp b/Source/Engine/Engine/UWP/UWPGame.cpp index 81b644c6f..811a01a7d 100644 --- a/Source/Engine/Engine/UWP/UWPGame.cpp +++ b/Source/Engine/Engine/UWP/UWPGame.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UWP && !USE_EDITOR diff --git a/Source/Engine/Engine/UWP/UWPGame.h b/Source/Engine/Engine/UWP/UWPGame.h index b50248ecb..8ac7f659d 100644 --- a/Source/Engine/Engine/UWP/UWPGame.h +++ b/Source/Engine/Engine/UWP/UWPGame.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Engine/Windows/WindowsGame.cpp b/Source/Engine/Engine/Windows/WindowsGame.cpp index b5ea889ff..6b5d52875 100644 --- a/Source/Engine/Engine/Windows/WindowsGame.cpp +++ b/Source/Engine/Engine/Windows/WindowsGame.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS && !USE_EDITOR diff --git a/Source/Engine/Engine/Windows/WindowsGame.h b/Source/Engine/Engine/Windows/WindowsGame.h index 53e675aa0..1357154b4 100644 --- a/Source/Engine/Engine/Windows/WindowsGame.h +++ b/Source/Engine/Engine/Windows/WindowsGame.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Foliage/Config.h b/Source/Engine/Foliage/Config.h index a94836fa3..8c3e8fbd7 100644 --- a/Source/Engine/Foliage/Config.h +++ b/Source/Engine/Foliage/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Foliage/Foliage.Build.cs b/Source/Engine/Foliage/Foliage.Build.cs index 8923f39d0..804f64b75 100644 --- a/Source/Engine/Foliage/Foliage.Build.cs +++ b/Source/Engine/Foliage/Foliage.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Foliage/Foliage.cpp b/Source/Engine/Foliage/Foliage.cpp index 257256c97..942bd6872 100644 --- a/Source/Engine/Foliage/Foliage.cpp +++ b/Source/Engine/Foliage/Foliage.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Foliage.h" #include "FoliageType.h" diff --git a/Source/Engine/Foliage/Foliage.h b/Source/Engine/Foliage/Foliage.h index a71eba59e..c617352d0 100644 --- a/Source/Engine/Foliage/Foliage.h +++ b/Source/Engine/Foliage/Foliage.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Foliage/FoliageCluster.cpp b/Source/Engine/Foliage/FoliageCluster.cpp index ac6bce397..c9cb67021 100644 --- a/Source/Engine/Foliage/FoliageCluster.cpp +++ b/Source/Engine/Foliage/FoliageCluster.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FoliageCluster.h" #include "FoliageInstance.h" diff --git a/Source/Engine/Foliage/FoliageCluster.h b/Source/Engine/Foliage/FoliageCluster.h index 3f39ecc30..f67d834f4 100644 --- a/Source/Engine/Foliage/FoliageCluster.h +++ b/Source/Engine/Foliage/FoliageCluster.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Foliage/FoliageInstance.h b/Source/Engine/Foliage/FoliageInstance.h index 4f64619af..bffc43e42 100644 --- a/Source/Engine/Foliage/FoliageInstance.h +++ b/Source/Engine/Foliage/FoliageInstance.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Foliage/FoliageType.cpp b/Source/Engine/Foliage/FoliageType.cpp index b4b14c5f4..9cd4800dc 100644 --- a/Source/Engine/Foliage/FoliageType.cpp +++ b/Source/Engine/Foliage/FoliageType.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FoliageType.h" #include "Engine/Core/Collections/ArrayExtensions.h" diff --git a/Source/Engine/Foliage/FoliageType.h b/Source/Engine/Foliage/FoliageType.h index 937322846..0d84e616c 100644 --- a/Source/Engine/Foliage/FoliageType.h +++ b/Source/Engine/Foliage/FoliageType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.cpp b/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.cpp index 680fb8684..198c7b300 100644 --- a/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.cpp +++ b/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DefaultGPUTasksExecutor.h" #include "GPUTasksContext.h" diff --git a/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.h b/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.h index 6c3fe9f63..08d5c6ed0 100644 --- a/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.h +++ b/Source/Engine/Graphics/Async/DefaultGPUTasksExecutor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/GPUSyncPoint.h b/Source/Engine/Graphics/Async/GPUSyncPoint.h index d72b1138b..ed16f4192 100644 --- a/Source/Engine/Graphics/Async/GPUSyncPoint.h +++ b/Source/Engine/Graphics/Async/GPUSyncPoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/GPUTask.h b/Source/Engine/Graphics/Async/GPUTask.h index e4fa29864..5175544e5 100644 --- a/Source/Engine/Graphics/Async/GPUTask.h +++ b/Source/Engine/Graphics/Async/GPUTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/GPUTasksContext.cpp b/Source/Engine/Graphics/Async/GPUTasksContext.cpp index 0800e5a22..4cd56521d 100644 --- a/Source/Engine/Graphics/Async/GPUTasksContext.cpp +++ b/Source/Engine/Graphics/Async/GPUTasksContext.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUTasksContext.h" #include "GPUTask.h" diff --git a/Source/Engine/Graphics/Async/GPUTasksContext.h b/Source/Engine/Graphics/Async/GPUTasksContext.h index 5193f6711..4feca27cf 100644 --- a/Source/Engine/Graphics/Async/GPUTasksContext.h +++ b/Source/Engine/Graphics/Async/GPUTasksContext.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/GPUTasksExecutor.cpp b/Source/Engine/Graphics/Async/GPUTasksExecutor.cpp index 5c5c6164e..83352ecab 100644 --- a/Source/Engine/Graphics/Async/GPUTasksExecutor.cpp +++ b/Source/Engine/Graphics/Async/GPUTasksExecutor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUTasksExecutor.h" #include "Engine/Graphics/GPUDevice.h" diff --git a/Source/Engine/Graphics/Async/GPUTasksExecutor.h b/Source/Engine/Graphics/Async/GPUTasksExecutor.h index 63c2e3af1..2275ffea3 100644 --- a/Source/Engine/Graphics/Async/GPUTasksExecutor.h +++ b/Source/Engine/Graphics/Async/GPUTasksExecutor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/GPUTasksManager.cpp b/Source/Engine/Graphics/Async/GPUTasksManager.cpp index bbd5bff7f..0c0a55bac 100644 --- a/Source/Engine/Graphics/Async/GPUTasksManager.cpp +++ b/Source/Engine/Graphics/Async/GPUTasksManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUTasksManager.h" #include "GPUTask.h" diff --git a/Source/Engine/Graphics/Async/GPUTasksManager.h b/Source/Engine/Graphics/Async/GPUTasksManager.h index 25639a6fb..9ff72a203 100644 --- a/Source/Engine/Graphics/Async/GPUTasksManager.h +++ b/Source/Engine/Graphics/Async/GPUTasksManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/Tasks/GPUCopyResourceTask.h b/Source/Engine/Graphics/Async/Tasks/GPUCopyResourceTask.h index 75f019718..86c723530 100644 --- a/Source/Engine/Graphics/Async/Tasks/GPUCopyResourceTask.h +++ b/Source/Engine/Graphics/Async/Tasks/GPUCopyResourceTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/Tasks/GPUCopySubresourceTask.h b/Source/Engine/Graphics/Async/Tasks/GPUCopySubresourceTask.h index d5998cc9a..ab8f1ffad 100644 --- a/Source/Engine/Graphics/Async/Tasks/GPUCopySubresourceTask.h +++ b/Source/Engine/Graphics/Async/Tasks/GPUCopySubresourceTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/Tasks/GPUUploadBufferTask.h b/Source/Engine/Graphics/Async/Tasks/GPUUploadBufferTask.h index 5d9bcb997..d2f20449c 100644 --- a/Source/Engine/Graphics/Async/Tasks/GPUUploadBufferTask.h +++ b/Source/Engine/Graphics/Async/Tasks/GPUUploadBufferTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Async/Tasks/GPUUploadTextureMipTask.h b/Source/Engine/Graphics/Async/Tasks/GPUUploadTextureMipTask.h index 11461b0f3..6e9cca7fd 100644 --- a/Source/Engine/Graphics/Async/Tasks/GPUUploadTextureMipTask.h +++ b/Source/Engine/Graphics/Async/Tasks/GPUUploadTextureMipTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Config.h b/Source/Engine/Graphics/Config.h index a3a707a9b..254efea58 100644 --- a/Source/Engine/Graphics/Config.h +++ b/Source/Engine/Graphics/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/DynamicBuffer.cpp b/Source/Engine/Graphics/DynamicBuffer.cpp index d4db1b957..51adc6614 100644 --- a/Source/Engine/Graphics/DynamicBuffer.cpp +++ b/Source/Engine/Graphics/DynamicBuffer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DynamicBuffer.h" #include "PixelFormatExtensions.h" diff --git a/Source/Engine/Graphics/DynamicBuffer.h b/Source/Engine/Graphics/DynamicBuffer.h index 4efade7e0..12d228e4f 100644 --- a/Source/Engine/Graphics/DynamicBuffer.h +++ b/Source/Engine/Graphics/DynamicBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Enums.h b/Source/Engine/Graphics/Enums.h index 9a71255d4..2bbef6085 100644 --- a/Source/Engine/Graphics/Enums.h +++ b/Source/Engine/Graphics/Enums.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUAdapter.h b/Source/Engine/Graphics/GPUAdapter.h index e385c5836..6dd65c84b 100644 --- a/Source/Engine/Graphics/GPUAdapter.h +++ b/Source/Engine/Graphics/GPUAdapter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUBuffer.cpp b/Source/Engine/Graphics/GPUBuffer.cpp index 3aae13789..d18444174 100644 --- a/Source/Engine/Graphics/GPUBuffer.cpp +++ b/Source/Engine/Graphics/GPUBuffer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUBuffer.h" #include "GPUDevice.h" diff --git a/Source/Engine/Graphics/GPUBuffer.h b/Source/Engine/Graphics/GPUBuffer.h index 785be2cc3..31cf8ac39 100644 --- a/Source/Engine/Graphics/GPUBuffer.h +++ b/Source/Engine/Graphics/GPUBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUBufferDescription.cs b/Source/Engine/Graphics/GPUBufferDescription.cs index 9d03bb525..9747ce41e 100644 --- a/Source/Engine/Graphics/GPUBufferDescription.cs +++ b/Source/Engine/Graphics/GPUBufferDescription.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Graphics/GPUBufferDescription.h b/Source/Engine/Graphics/GPUBufferDescription.h index c19ee614b..34b0b8e17 100644 --- a/Source/Engine/Graphics/GPUBufferDescription.h +++ b/Source/Engine/Graphics/GPUBufferDescription.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUContext.cpp b/Source/Engine/Graphics/GPUContext.cpp index 2583d4885..5bd8f25b4 100644 --- a/Source/Engine/Graphics/GPUContext.cpp +++ b/Source/Engine/Graphics/GPUContext.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUContext.h" #include "GPUDevice.h" diff --git a/Source/Engine/Graphics/GPUContext.h b/Source/Engine/Graphics/GPUContext.h index 7c8b90a71..eabfc0695 100644 --- a/Source/Engine/Graphics/GPUContext.h +++ b/Source/Engine/Graphics/GPUContext.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUDevice.cpp b/Source/Engine/Graphics/GPUDevice.cpp index b9f1aeba2..c425592c1 100644 --- a/Source/Engine/Graphics/GPUDevice.cpp +++ b/Source/Engine/Graphics/GPUDevice.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUDevice.h" #include "RenderTargetPool.h" diff --git a/Source/Engine/Graphics/GPUDevice.h b/Source/Engine/Graphics/GPUDevice.h index f4b8e88ae..8b7390ba7 100644 --- a/Source/Engine/Graphics/GPUDevice.h +++ b/Source/Engine/Graphics/GPUDevice.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPULimits.h b/Source/Engine/Graphics/GPULimits.h index c3c278422..b613d6ade 100644 --- a/Source/Engine/Graphics/GPULimits.h +++ b/Source/Engine/Graphics/GPULimits.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUPipelineState.h b/Source/Engine/Graphics/GPUPipelineState.h index 497548e00..d525e9d36 100644 --- a/Source/Engine/Graphics/GPUPipelineState.h +++ b/Source/Engine/Graphics/GPUPipelineState.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUPipelineStatePermutations.h b/Source/Engine/Graphics/GPUPipelineStatePermutations.h index ecccd8baf..771cb284c 100644 --- a/Source/Engine/Graphics/GPUPipelineStatePermutations.h +++ b/Source/Engine/Graphics/GPUPipelineStatePermutations.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUResource.h b/Source/Engine/Graphics/GPUResource.h index 9b4a94cd1..4a4e09562 100644 --- a/Source/Engine/Graphics/GPUResource.h +++ b/Source/Engine/Graphics/GPUResource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUResourceProperty.h b/Source/Engine/Graphics/GPUResourceProperty.h index c0376819e..b3c56007d 100644 --- a/Source/Engine/Graphics/GPUResourceProperty.h +++ b/Source/Engine/Graphics/GPUResourceProperty.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUResourceState.h b/Source/Engine/Graphics/GPUResourceState.h index f4c07897d..084a55c6d 100644 --- a/Source/Engine/Graphics/GPUResourceState.h +++ b/Source/Engine/Graphics/GPUResourceState.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUResourcesCollection.cpp b/Source/Engine/Graphics/GPUResourcesCollection.cpp index 69263aa51..4d9607924 100644 --- a/Source/Engine/Graphics/GPUResourcesCollection.cpp +++ b/Source/Engine/Graphics/GPUResourcesCollection.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUResourcesCollection.h" #include "GPUResource.h" diff --git a/Source/Engine/Graphics/GPUResourcesCollection.h b/Source/Engine/Graphics/GPUResourcesCollection.h index e285cbea3..16b97ae15 100644 --- a/Source/Engine/Graphics/GPUResourcesCollection.h +++ b/Source/Engine/Graphics/GPUResourcesCollection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUSwapChain.cpp b/Source/Engine/Graphics/GPUSwapChain.cpp index 8dc7f0eee..5878ecaad 100644 --- a/Source/Engine/Graphics/GPUSwapChain.cpp +++ b/Source/Engine/Graphics/GPUSwapChain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUSwapChain.h" #include "GPUDevice.h" diff --git a/Source/Engine/Graphics/GPUSwapChain.h b/Source/Engine/Graphics/GPUSwapChain.h index 97777cd6e..860f4d6ae 100644 --- a/Source/Engine/Graphics/GPUSwapChain.h +++ b/Source/Engine/Graphics/GPUSwapChain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/GPUTimerQuery.h b/Source/Engine/Graphics/GPUTimerQuery.h index e4763ac4f..740f7f289 100644 --- a/Source/Engine/Graphics/GPUTimerQuery.h +++ b/Source/Engine/Graphics/GPUTimerQuery.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Graphics.Build.cs b/Source/Engine/Graphics/Graphics.Build.cs index aaf1b94ea..5a617261a 100644 --- a/Source/Engine/Graphics/Graphics.Build.cs +++ b/Source/Engine/Graphics/Graphics.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/Graphics/Graphics.cpp b/Source/Engine/Graphics/Graphics.cpp index aaa5dc2d8..226bd81bd 100644 --- a/Source/Engine/Graphics/Graphics.cpp +++ b/Source/Engine/Graphics/Graphics.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Graphics.h" #include "GPUDevice.h" diff --git a/Source/Engine/Graphics/Graphics.h b/Source/Engine/Graphics/Graphics.h index c5933cfc1..634dbde18 100644 --- a/Source/Engine/Graphics/Graphics.h +++ b/Source/Engine/Graphics/Graphics.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/MaterialInfo.cs b/Source/Engine/Graphics/MaterialInfo.cs index b01ea5b43..8eebd6f2e 100644 --- a/Source/Engine/Graphics/MaterialInfo.cs +++ b/Source/Engine/Graphics/MaterialInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Graphics/MaterialParams.cs b/Source/Engine/Graphics/MaterialParams.cs index 788e4bd75..fcb4b7cdd 100644 --- a/Source/Engine/Graphics/MaterialParams.cs +++ b/Source/Engine/Graphics/MaterialParams.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Graphics/Materials/DecalMaterialShader.cpp b/Source/Engine/Graphics/Materials/DecalMaterialShader.cpp index 6ca243fc1..46b57b32b 100644 --- a/Source/Engine/Graphics/Materials/DecalMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/DecalMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DecalMaterialShader.h" #include "MaterialParams.h" diff --git a/Source/Engine/Graphics/Materials/DecalMaterialShader.h b/Source/Engine/Graphics/Materials/DecalMaterialShader.h index 373baa089..7e60b64ca 100644 --- a/Source/Engine/Graphics/Materials/DecalMaterialShader.h +++ b/Source/Engine/Graphics/Materials/DecalMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/DeferredMaterialShader.cpp b/Source/Engine/Graphics/Materials/DeferredMaterialShader.cpp index 6fdac4f2d..f9992b509 100644 --- a/Source/Engine/Graphics/Materials/DeferredMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/DeferredMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DeferredMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/DeferredMaterialShader.h b/Source/Engine/Graphics/Materials/DeferredMaterialShader.h index af24ebba6..199b6b821 100644 --- a/Source/Engine/Graphics/Materials/DeferredMaterialShader.h +++ b/Source/Engine/Graphics/Materials/DeferredMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/DeformableMaterialShader.cpp b/Source/Engine/Graphics/Materials/DeformableMaterialShader.cpp index ec3b800fe..2d545bee0 100644 --- a/Source/Engine/Graphics/Materials/DeformableMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/DeformableMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DeformableMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/DeformableMaterialShader.h b/Source/Engine/Graphics/Materials/DeformableMaterialShader.h index 550c9be46..a54e958b0 100644 --- a/Source/Engine/Graphics/Materials/DeformableMaterialShader.h +++ b/Source/Engine/Graphics/Materials/DeformableMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/ForwardMaterialShader.cpp b/Source/Engine/Graphics/Materials/ForwardMaterialShader.cpp index 6c28fa096..51eaf797e 100644 --- a/Source/Engine/Graphics/Materials/ForwardMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/ForwardMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ForwardMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/ForwardMaterialShader.h b/Source/Engine/Graphics/Materials/ForwardMaterialShader.h index 25479b872..2b964f430 100644 --- a/Source/Engine/Graphics/Materials/ForwardMaterialShader.h +++ b/Source/Engine/Graphics/Materials/ForwardMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/GUIMaterialShader.cpp b/Source/Engine/Graphics/Materials/GUIMaterialShader.cpp index cc2d61775..fe5b64673 100644 --- a/Source/Engine/Graphics/Materials/GUIMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/GUIMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GUIMaterialShader.h" #include "MaterialParams.h" diff --git a/Source/Engine/Graphics/Materials/GUIMaterialShader.h b/Source/Engine/Graphics/Materials/GUIMaterialShader.h index 29ebe1eaf..32bcf2575 100644 --- a/Source/Engine/Graphics/Materials/GUIMaterialShader.h +++ b/Source/Engine/Graphics/Materials/GUIMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/IMaterial.h b/Source/Engine/Graphics/Materials/IMaterial.h index bd3337876..b27084b36 100644 --- a/Source/Engine/Graphics/Materials/IMaterial.h +++ b/Source/Engine/Graphics/Materials/IMaterial.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/MaterialInfo.h b/Source/Engine/Graphics/Materials/MaterialInfo.h index dfdcdc9be..86fab4548 100644 --- a/Source/Engine/Graphics/Materials/MaterialInfo.h +++ b/Source/Engine/Graphics/Materials/MaterialInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/MaterialParams.cpp b/Source/Engine/Graphics/Materials/MaterialParams.cpp index 50ac1f8bb..e3d9fb868 100644 --- a/Source/Engine/Graphics/Materials/MaterialParams.cpp +++ b/Source/Engine/Graphics/Materials/MaterialParams.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialParams.h" #include "MaterialInfo.h" diff --git a/Source/Engine/Graphics/Materials/MaterialParams.h b/Source/Engine/Graphics/Materials/MaterialParams.h index 1b68694d2..083eec59a 100644 --- a/Source/Engine/Graphics/Materials/MaterialParams.h +++ b/Source/Engine/Graphics/Materials/MaterialParams.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/MaterialShader.cpp b/Source/Engine/Graphics/Materials/MaterialShader.cpp index a81293430..93a063ef3 100644 --- a/Source/Engine/Graphics/Materials/MaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/MaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialShader.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Graphics/Materials/MaterialShader.h b/Source/Engine/Graphics/Materials/MaterialShader.h index c7249b2ab..513a7502e 100644 --- a/Source/Engine/Graphics/Materials/MaterialShader.h +++ b/Source/Engine/Graphics/Materials/MaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/MaterialShaderFeatures.cpp b/Source/Engine/Graphics/Materials/MaterialShaderFeatures.cpp index a64fd3605..3d2c47b9c 100644 --- a/Source/Engine/Graphics/Materials/MaterialShaderFeatures.cpp +++ b/Source/Engine/Graphics/Materials/MaterialShaderFeatures.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MaterialShaderFeatures.h" #include "Engine/Graphics/RenderTask.h" diff --git a/Source/Engine/Graphics/Materials/MaterialShaderFeatures.h b/Source/Engine/Graphics/Materials/MaterialShaderFeatures.h index e4d222ef7..d4e7d2b38 100644 --- a/Source/Engine/Graphics/Materials/MaterialShaderFeatures.h +++ b/Source/Engine/Graphics/Materials/MaterialShaderFeatures.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/ParticleMaterialShader.cpp b/Source/Engine/Graphics/Materials/ParticleMaterialShader.cpp index 196108608..124d48d1f 100644 --- a/Source/Engine/Graphics/Materials/ParticleMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/ParticleMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/ParticleMaterialShader.h b/Source/Engine/Graphics/Materials/ParticleMaterialShader.h index b3b04d541..b80a5a70a 100644 --- a/Source/Engine/Graphics/Materials/ParticleMaterialShader.h +++ b/Source/Engine/Graphics/Materials/ParticleMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/PostFxMaterialShader.cpp b/Source/Engine/Graphics/Materials/PostFxMaterialShader.cpp index ff1ff3fb6..d47673085 100644 --- a/Source/Engine/Graphics/Materials/PostFxMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/PostFxMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PostFxMaterialShader.h" #include "MaterialParams.h" diff --git a/Source/Engine/Graphics/Materials/PostFxMaterialShader.h b/Source/Engine/Graphics/Materials/PostFxMaterialShader.h index 7e5c53878..0a2caf4d8 100644 --- a/Source/Engine/Graphics/Materials/PostFxMaterialShader.h +++ b/Source/Engine/Graphics/Materials/PostFxMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/TerrainMaterialShader.cpp b/Source/Engine/Graphics/Materials/TerrainMaterialShader.cpp index bcdb4ee83..e036fe9a3 100644 --- a/Source/Engine/Graphics/Materials/TerrainMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/TerrainMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TerrainMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/TerrainMaterialShader.h b/Source/Engine/Graphics/Materials/TerrainMaterialShader.h index 5e050ea87..e3cfb0243 100644 --- a/Source/Engine/Graphics/Materials/TerrainMaterialShader.h +++ b/Source/Engine/Graphics/Materials/TerrainMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.cpp b/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.cpp index f57a4df36..9f1edd936 100644 --- a/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.cpp +++ b/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VolumeParticleMaterialShader.h" #include "MaterialShaderFeatures.h" diff --git a/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.h b/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.h index 7a4a3fa91..50a6372bf 100644 --- a/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.h +++ b/Source/Engine/Graphics/Materials/VolumeParticleMaterialShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Mesh.cs b/Source/Engine/Graphics/Mesh.cs index 9df3c9d7f..d4f693e77 100644 --- a/Source/Engine/Graphics/Mesh.cs +++ b/Source/Engine/Graphics/Mesh.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Graphics/Model.cs b/Source/Engine/Graphics/Model.cs index ab6b70bd3..639ae3640 100644 --- a/Source/Engine/Graphics/Model.cs +++ b/Source/Engine/Graphics/Model.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Graphics/Models/BlendShape.cpp b/Source/Engine/Graphics/Models/BlendShape.cpp index ff8147824..15b63d1f4 100644 --- a/Source/Engine/Graphics/Models/BlendShape.cpp +++ b/Source/Engine/Graphics/Models/BlendShape.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BlendShape.h" #include "Engine/Content/Assets/SkinnedModel.h" diff --git a/Source/Engine/Graphics/Models/BlendShape.h b/Source/Engine/Graphics/Models/BlendShape.h index b63b0081f..10dc3b0a7 100644 --- a/Source/Engine/Graphics/Models/BlendShape.h +++ b/Source/Engine/Graphics/Models/BlendShape.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/CollisionProxy.h b/Source/Engine/Graphics/Models/CollisionProxy.h index cef3b58b7..e6a515987 100644 --- a/Source/Engine/Graphics/Models/CollisionProxy.h +++ b/Source/Engine/Graphics/Models/CollisionProxy.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/Config.h b/Source/Engine/Graphics/Models/Config.h index 20e668fce..a4c38c2f0 100644 --- a/Source/Engine/Graphics/Models/Config.h +++ b/Source/Engine/Graphics/Models/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/MaterialSlot.h b/Source/Engine/Graphics/Models/MaterialSlot.h index 9e60efaae..7b0da9eb1 100644 --- a/Source/Engine/Graphics/Models/MaterialSlot.h +++ b/Source/Engine/Graphics/Models/MaterialSlot.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/Mesh.cpp b/Source/Engine/Graphics/Models/Mesh.cpp index dc847a471..e17c0806b 100644 --- a/Source/Engine/Graphics/Models/Mesh.cpp +++ b/Source/Engine/Graphics/Models/Mesh.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Mesh.h" #include "ModelInstanceEntry.h" diff --git a/Source/Engine/Graphics/Models/Mesh.h b/Source/Engine/Graphics/Models/Mesh.h index 5be9ea018..c25276668 100644 --- a/Source/Engine/Graphics/Models/Mesh.h +++ b/Source/Engine/Graphics/Models/Mesh.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/MeshBase.h b/Source/Engine/Graphics/Models/MeshBase.h index 1816118d3..b59706967 100644 --- a/Source/Engine/Graphics/Models/MeshBase.h +++ b/Source/Engine/Graphics/Models/MeshBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/ModelData.Tool.cpp b/Source/Engine/Graphics/Models/ModelData.Tool.cpp index 57fc46448..89a227eb7 100644 --- a/Source/Engine/Graphics/Models/ModelData.Tool.cpp +++ b/Source/Engine/Graphics/Models/ModelData.Tool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL diff --git a/Source/Engine/Graphics/Models/ModelData.cpp b/Source/Engine/Graphics/Models/ModelData.cpp index 29be1aa24..4ba20b2bc 100644 --- a/Source/Engine/Graphics/Models/ModelData.cpp +++ b/Source/Engine/Graphics/Models/ModelData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ModelData.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Graphics/Models/ModelData.h b/Source/Engine/Graphics/Models/ModelData.h index a3630e0aa..1a5cdaad9 100644 --- a/Source/Engine/Graphics/Models/ModelData.h +++ b/Source/Engine/Graphics/Models/ModelData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/ModelInstanceEntry.cpp b/Source/Engine/Graphics/Models/ModelInstanceEntry.cpp index 0df31c976..fc6e696b1 100644 --- a/Source/Engine/Graphics/Models/ModelInstanceEntry.cpp +++ b/Source/Engine/Graphics/Models/ModelInstanceEntry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ModelInstanceEntry.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Graphics/Models/ModelInstanceEntry.h b/Source/Engine/Graphics/Models/ModelInstanceEntry.h index 6e28c2a7e..2d5a820e2 100644 --- a/Source/Engine/Graphics/Models/ModelInstanceEntry.h +++ b/Source/Engine/Graphics/Models/ModelInstanceEntry.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/ModelLOD.cpp b/Source/Engine/Graphics/Models/ModelLOD.cpp index ec71f7b7e..766f6aa1f 100644 --- a/Source/Engine/Graphics/Models/ModelLOD.cpp +++ b/Source/Engine/Graphics/Models/ModelLOD.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ModelLOD.h" #include "Engine/Core/Math/Transform.h" diff --git a/Source/Engine/Graphics/Models/ModelLOD.h b/Source/Engine/Graphics/Models/ModelLOD.h index fb3363ecc..46a90ea7f 100644 --- a/Source/Engine/Graphics/Models/ModelLOD.h +++ b/Source/Engine/Graphics/Models/ModelLOD.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkeletonData.h b/Source/Engine/Graphics/Models/SkeletonData.h index 6e6203e88..035f8c10a 100644 --- a/Source/Engine/Graphics/Models/SkeletonData.h +++ b/Source/Engine/Graphics/Models/SkeletonData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkeletonMapping.h b/Source/Engine/Graphics/Models/SkeletonMapping.h index e9ec9f75e..ac2af245b 100644 --- a/Source/Engine/Graphics/Models/SkeletonMapping.h +++ b/Source/Engine/Graphics/Models/SkeletonMapping.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkeletonUpdater.h b/Source/Engine/Graphics/Models/SkeletonUpdater.h index 1c17884d4..c88fac326 100644 --- a/Source/Engine/Graphics/Models/SkeletonUpdater.h +++ b/Source/Engine/Graphics/Models/SkeletonUpdater.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkinnedMesh.cpp b/Source/Engine/Graphics/Models/SkinnedMesh.cpp index 6da1945a7..6704077c7 100644 --- a/Source/Engine/Graphics/Models/SkinnedMesh.cpp +++ b/Source/Engine/Graphics/Models/SkinnedMesh.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkinnedMesh.h" #include "ModelInstanceEntry.h" diff --git a/Source/Engine/Graphics/Models/SkinnedMesh.h b/Source/Engine/Graphics/Models/SkinnedMesh.h index 874bdb48a..f05827177 100644 --- a/Source/Engine/Graphics/Models/SkinnedMesh.h +++ b/Source/Engine/Graphics/Models/SkinnedMesh.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkinnedMeshDrawData.cpp b/Source/Engine/Graphics/Models/SkinnedMeshDrawData.cpp index ffe24bb95..5472cc7e2 100644 --- a/Source/Engine/Graphics/Models/SkinnedMeshDrawData.cpp +++ b/Source/Engine/Graphics/Models/SkinnedMeshDrawData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkinnedMeshDrawData.h" #include "Engine/Graphics/GPUDevice.h" diff --git a/Source/Engine/Graphics/Models/SkinnedMeshDrawData.h b/Source/Engine/Graphics/Models/SkinnedMeshDrawData.h index 2176fc7f1..fb1632f47 100644 --- a/Source/Engine/Graphics/Models/SkinnedMeshDrawData.h +++ b/Source/Engine/Graphics/Models/SkinnedMeshDrawData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/SkinnedModelLOD.cpp b/Source/Engine/Graphics/Models/SkinnedModelLOD.cpp index 539118a85..4bb33fc6d 100644 --- a/Source/Engine/Graphics/Models/SkinnedModelLOD.cpp +++ b/Source/Engine/Graphics/Models/SkinnedModelLOD.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkinnedModelLOD.h" #include "Engine/Graphics/GPUDevice.h" diff --git a/Source/Engine/Graphics/Models/SkinnedModelLOD.h b/Source/Engine/Graphics/Models/SkinnedModelLOD.h index 32d2f2ee5..7a709c9d2 100644 --- a/Source/Engine/Graphics/Models/SkinnedModelLOD.h +++ b/Source/Engine/Graphics/Models/SkinnedModelLOD.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Models/Types.h b/Source/Engine/Graphics/Models/Types.h index 2272a3a08..2a0a044f1 100644 --- a/Source/Engine/Graphics/Models/Types.h +++ b/Source/Engine/Graphics/Models/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/PixelFormat.h b/Source/Engine/Graphics/PixelFormat.h index 737b8b8fa..1257e42b7 100644 --- a/Source/Engine/Graphics/PixelFormat.h +++ b/Source/Engine/Graphics/PixelFormat.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/PixelFormatExtensions.cpp b/Source/Engine/Graphics/PixelFormatExtensions.cpp index c22c9aba6..991844b22 100644 --- a/Source/Engine/Graphics/PixelFormatExtensions.cpp +++ b/Source/Engine/Graphics/PixelFormatExtensions.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PixelFormatExtensions.h" #include "Engine/Core/Math/Math.h" diff --git a/Source/Engine/Graphics/PixelFormatExtensions.h b/Source/Engine/Graphics/PixelFormatExtensions.h index 1d8ca8c25..604bcb2c3 100644 --- a/Source/Engine/Graphics/PixelFormatExtensions.h +++ b/Source/Engine/Graphics/PixelFormatExtensions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/PostProcessBase.h b/Source/Engine/Graphics/PostProcessBase.h index d903b1278..6ae4bcce0 100644 --- a/Source/Engine/Graphics/PostProcessBase.h +++ b/Source/Engine/Graphics/PostProcessBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/PostProcessSettings.cpp b/Source/Engine/Graphics/PostProcessSettings.cpp index c49f46bf0..3b28107b2 100644 --- a/Source/Engine/Graphics/PostProcessSettings.cpp +++ b/Source/Engine/Graphics/PostProcessSettings.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PostProcessSettings.h" #include "Engine/Serialization/JsonTools.h" diff --git a/Source/Engine/Graphics/PostProcessSettings.cs b/Source/Engine/Graphics/PostProcessSettings.cs index 700ebed58..37f87d3f7 100644 --- a/Source/Engine/Graphics/PostProcessSettings.cs +++ b/Source/Engine/Graphics/PostProcessSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Graphics/PostProcessSettings.h b/Source/Engine/Graphics/PostProcessSettings.h index ed8a6dba2..27f5682e8 100644 --- a/Source/Engine/Graphics/PostProcessSettings.h +++ b/Source/Engine/Graphics/PostProcessSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/RenderBuffers.cpp b/Source/Engine/Graphics/RenderBuffers.cpp index 6edceab8e..697046a3a 100644 --- a/Source/Engine/Graphics/RenderBuffers.cpp +++ b/Source/Engine/Graphics/RenderBuffers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderBuffers.h" #include "Engine/Graphics/GPUDevice.h" diff --git a/Source/Engine/Graphics/RenderBuffers.h b/Source/Engine/Graphics/RenderBuffers.h index d5f56119d..baf473659 100644 --- a/Source/Engine/Graphics/RenderBuffers.h +++ b/Source/Engine/Graphics/RenderBuffers.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/RenderTargetPool.cpp b/Source/Engine/Graphics/RenderTargetPool.cpp index 26fa3f6ac..7c192a2d1 100644 --- a/Source/Engine/Graphics/RenderTargetPool.cpp +++ b/Source/Engine/Graphics/RenderTargetPool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderTargetPool.h" #include "GPUDevice.h" diff --git a/Source/Engine/Graphics/RenderTargetPool.h b/Source/Engine/Graphics/RenderTargetPool.h index cba7a325d..f8852a286 100644 --- a/Source/Engine/Graphics/RenderTargetPool.h +++ b/Source/Engine/Graphics/RenderTargetPool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/RenderTask.cpp b/Source/Engine/Graphics/RenderTask.cpp index b0aef806a..f44dd2d80 100644 --- a/Source/Engine/Graphics/RenderTask.cpp +++ b/Source/Engine/Graphics/RenderTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderTask.h" #include "RenderBuffers.h" diff --git a/Source/Engine/Graphics/RenderTask.cs b/Source/Engine/Graphics/RenderTask.cs index 7d85263e8..d1b95f306 100644 --- a/Source/Engine/Graphics/RenderTask.cs +++ b/Source/Engine/Graphics/RenderTask.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Graphics/RenderTask.h b/Source/Engine/Graphics/RenderTask.h index 71c122ffd..186f9de95 100644 --- a/Source/Engine/Graphics/RenderTask.h +++ b/Source/Engine/Graphics/RenderTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/RenderTools.cpp b/Source/Engine/Graphics/RenderTools.cpp index 184eb82f7..8a7f9e81e 100644 --- a/Source/Engine/Graphics/RenderTools.cpp +++ b/Source/Engine/Graphics/RenderTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderTools.h" #include "PixelFormatExtensions.h" diff --git a/Source/Engine/Graphics/RenderTools.h b/Source/Engine/Graphics/RenderTools.h index c3088a96d..07cb89f05 100644 --- a/Source/Engine/Graphics/RenderTools.h +++ b/Source/Engine/Graphics/RenderTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/RenderView.cpp b/Source/Engine/Graphics/RenderView.cpp index 125897ea7..f655efd82 100644 --- a/Source/Engine/Graphics/RenderView.cpp +++ b/Source/Engine/Graphics/RenderView.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderView.h" #include "Engine/Level/LargeWorlds.h" diff --git a/Source/Engine/Graphics/RenderView.cs b/Source/Engine/Graphics/RenderView.cs index 69de869e1..bde35e03a 100644 --- a/Source/Engine/Graphics/RenderView.cs +++ b/Source/Engine/Graphics/RenderView.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Graphics/RenderView.h b/Source/Engine/Graphics/RenderView.h index dd974761e..b3a5db6b7 100644 --- a/Source/Engine/Graphics/RenderView.h +++ b/Source/Engine/Graphics/RenderView.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Shaders/Config.h b/Source/Engine/Graphics/Shaders/Config.h index 071268286..904fb121c 100644 --- a/Source/Engine/Graphics/Shaders/Config.h +++ b/Source/Engine/Graphics/Shaders/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Shaders/GPUConstantBuffer.h b/Source/Engine/Graphics/Shaders/GPUConstantBuffer.h index 0d6eb41f6..a59af2340 100644 --- a/Source/Engine/Graphics/Shaders/GPUConstantBuffer.h +++ b/Source/Engine/Graphics/Shaders/GPUConstantBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Shaders/GPUShader.cpp b/Source/Engine/Graphics/Shaders/GPUShader.cpp index d17c00930..166070701 100644 --- a/Source/Engine/Graphics/Shaders/GPUShader.cpp +++ b/Source/Engine/Graphics/Shaders/GPUShader.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUShader.h" #include "GPUConstantBuffer.h" diff --git a/Source/Engine/Graphics/Shaders/GPUShader.h b/Source/Engine/Graphics/Shaders/GPUShader.h index f10da5532..5a23ec55b 100644 --- a/Source/Engine/Graphics/Shaders/GPUShader.h +++ b/Source/Engine/Graphics/Shaders/GPUShader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Shaders/GPUShaderProgram.h b/Source/Engine/Graphics/Shaders/GPUShaderProgram.h index 826be670b..09c45506f 100644 --- a/Source/Engine/Graphics/Shaders/GPUShaderProgram.h +++ b/Source/Engine/Graphics/Shaders/GPUShaderProgram.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/SkinnedMesh.cs b/Source/Engine/Graphics/SkinnedMesh.cs index 5eefbf889..5998c6a1e 100644 --- a/Source/Engine/Graphics/SkinnedMesh.cs +++ b/Source/Engine/Graphics/SkinnedMesh.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Graphics/TextureBase.cs b/Source/Engine/Graphics/TextureBase.cs index 19ae402d7..93b646d98 100644 --- a/Source/Engine/Graphics/TextureBase.cs +++ b/Source/Engine/Graphics/TextureBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Graphics/Textures/GPUSampler.cpp b/Source/Engine/Graphics/Textures/GPUSampler.cpp index 6a1ed592b..617674b21 100644 --- a/Source/Engine/Graphics/Textures/GPUSampler.cpp +++ b/Source/Engine/Graphics/Textures/GPUSampler.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUSampler.h" #include "GPUSamplerDescription.h" diff --git a/Source/Engine/Graphics/Textures/GPUSampler.h b/Source/Engine/Graphics/Textures/GPUSampler.h index 6f5760320..c2e7e90e7 100644 --- a/Source/Engine/Graphics/Textures/GPUSampler.h +++ b/Source/Engine/Graphics/Textures/GPUSampler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/GPUSamplerDescription.cs b/Source/Engine/Graphics/Textures/GPUSamplerDescription.cs index 2813bc983..a582f0390 100644 --- a/Source/Engine/Graphics/Textures/GPUSamplerDescription.cs +++ b/Source/Engine/Graphics/Textures/GPUSamplerDescription.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Graphics/Textures/GPUSamplerDescription.h b/Source/Engine/Graphics/Textures/GPUSamplerDescription.h index aec6f848d..a3efbfc53 100644 --- a/Source/Engine/Graphics/Textures/GPUSamplerDescription.h +++ b/Source/Engine/Graphics/Textures/GPUSamplerDescription.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/GPUTexture.cpp b/Source/Engine/Graphics/Textures/GPUTexture.cpp index 167dfab60..781ef320c 100644 --- a/Source/Engine/Graphics/Textures/GPUTexture.cpp +++ b/Source/Engine/Graphics/Textures/GPUTexture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUTexture.h" #include "GPUTextureDescription.h" diff --git a/Source/Engine/Graphics/Textures/GPUTexture.h b/Source/Engine/Graphics/Textures/GPUTexture.h index bb1aa1eb2..590e5b17c 100644 --- a/Source/Engine/Graphics/Textures/GPUTexture.h +++ b/Source/Engine/Graphics/Textures/GPUTexture.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/GPUTextureDescription.cs b/Source/Engine/Graphics/Textures/GPUTextureDescription.cs index 850060a9d..8e1f74c52 100644 --- a/Source/Engine/Graphics/Textures/GPUTextureDescription.cs +++ b/Source/Engine/Graphics/Textures/GPUTextureDescription.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Graphics/Textures/GPUTextureDescription.h b/Source/Engine/Graphics/Textures/GPUTextureDescription.h index 0194c9746..307496a4f 100644 --- a/Source/Engine/Graphics/Textures/GPUTextureDescription.h +++ b/Source/Engine/Graphics/Textures/GPUTextureDescription.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/ITextureOwner.h b/Source/Engine/Graphics/Textures/ITextureOwner.h index ff2522672..2e3769930 100644 --- a/Source/Engine/Graphics/Textures/ITextureOwner.h +++ b/Source/Engine/Graphics/Textures/ITextureOwner.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/StreamingTexture.cpp b/Source/Engine/Graphics/Textures/StreamingTexture.cpp index 5af397dbe..aaac9b6d4 100644 --- a/Source/Engine/Graphics/Textures/StreamingTexture.cpp +++ b/Source/Engine/Graphics/Textures/StreamingTexture.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StreamingTexture.h" #include "Engine/Threading/Threading.h" diff --git a/Source/Engine/Graphics/Textures/StreamingTexture.h b/Source/Engine/Graphics/Textures/StreamingTexture.h index a785d5b9b..4ded0bdbb 100644 --- a/Source/Engine/Graphics/Textures/StreamingTexture.h +++ b/Source/Engine/Graphics/Textures/StreamingTexture.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/TextureBase.cpp b/Source/Engine/Graphics/Textures/TextureBase.cpp index fbd85830e..bcbe1d0b5 100644 --- a/Source/Engine/Graphics/Textures/TextureBase.cpp +++ b/Source/Engine/Graphics/Textures/TextureBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TextureBase.h" #include "TextureData.h" diff --git a/Source/Engine/Graphics/Textures/TextureBase.h b/Source/Engine/Graphics/Textures/TextureBase.h index 857d03085..52b00ac7d 100644 --- a/Source/Engine/Graphics/Textures/TextureBase.h +++ b/Source/Engine/Graphics/Textures/TextureBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/TextureData.h b/Source/Engine/Graphics/Textures/TextureData.h index 33f6d8df1..76f3a2178 100644 --- a/Source/Engine/Graphics/Textures/TextureData.h +++ b/Source/Engine/Graphics/Textures/TextureData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/TextureUtils.h b/Source/Engine/Graphics/Textures/TextureUtils.h index 5ab496fe6..b021d27fe 100644 --- a/Source/Engine/Graphics/Textures/TextureUtils.h +++ b/Source/Engine/Graphics/Textures/TextureUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Graphics/Textures/Types.h b/Source/Engine/Graphics/Textures/Types.h index ee1130010..f261e83cb 100644 --- a/Source/Engine/Graphics/Textures/Types.h +++ b/Source/Engine/Graphics/Textures/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp index 9a9abb146..4f1f02284 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h index cdae2b846..d91e231b6 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUBufferDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.cpp index 74ebdde32..9ec5784b8 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.h index 327c149a2..209968fda 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUContextDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.cpp index 768cdd883..ba33c4679 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.h index 5ecd685e6..d1aeb6411 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUDeviceDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.cpp index a1d5e3a9c..97c1281a3 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.h index 2cd948469..d3dad1241 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUPipelineStateDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.cpp index d3b3293c2..428390637 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.h index 6cf255f88..71ba462d0 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSamplerDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.cpp index 145ce948c..11a67ebb9 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.h index 69624b12f..558b01ca1 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderProgramDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderProgramDX11.h index 1beed0020..b7c45df1f 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderProgramDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUShaderProgramDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.cpp index 4d8e1535e..7b9564f54 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.h index 35688affc..c12df3f60 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUSwapChainDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.cpp index 8927f9435..e7faaa27a 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.h index b40bee48d..29c55dfc1 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTextureDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.cpp b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.cpp index 52987fe6c..7e6cf606a 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX11 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.h index 8ada128ec..ff0b8b59d 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GPUTimerQueryDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/GraphicsDeviceDX11.Build.cs b/Source/Engine/GraphicsDevice/DirectX/DX11/GraphicsDeviceDX11.Build.cs index d0f5a8c1b..00b4c1936 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/GraphicsDeviceDX11.Build.cs +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/GraphicsDeviceDX11.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build.NativeCpp; diff --git a/Source/Engine/GraphicsDevice/DirectX/DX11/IShaderResourceDX11.h b/Source/Engine/GraphicsDevice/DirectX/DX11/IShaderResourceDX11.h index e8e9d3fdb..7c89c177d 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX11/IShaderResourceDX11.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX11/IShaderResourceDX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.cpp index ccd6f8d4e..f0ad790af 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.h index d141e0578..4b30d0347 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandAllocatorPoolDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.cpp index c01b45f8b..8f78b749e 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.h index 4f26344c1..73ee60603 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandQueueDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandSignatureDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandSignatureDX12.h index 757779d28..6868a6d0f 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/CommandSignatureDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/CommandSignatureDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.cpp index 0f117029d..2786d823c 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.h index 24610ea19..222bf0303 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/DescriptorHeapDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp index 946c7f987..808519071 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h index 0f3410b17..094287878 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUBufferDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.cpp index 2f189af5a..470ade182 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.h index 47a331192..4196459cc 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUContextDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.cpp index 260daf005..daa8f5e9b 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.h index f9f30c24b..44d38a756 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUDeviceDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.cpp index 24c1d068f..982a27661 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.h index 0cb8d30c8..fc02699eb 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUPipelineStateDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.cpp index 52d46809c..9b80cf202 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.h index c2489bce0..4f8f04dc2 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSamplerDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.cpp index 85a22aaaa..5a664a8ba 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.h index 1d4cce7d2..5d1cc04b0 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderProgramDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderProgramDX12.h index ce4809aeb..7346c6fcc 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderProgramDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUShaderProgramDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.cpp index e7e976987..85d79582f 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.h index 74ea23c4d..c281bd41e 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUSwapChainDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.cpp index 5945257e8..badef2591 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.h index db274c91a..ca822228e 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTextureDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.cpp index b40cf6d85..6df638d23 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.h index b5532dc72..71af02372 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GPUTimerQueryDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/GraphicsDeviceDX12.Build.cs b/Source/Engine/GraphicsDevice/DirectX/DX12/GraphicsDeviceDX12.Build.cs index 782e33140..100d4e3fd 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/GraphicsDeviceDX12.Build.cs +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/GraphicsDeviceDX12.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/IShaderResourceDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/IShaderResourceDX12.h index 0641948af..e41cb8dac 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/IShaderResourceDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/IShaderResourceDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.cpp index c7a4a7796..dc6939cff 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.h index a408705cb..7672e7140 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/QueryHeapDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.cpp index 9b23bd63b..5be88d636 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.h index c61c62981..245f9641d 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/ResourceOwnerDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/Types.h b/Source/Engine/GraphicsDevice/DirectX/DX12/Types.h index 742dcc5a7..a7b66069e 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/Types.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.cpp b/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.cpp index 7bba6a3ba..27aa4c697 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.cpp +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_DIRECTX12 diff --git a/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.h b/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.h index dfff8b203..6263db273 100644 --- a/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.h +++ b/Source/Engine/GraphicsDevice/DirectX/DX12/UploadBufferDX12.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/GPUAdapterDX.h b/Source/Engine/GraphicsDevice/DirectX/GPUAdapterDX.h index aea242972..49dea0f8a 100644 --- a/Source/Engine/GraphicsDevice/DirectX/GPUAdapterDX.h +++ b/Source/Engine/GraphicsDevice/DirectX/GPUAdapterDX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/GPUDeviceDX.h b/Source/Engine/GraphicsDevice/DirectX/GPUDeviceDX.h index 2f897272b..a6b781274 100644 --- a/Source/Engine/GraphicsDevice/DirectX/GPUDeviceDX.h +++ b/Source/Engine/GraphicsDevice/DirectX/GPUDeviceDX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/IncludeDirectXHeaders.h b/Source/Engine/GraphicsDevice/DirectX/IncludeDirectXHeaders.h index 7cf4be599..79e8fb7bd 100644 --- a/Source/Engine/GraphicsDevice/DirectX/IncludeDirectXHeaders.h +++ b/Source/Engine/GraphicsDevice/DirectX/IncludeDirectXHeaders.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/DirectX/RenderToolsDX.h b/Source/Engine/GraphicsDevice/DirectX/RenderToolsDX.h index 55c8e4415..61d32cff0 100644 --- a/Source/Engine/GraphicsDevice/DirectX/RenderToolsDX.h +++ b/Source/Engine/GraphicsDevice/DirectX/RenderToolsDX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUAdapterNull.h b/Source/Engine/GraphicsDevice/Null/GPUAdapterNull.h index 84f05b16f..91b829bf4 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUAdapterNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUAdapterNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUBufferNull.h b/Source/Engine/GraphicsDevice/Null/GPUBufferNull.h index aadb5d283..abb5aed6a 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUBufferNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUBufferNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUContextNull.h b/Source/Engine/GraphicsDevice/Null/GPUContextNull.h index 61008edfb..a1ffc290a 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUContextNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUContextNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp b/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp index 53853671d..82ab7ca4d 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp +++ b/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_NULL diff --git a/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.h b/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.h index 33dfa6687..fefdc71f8 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUDeviceNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUPipelineStateNull.h b/Source/Engine/GraphicsDevice/Null/GPUPipelineStateNull.h index 58ea03e94..fa59233ea 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUPipelineStateNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUPipelineStateNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUSamplerNull.h b/Source/Engine/GraphicsDevice/Null/GPUSamplerNull.h index 84d083848..2059bc96b 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUSamplerNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUSamplerNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUShaderNull.h b/Source/Engine/GraphicsDevice/Null/GPUShaderNull.h index 953dd6d9e..7c27f7ece 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUShaderNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUShaderNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUSwapChainNull.h b/Source/Engine/GraphicsDevice/Null/GPUSwapChainNull.h index e7007d666..b6388906c 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUSwapChainNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUSwapChainNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUTextureNull.h b/Source/Engine/GraphicsDevice/Null/GPUTextureNull.h index 81b3c22d7..f49c24cd7 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUTextureNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUTextureNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GPUTimerQueryNull.h b/Source/Engine/GraphicsDevice/Null/GPUTimerQueryNull.h index 2228620ea..1a9092ed6 100644 --- a/Source/Engine/GraphicsDevice/Null/GPUTimerQueryNull.h +++ b/Source/Engine/GraphicsDevice/Null/GPUTimerQueryNull.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Null/GraphicsDeviceNull.Build.cs b/Source/Engine/GraphicsDevice/Null/GraphicsDeviceNull.Build.cs index 22bcf6e71..a81d2e952 100644 --- a/Source/Engine/GraphicsDevice/Null/GraphicsDeviceNull.Build.cs +++ b/Source/Engine/GraphicsDevice/Null/GraphicsDeviceNull.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build.NativeCpp; diff --git a/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.cpp b/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.cpp index 8663d0dd5..0c4e1f375 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN && PLATFORM_ANDROID diff --git a/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.h b/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.h index 05c0491ef..a25042d16 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Android/AndroidVulkanPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp index c25b20d03..205f4d092 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.h index c4f00bd88..e54085ecd 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/CmdBufferVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/Config.h b/Source/Engine/GraphicsDevice/Vulkan/Config.h index 561b9f6cd..55ffb5d58 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Config.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.cpp index 171e60b8b..2dad4bc9b 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.h index 695da1be9..14cd72bd0 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/DescriptorSetVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUAdapterVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUAdapterVulkan.h index 781e3e73a..0567bf5b3 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUAdapterVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUAdapterVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp index 6e4301c39..39cdf2b3f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.h index 3d31ef695..3bcf0a978 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUBufferVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.cpp index bc768f64c..02870d03a 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h index f22c713e5..2b8d9f122 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUContextVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.Layers.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.Layers.cpp index 522fc1a89..b065ef36c 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.Layers.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.Layers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GPUDeviceVulkan.h" #include "RenderToolsVulkan.h" diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp index e46786b0d..94ecbc184 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.h index f7fc6a221..5f8f0744e 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUDeviceVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.cpp index 0cccccf38..2e592631d 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.h index 7caa59f5e..0557d3d1c 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUPipelineStateVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.cpp index 10c284845..a93b5232f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.h index 5b009bc12..89375d481 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUSamplerVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderProgramVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderProgramVulkan.h index ba9aa6143..faee4a64f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderProgramVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderProgramVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.cpp index b6b2c16d1..ad436f95f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.h index 4d0743fe5..0ebc650f3 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUShaderVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.cpp index b16fe6caa..bcba1cd6e 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.h index 074838851..0dd9528e1 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUSwapChainVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.cpp index eb4466ab8..0e8600d52 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.h index fcbbd2c01..a0655c6f5 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUTextureVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.cpp index 8da67502d..9c58b77b0 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.h index 59fc22d82..b081b946d 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/GPUTimerQueryVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/GraphicsDeviceVulkan.Build.cs b/Source/Engine/GraphicsDevice/Vulkan/GraphicsDeviceVulkan.Build.cs index 648e61f67..c56619a0f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/GraphicsDeviceVulkan.Build.cs +++ b/Source/Engine/GraphicsDevice/Vulkan/GraphicsDeviceVulkan.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Engine/GraphicsDevice/Vulkan/IncludeVulkanHeaders.h b/Source/Engine/GraphicsDevice/Vulkan/IncludeVulkanHeaders.h index bf763a8f2..3a1b6a615 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/IncludeVulkanHeaders.h +++ b/Source/Engine/GraphicsDevice/Vulkan/IncludeVulkanHeaders.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.cpp b/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.cpp index a3d0c0232..2b84a50df 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN && PLATFORM_LINUX diff --git a/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.h b/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.h index 6341b81c2..6da593da4 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Linux/LinuxVulkanPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.cpp b/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.cpp index 9b2998296..07e9d9f04 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN && PLATFORM_MAC diff --git a/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.h b/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.h index 8d125a465..dbeb0e9d2 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Mac/MacVulkanPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.cpp index e535049c7..e77ad9d46 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.h index 9b1023120..37d9e6a68 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/QueueVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.cpp b/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.cpp index 7953c11f8..334a71370 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if GRAPHICS_API_VULKAN diff --git a/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.h index 2dd673117..083f1225a 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/RenderToolsVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/ResourceOwnerVulkan.h b/Source/Engine/GraphicsDevice/Vulkan/ResourceOwnerVulkan.h index e85d4e816..3fc0f2c9c 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/ResourceOwnerVulkan.h +++ b/Source/Engine/GraphicsDevice/Vulkan/ResourceOwnerVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/Types.h b/Source/Engine/GraphicsDevice/Vulkan/Types.h index f7ebe3f93..0575b1c6f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Types.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatform.h b/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatform.h index 22a305e30..bffad847a 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatform.h +++ b/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatformBase.h b/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatformBase.h index 2b4442c4f..5519b7a2f 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatformBase.h +++ b/Source/Engine/GraphicsDevice/Vulkan/VulkanPlatformBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.cpp b/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.cpp index 338fc8954..32c287001 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.cpp +++ b/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Win32VulkanPlatform.h" diff --git a/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.h b/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.h index efb293887..34bcfaff1 100644 --- a/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.h +++ b/Source/Engine/GraphicsDevice/Vulkan/Win32/Win32VulkanPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/Enums.h b/Source/Engine/Input/Enums.h index 130ae18fe..80e10786f 100644 --- a/Source/Engine/Input/Enums.h +++ b/Source/Engine/Input/Enums.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/Gamepad.cpp b/Source/Engine/Input/Gamepad.cpp index d63a16365..7835e7724 100644 --- a/Source/Engine/Input/Gamepad.cpp +++ b/Source/Engine/Input/Gamepad.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Gamepad.h" diff --git a/Source/Engine/Input/Gamepad.h b/Source/Engine/Input/Gamepad.h index bd4e70c99..63decde7c 100644 --- a/Source/Engine/Input/Gamepad.h +++ b/Source/Engine/Input/Gamepad.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/Input.Build.cs b/Source/Engine/Input/Input.Build.cs index 98e419701..fe81601e7 100644 --- a/Source/Engine/Input/Input.Build.cs +++ b/Source/Engine/Input/Input.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Input/Input.cpp b/Source/Engine/Input/Input.cpp index 51f1831f0..b7c202512 100644 --- a/Source/Engine/Input/Input.cpp +++ b/Source/Engine/Input/Input.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Input.h" #include "InputSettings.h" diff --git a/Source/Engine/Input/Input.h b/Source/Engine/Input/Input.h index a09b3358c..d9f86076b 100644 --- a/Source/Engine/Input/Input.h +++ b/Source/Engine/Input/Input.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/InputDevice.h b/Source/Engine/Input/InputDevice.h index 99db3c2d0..7fb7e68eb 100644 --- a/Source/Engine/Input/InputDevice.h +++ b/Source/Engine/Input/InputDevice.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/InputSettings.cs b/Source/Engine/Input/InputSettings.cs index 6eafeead1..7d4f1718a 100644 --- a/Source/Engine/Input/InputSettings.cs +++ b/Source/Engine/Input/InputSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Engine/Input/InputSettings.h b/Source/Engine/Input/InputSettings.h index e4b217007..086e5d784 100644 --- a/Source/Engine/Input/InputSettings.h +++ b/Source/Engine/Input/InputSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/Keyboard.h b/Source/Engine/Input/Keyboard.h index 3b673b486..45f8e295e 100644 --- a/Source/Engine/Input/Keyboard.h +++ b/Source/Engine/Input/Keyboard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/KeyboardKeys.h b/Source/Engine/Input/KeyboardKeys.h index a3727724d..a45ab6626 100644 --- a/Source/Engine/Input/KeyboardKeys.h +++ b/Source/Engine/Input/KeyboardKeys.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/Mouse.h b/Source/Engine/Input/Mouse.h index 78da85bd9..ebf25ebb1 100644 --- a/Source/Engine/Input/Mouse.h +++ b/Source/Engine/Input/Mouse.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Input/VirtualInput.h b/Source/Engine/Input/VirtualInput.h index 8036c3d48..8fd4efeb4 100644 --- a/Source/Engine/Input/VirtualInput.h +++ b/Source/Engine/Input/VirtualInput.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actor.cpp b/Source/Engine/Level/Actor.cpp index de2952df7..a0f2f94fa 100644 --- a/Source/Engine/Level/Actor.cpp +++ b/Source/Engine/Level/Actor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Actor.h" #include "ActorsCache.h" diff --git a/Source/Engine/Level/Actor.cs b/Source/Engine/Level/Actor.cs index 76e95810f..2a8d8039a 100644 --- a/Source/Engine/Level/Actor.cs +++ b/Source/Engine/Level/Actor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Level/Actor.h b/Source/Engine/Level/Actor.h index ec52a8c74..3d9ba2466 100644 --- a/Source/Engine/Level/Actor.h +++ b/Source/Engine/Level/Actor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/AnimatedModel.cpp b/Source/Engine/Level/Actors/AnimatedModel.cpp index 086b85e26..72704f95c 100644 --- a/Source/Engine/Level/Actors/AnimatedModel.cpp +++ b/Source/Engine/Level/Actors/AnimatedModel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AnimatedModel.h" #include "BoneSocket.h" diff --git a/Source/Engine/Level/Actors/AnimatedModel.h b/Source/Engine/Level/Actors/AnimatedModel.h index 6e0c3bb6d..525c58e07 100644 --- a/Source/Engine/Level/Actors/AnimatedModel.h +++ b/Source/Engine/Level/Actors/AnimatedModel.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/BoneSocket.cpp b/Source/Engine/Level/Actors/BoneSocket.cpp index d287fedcb..a232e4910 100644 --- a/Source/Engine/Level/Actors/BoneSocket.cpp +++ b/Source/Engine/Level/Actors/BoneSocket.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoneSocket.h" #include "Engine/Level/SceneObjectsFactory.h" diff --git a/Source/Engine/Level/Actors/BoneSocket.h b/Source/Engine/Level/Actors/BoneSocket.h index e73ec38eb..20544fb82 100644 --- a/Source/Engine/Level/Actors/BoneSocket.h +++ b/Source/Engine/Level/Actors/BoneSocket.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/BoxBrush.cpp b/Source/Engine/Level/Actors/BoxBrush.cpp index 02e2a3973..209ae096b 100644 --- a/Source/Engine/Level/Actors/BoxBrush.cpp +++ b/Source/Engine/Level/Actors/BoxBrush.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoxBrush.h" #include "Engine/Core/Math/Matrix.h" diff --git a/Source/Engine/Level/Actors/BoxBrush.h b/Source/Engine/Level/Actors/BoxBrush.h index aed66e420..ff2cbded9 100644 --- a/Source/Engine/Level/Actors/BoxBrush.h +++ b/Source/Engine/Level/Actors/BoxBrush.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/BoxVolume.cpp b/Source/Engine/Level/Actors/BoxVolume.cpp index 78848a94f..213b97a74 100644 --- a/Source/Engine/Level/Actors/BoxVolume.cpp +++ b/Source/Engine/Level/Actors/BoxVolume.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoxVolume.h" #include "Engine/Core/Math/Matrix.h" diff --git a/Source/Engine/Level/Actors/BoxVolume.h b/Source/Engine/Level/Actors/BoxVolume.h index e6a9d41b1..c01748d38 100644 --- a/Source/Engine/Level/Actors/BoxVolume.h +++ b/Source/Engine/Level/Actors/BoxVolume.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/BrushMode.h b/Source/Engine/Level/Actors/BrushMode.h index f6df17e28..ab4009b77 100644 --- a/Source/Engine/Level/Actors/BrushMode.h +++ b/Source/Engine/Level/Actors/BrushMode.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Camera.cpp b/Source/Engine/Level/Actors/Camera.cpp index 28c8bbbe5..6c199e6fa 100644 --- a/Source/Engine/Level/Actors/Camera.cpp +++ b/Source/Engine/Level/Actors/Camera.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Camera.h" #include "Engine/Level/SceneObjectsFactory.h" diff --git a/Source/Engine/Level/Actors/Camera.h b/Source/Engine/Level/Actors/Camera.h index 601bb4d91..806cdcfbb 100644 --- a/Source/Engine/Level/Actors/Camera.h +++ b/Source/Engine/Level/Actors/Camera.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Decal.cpp b/Source/Engine/Level/Actors/Decal.cpp index 998e2bfad..7d6b4294a 100644 --- a/Source/Engine/Level/Actors/Decal.cpp +++ b/Source/Engine/Level/Actors/Decal.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Decal.h" #include "Engine/Content/Assets/MaterialInstance.h" diff --git a/Source/Engine/Level/Actors/Decal.h b/Source/Engine/Level/Actors/Decal.h index 6dceb223a..e121fa44a 100644 --- a/Source/Engine/Level/Actors/Decal.h +++ b/Source/Engine/Level/Actors/Decal.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/DirectionalLight.cpp b/Source/Engine/Level/Actors/DirectionalLight.cpp index 621a0faf0..42d865006 100644 --- a/Source/Engine/Level/Actors/DirectionalLight.cpp +++ b/Source/Engine/Level/Actors/DirectionalLight.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DirectionalLight.h" #include "Engine/Graphics/RenderTask.h" diff --git a/Source/Engine/Level/Actors/DirectionalLight.h b/Source/Engine/Level/Actors/DirectionalLight.h index 180a5087a..7799f2989 100644 --- a/Source/Engine/Level/Actors/DirectionalLight.h +++ b/Source/Engine/Level/Actors/DirectionalLight.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/EmptyActor.cpp b/Source/Engine/Level/Actors/EmptyActor.cpp index 733bb4fa8..96d19ed32 100644 --- a/Source/Engine/Level/Actors/EmptyActor.cpp +++ b/Source/Engine/Level/Actors/EmptyActor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EmptyActor.h" diff --git a/Source/Engine/Level/Actors/EmptyActor.h b/Source/Engine/Level/Actors/EmptyActor.h index 063f96f59..8d7496a3a 100644 --- a/Source/Engine/Level/Actors/EmptyActor.h +++ b/Source/Engine/Level/Actors/EmptyActor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/EnvironmentProbe.cpp b/Source/Engine/Level/Actors/EnvironmentProbe.cpp index 0cf876c67..f3904d19f 100644 --- a/Source/Engine/Level/Actors/EnvironmentProbe.cpp +++ b/Source/Engine/Level/Actors/EnvironmentProbe.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EnvironmentProbe.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Engine/Level/Actors/EnvironmentProbe.h b/Source/Engine/Level/Actors/EnvironmentProbe.h index 9267c206c..9b1936187 100644 --- a/Source/Engine/Level/Actors/EnvironmentProbe.h +++ b/Source/Engine/Level/Actors/EnvironmentProbe.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/ExponentialHeightFog.cpp b/Source/Engine/Level/Actors/ExponentialHeightFog.cpp index d2b2b6952..acce9c076 100644 --- a/Source/Engine/Level/Actors/ExponentialHeightFog.cpp +++ b/Source/Engine/Level/Actors/ExponentialHeightFog.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ExponentialHeightFog.h" #include "DirectionalLight.h" diff --git a/Source/Engine/Level/Actors/ExponentialHeightFog.h b/Source/Engine/Level/Actors/ExponentialHeightFog.h index 7c6da6a5a..b0e5751d9 100644 --- a/Source/Engine/Level/Actors/ExponentialHeightFog.h +++ b/Source/Engine/Level/Actors/ExponentialHeightFog.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Light.cpp b/Source/Engine/Level/Actors/Light.cpp index 6696a46e8..bb3d59718 100644 --- a/Source/Engine/Level/Actors/Light.cpp +++ b/Source/Engine/Level/Actors/Light.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Light.h" #include "../Scene/Scene.h" diff --git a/Source/Engine/Level/Actors/Light.h b/Source/Engine/Level/Actors/Light.h index 5c2491773..8180009f3 100644 --- a/Source/Engine/Level/Actors/Light.h +++ b/Source/Engine/Level/Actors/Light.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/ModelInstanceActor.cpp b/Source/Engine/Level/Actors/ModelInstanceActor.cpp index a5fb15c0e..0c1879d83 100644 --- a/Source/Engine/Level/Actors/ModelInstanceActor.cpp +++ b/Source/Engine/Level/Actors/ModelInstanceActor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ModelInstanceActor.h" #include "Engine/Content/Assets/MaterialInstance.h" diff --git a/Source/Engine/Level/Actors/ModelInstanceActor.h b/Source/Engine/Level/Actors/ModelInstanceActor.h index 84a45b1c4..5353a19f5 100644 --- a/Source/Engine/Level/Actors/ModelInstanceActor.h +++ b/Source/Engine/Level/Actors/ModelInstanceActor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/PointLight.cpp b/Source/Engine/Level/Actors/PointLight.cpp index a995a71f5..d16d3bc9b 100644 --- a/Source/Engine/Level/Actors/PointLight.cpp +++ b/Source/Engine/Level/Actors/PointLight.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PointLight.h" #include "Engine/Graphics/RenderTask.h" diff --git a/Source/Engine/Level/Actors/PointLight.h b/Source/Engine/Level/Actors/PointLight.h index 728520a9f..f1179dd59 100644 --- a/Source/Engine/Level/Actors/PointLight.h +++ b/Source/Engine/Level/Actors/PointLight.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/PostFxVolume.cpp b/Source/Engine/Level/Actors/PostFxVolume.cpp index 4f46a7236..a8a2b8bb5 100644 --- a/Source/Engine/Level/Actors/PostFxVolume.cpp +++ b/Source/Engine/Level/Actors/PostFxVolume.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PostFxVolume.h" #include "Engine/Graphics/RenderTask.h" diff --git a/Source/Engine/Level/Actors/PostFxVolume.h b/Source/Engine/Level/Actors/PostFxVolume.h index 6171523f1..21ad1a010 100644 --- a/Source/Engine/Level/Actors/PostFxVolume.h +++ b/Source/Engine/Level/Actors/PostFxVolume.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Ragdoll.cpp b/Source/Engine/Level/Actors/Ragdoll.cpp index c9f8db489..d5c089335 100644 --- a/Source/Engine/Level/Actors/Ragdoll.cpp +++ b/Source/Engine/Level/Actors/Ragdoll.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Ragdoll.h" #include "AnimatedModel.h" diff --git a/Source/Engine/Level/Actors/Ragdoll.h b/Source/Engine/Level/Actors/Ragdoll.h index e0e8be411..e9571cac5 100644 --- a/Source/Engine/Level/Actors/Ragdoll.h +++ b/Source/Engine/Level/Actors/Ragdoll.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Sky.cpp b/Source/Engine/Level/Actors/Sky.cpp index d9c6558ae..0f271a897 100644 --- a/Source/Engine/Level/Actors/Sky.cpp +++ b/Source/Engine/Level/Actors/Sky.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Sky.h" #include "DirectionalLight.h" diff --git a/Source/Engine/Level/Actors/Sky.h b/Source/Engine/Level/Actors/Sky.h index e1fad03a3..81aca3653 100644 --- a/Source/Engine/Level/Actors/Sky.h +++ b/Source/Engine/Level/Actors/Sky.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/SkyLight.cpp b/Source/Engine/Level/Actors/SkyLight.cpp index 16ee6576e..a05641353 100644 --- a/Source/Engine/Level/Actors/SkyLight.cpp +++ b/Source/Engine/Level/Actors/SkyLight.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SkyLight.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Level/Actors/SkyLight.h b/Source/Engine/Level/Actors/SkyLight.h index f693d7dca..a0d880157 100644 --- a/Source/Engine/Level/Actors/SkyLight.h +++ b/Source/Engine/Level/Actors/SkyLight.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Skybox.cpp b/Source/Engine/Level/Actors/Skybox.cpp index 958c9ee53..43272053e 100644 --- a/Source/Engine/Level/Actors/Skybox.cpp +++ b/Source/Engine/Level/Actors/Skybox.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Skybox.h" #include "Engine/Core/Math/Color.h" diff --git a/Source/Engine/Level/Actors/Skybox.h b/Source/Engine/Level/Actors/Skybox.h index 088dc1ac1..3485f8091 100644 --- a/Source/Engine/Level/Actors/Skybox.h +++ b/Source/Engine/Level/Actors/Skybox.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/Spline.cpp b/Source/Engine/Level/Actors/Spline.cpp index 4da28d2d2..63ba0fe4e 100644 --- a/Source/Engine/Level/Actors/Spline.cpp +++ b/Source/Engine/Level/Actors/Spline.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Spline.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Level/Actors/Spline.h b/Source/Engine/Level/Actors/Spline.h index a1b447a26..2cf0be7f9 100644 --- a/Source/Engine/Level/Actors/Spline.h +++ b/Source/Engine/Level/Actors/Spline.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/SplineModel.cpp b/Source/Engine/Level/Actors/SplineModel.cpp index 01e261ff5..136a14a09 100644 --- a/Source/Engine/Level/Actors/SplineModel.cpp +++ b/Source/Engine/Level/Actors/SplineModel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SplineModel.h" #include "Spline.h" diff --git a/Source/Engine/Level/Actors/SplineModel.h b/Source/Engine/Level/Actors/SplineModel.h index 1d8d49fc8..50864d7b7 100644 --- a/Source/Engine/Level/Actors/SplineModel.h +++ b/Source/Engine/Level/Actors/SplineModel.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/SpotLight.cpp b/Source/Engine/Level/Actors/SpotLight.cpp index 344c25542..7c1805487 100644 --- a/Source/Engine/Level/Actors/SpotLight.cpp +++ b/Source/Engine/Level/Actors/SpotLight.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SpotLight.h" #include "Engine/Graphics/RenderView.h" diff --git a/Source/Engine/Level/Actors/SpotLight.h b/Source/Engine/Level/Actors/SpotLight.h index 34487ad57..44accc5d2 100644 --- a/Source/Engine/Level/Actors/SpotLight.h +++ b/Source/Engine/Level/Actors/SpotLight.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Actors/StaticModel.cpp b/Source/Engine/Level/Actors/StaticModel.cpp index 26eb1fc44..d292e17a4 100644 --- a/Source/Engine/Level/Actors/StaticModel.cpp +++ b/Source/Engine/Level/Actors/StaticModel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StaticModel.h" #include "Engine/Engine/Engine.h" diff --git a/Source/Engine/Level/Actors/StaticModel.h b/Source/Engine/Level/Actors/StaticModel.h index d541ef756..63b63cd58 100644 --- a/Source/Engine/Level/Actors/StaticModel.h +++ b/Source/Engine/Level/Actors/StaticModel.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/ActorsCache.cpp b/Source/Engine/Level/ActorsCache.cpp index 51089350d..14c71cfdd 100644 --- a/Source/Engine/Level/ActorsCache.cpp +++ b/Source/Engine/Level/ActorsCache.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ActorsCache.h" diff --git a/Source/Engine/Level/ActorsCache.h b/Source/Engine/Level/ActorsCache.h index 3c2566a09..9895e63f4 100644 --- a/Source/Engine/Level/ActorsCache.h +++ b/Source/Engine/Level/ActorsCache.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/LargeWorlds.h b/Source/Engine/Level/LargeWorlds.h index 430032436..514c1d5ac 100644 --- a/Source/Engine/Level/LargeWorlds.h +++ b/Source/Engine/Level/LargeWorlds.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Level.Build.cs b/Source/Engine/Level/Level.Build.cs index 7cc0dc39c..758a3c683 100644 --- a/Source/Engine/Level/Level.Build.cs +++ b/Source/Engine/Level/Level.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Level/Level.cpp b/Source/Engine/Level/Level.cpp index 485b1a3b6..351314d77 100644 --- a/Source/Engine/Level/Level.cpp +++ b/Source/Engine/Level/Level.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Level.h" #include "ActorsCache.h" diff --git a/Source/Engine/Level/Level.cs b/Source/Engine/Level/Level.cs index 71527d2ed..de589f6df 100644 --- a/Source/Engine/Level/Level.cs +++ b/Source/Engine/Level/Level.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Level/Level.h b/Source/Engine/Level/Level.h index 5fc4c909b..374bb34d5 100644 --- a/Source/Engine/Level/Level.h +++ b/Source/Engine/Level/Level.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Prefabs/Prefab.Apply.cpp b/Source/Engine/Level/Prefabs/Prefab.Apply.cpp index 7e9742ba2..e438345cb 100644 --- a/Source/Engine/Level/Prefabs/Prefab.Apply.cpp +++ b/Source/Engine/Level/Prefabs/Prefab.Apply.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Prefab.h" diff --git a/Source/Engine/Level/Prefabs/Prefab.cpp b/Source/Engine/Level/Prefabs/Prefab.cpp index 24e9ee1fc..1c0d422a9 100644 --- a/Source/Engine/Level/Prefabs/Prefab.cpp +++ b/Source/Engine/Level/Prefabs/Prefab.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Prefab.h" #include "Engine/Serialization/JsonTools.h" diff --git a/Source/Engine/Level/Prefabs/Prefab.h b/Source/Engine/Level/Prefabs/Prefab.h index a169a6b7e..2f105e9ce 100644 --- a/Source/Engine/Level/Prefabs/Prefab.h +++ b/Source/Engine/Level/Prefabs/Prefab.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Prefabs/PrefabManager.cpp b/Source/Engine/Level/Prefabs/PrefabManager.cpp index 79cb7bd91..138b6b401 100644 --- a/Source/Engine/Level/Prefabs/PrefabManager.cpp +++ b/Source/Engine/Level/Prefabs/PrefabManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PrefabManager.h" #include "../Scene/Scene.h" diff --git a/Source/Engine/Level/Prefabs/PrefabManager.h b/Source/Engine/Level/Prefabs/PrefabManager.h index 370410b25..b934a295f 100644 --- a/Source/Engine/Level/Prefabs/PrefabManager.h +++ b/Source/Engine/Level/Prefabs/PrefabManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene.cs b/Source/Engine/Level/Scene.cs index 3fb351f84..4e90cff92 100644 --- a/Source/Engine/Level/Scene.cs +++ b/Source/Engine/Level/Scene.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Level/Scene/Lightmap.cpp b/Source/Engine/Level/Scene/Lightmap.cpp index c8ef30655..f2d11e0c5 100644 --- a/Source/Engine/Level/Scene/Lightmap.cpp +++ b/Source/Engine/Level/Scene/Lightmap.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Lightmap.h" #include "Scene.h" diff --git a/Source/Engine/Level/Scene/Lightmap.h b/Source/Engine/Level/Scene/Lightmap.h index 86d8ae59c..ef43428c7 100644 --- a/Source/Engine/Level/Scene/Lightmap.h +++ b/Source/Engine/Level/Scene/Lightmap.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/Scene.cpp b/Source/Engine/Level/Scene/Scene.cpp index 410061d16..6c1541240 100644 --- a/Source/Engine/Level/Scene/Scene.cpp +++ b/Source/Engine/Level/Scene/Scene.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Scene.h" #include "SceneAsset.h" diff --git a/Source/Engine/Level/Scene/Scene.h b/Source/Engine/Level/Scene/Scene.h index 65108996c..3fc33f19d 100644 --- a/Source/Engine/Level/Scene/Scene.h +++ b/Source/Engine/Level/Scene/Scene.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneAsset.h b/Source/Engine/Level/Scene/SceneAsset.h index 47466eaec..a6e2e9533 100644 --- a/Source/Engine/Level/Scene/SceneAsset.h +++ b/Source/Engine/Level/Scene/SceneAsset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneCSGData.cpp b/Source/Engine/Level/Scene/SceneCSGData.cpp index abac3edda..3796f878f 100644 --- a/Source/Engine/Level/Scene/SceneCSGData.cpp +++ b/Source/Engine/Level/Scene/SceneCSGData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneCSGData.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Level/Scene/SceneCSGData.h b/Source/Engine/Level/Scene/SceneCSGData.h index 457f4a840..13e583394 100644 --- a/Source/Engine/Level/Scene/SceneCSGData.h +++ b/Source/Engine/Level/Scene/SceneCSGData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneLightmapsData.cpp b/Source/Engine/Level/Scene/SceneLightmapsData.cpp index ce62aeb54..738c7ab4f 100644 --- a/Source/Engine/Level/Scene/SceneLightmapsData.cpp +++ b/Source/Engine/Level/Scene/SceneLightmapsData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneLightmapsData.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Level/Scene/SceneLightmapsData.h b/Source/Engine/Level/Scene/SceneLightmapsData.h index 7c1ffe045..96563f1e7 100644 --- a/Source/Engine/Level/Scene/SceneLightmapsData.h +++ b/Source/Engine/Level/Scene/SceneLightmapsData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneNavigation.h b/Source/Engine/Level/Scene/SceneNavigation.h index 7b42487d0..a836c12c5 100644 --- a/Source/Engine/Level/Scene/SceneNavigation.h +++ b/Source/Engine/Level/Scene/SceneNavigation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneRendering.cpp b/Source/Engine/Level/Scene/SceneRendering.cpp index 8dcde5afc..686ebf70e 100644 --- a/Source/Engine/Level/Scene/SceneRendering.cpp +++ b/Source/Engine/Level/Scene/SceneRendering.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define SCENE_RENDERING_USE_PROFILER 0 diff --git a/Source/Engine/Level/Scene/SceneRendering.h b/Source/Engine/Level/Scene/SceneRendering.h index 9faa8d6f5..36f673972 100644 --- a/Source/Engine/Level/Scene/SceneRendering.h +++ b/Source/Engine/Level/Scene/SceneRendering.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Scene/SceneTicking.cpp b/Source/Engine/Level/Scene/SceneTicking.cpp index 7ddeebde5..8998a4b37 100644 --- a/Source/Engine/Level/Scene/SceneTicking.cpp +++ b/Source/Engine/Level/Scene/SceneTicking.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneTicking.h" #include "Scene.h" diff --git a/Source/Engine/Level/Scene/SceneTicking.h b/Source/Engine/Level/Scene/SceneTicking.h index 6d590fba9..230861087 100644 --- a/Source/Engine/Level/Scene/SceneTicking.h +++ b/Source/Engine/Level/Scene/SceneTicking.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/SceneInfo.cpp b/Source/Engine/Level/SceneInfo.cpp index 48abfe226..65e4aa462 100644 --- a/Source/Engine/Level/SceneInfo.cpp +++ b/Source/Engine/Level/SceneInfo.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Level/Scene/SceneLightmapsData.h" #include "Level.h" diff --git a/Source/Engine/Level/SceneInfo.h b/Source/Engine/Level/SceneInfo.h index a0c802e02..034523557 100644 --- a/Source/Engine/Level/SceneInfo.h +++ b/Source/Engine/Level/SceneInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/SceneObject.cpp b/Source/Engine/Level/SceneObject.cpp index 37f305dd4..e3568e92f 100644 --- a/Source/Engine/Level/SceneObject.cpp +++ b/Source/Engine/Level/SceneObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneObject.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Level/SceneObject.h b/Source/Engine/Level/SceneObject.h index db58a71b8..8224414be 100644 --- a/Source/Engine/Level/SceneObject.h +++ b/Source/Engine/Level/SceneObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/SceneObjectsFactory.cpp b/Source/Engine/Level/SceneObjectsFactory.cpp index f95b647c0..6c3576f35 100644 --- a/Source/Engine/Level/SceneObjectsFactory.cpp +++ b/Source/Engine/Level/SceneObjectsFactory.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneObjectsFactory.h" #include "Engine/Level/Actor.h" diff --git a/Source/Engine/Level/SceneObjectsFactory.h b/Source/Engine/Level/SceneObjectsFactory.h index 8215f99d0..1534b7359 100644 --- a/Source/Engine/Level/SceneObjectsFactory.h +++ b/Source/Engine/Level/SceneObjectsFactory.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/SceneQuery.cpp b/Source/Engine/Level/SceneQuery.cpp index e2037d718..0afd9f8be 100644 --- a/Source/Engine/Level/SceneQuery.cpp +++ b/Source/Engine/Level/SceneQuery.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SceneQuery.h" #include "Engine/Scripting/Script.h" diff --git a/Source/Engine/Level/SceneQuery.h b/Source/Engine/Level/SceneQuery.h index b04ee8fc9..4086665b2 100644 --- a/Source/Engine/Level/SceneQuery.h +++ b/Source/Engine/Level/SceneQuery.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Level/Spline.cs b/Source/Engine/Level/Spline.cs index 54f1d6284..28a6aff8c 100644 --- a/Source/Engine/Level/Spline.cs +++ b/Source/Engine/Level/Spline.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Level/Types.h b/Source/Engine/Level/Types.h index 559646236..a57859ded 100644 --- a/Source/Engine/Level/Types.h +++ b/Source/Engine/Level/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Localization/CultureInfo.cpp b/Source/Engine/Localization/CultureInfo.cpp index 367855cb6..6afd85737 100644 --- a/Source/Engine/Localization/CultureInfo.cpp +++ b/Source/Engine/Localization/CultureInfo.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CultureInfo.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Localization/CultureInfo.h b/Source/Engine/Localization/CultureInfo.h index 1ead5d876..aa82d36f6 100644 --- a/Source/Engine/Localization/CultureInfo.h +++ b/Source/Engine/Localization/CultureInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Localization/Localization.Build.cs b/Source/Engine/Localization/Localization.Build.cs index 968d9c890..6ca400fa2 100644 --- a/Source/Engine/Localization/Localization.Build.cs +++ b/Source/Engine/Localization/Localization.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Localization/Localization.cpp b/Source/Engine/Localization/Localization.cpp index 78e05aab2..b2c135856 100644 --- a/Source/Engine/Localization/Localization.cpp +++ b/Source/Engine/Localization/Localization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Localization.h" #include "CultureInfo.h" diff --git a/Source/Engine/Localization/Localization.h b/Source/Engine/Localization/Localization.h index 3a319bee9..d2dcfbb8b 100644 --- a/Source/Engine/Localization/Localization.h +++ b/Source/Engine/Localization/Localization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Localization/LocalizationSettings.h b/Source/Engine/Localization/LocalizationSettings.h index 8cf1527c2..e2c546c8b 100644 --- a/Source/Engine/Localization/LocalizationSettings.h +++ b/Source/Engine/Localization/LocalizationSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Localization/LocalizedString.cs b/Source/Engine/Localization/LocalizedString.cs index fa9a70ea2..3646d842b 100644 --- a/Source/Engine/Localization/LocalizedString.cs +++ b/Source/Engine/Localization/LocalizedString.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/Localization/LocalizedString.h b/Source/Engine/Localization/LocalizedString.h index 1af61283a..d8f3d45d3 100644 --- a/Source/Engine/Localization/LocalizedString.h +++ b/Source/Engine/Localization/LocalizedString.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Localization/LocalizedStringTable.cpp b/Source/Engine/Localization/LocalizedStringTable.cpp index 8b91db0fe..468efa53f 100644 --- a/Source/Engine/Localization/LocalizedStringTable.cpp +++ b/Source/Engine/Localization/LocalizedStringTable.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "LocalizedStringTable.h" #include "Engine/Serialization/JsonTools.h" diff --git a/Source/Engine/Localization/LocalizedStringTable.h b/Source/Engine/Localization/LocalizedStringTable.h index 6d9c7ce18..e52b5cc3f 100644 --- a/Source/Engine/Localization/LocalizedStringTable.h +++ b/Source/Engine/Localization/LocalizedStringTable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Main/Android/main.cpp b/Source/Engine/Main/Android/main.cpp index bebe53db7..b9856ea9f 100644 --- a/Source/Engine/Main/Android/main.cpp +++ b/Source/Engine/Main/Android/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_ANDROID diff --git a/Source/Engine/Main/Linux/main.cpp b/Source/Engine/Main/Linux/main.cpp index 24626d089..144ca4d58 100644 --- a/Source/Engine/Main/Linux/main.cpp +++ b/Source/Engine/Main/Linux/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Main/Mac/main.cpp b/Source/Engine/Main/Mac/main.cpp index a45a01008..266b2ca4e 100644 --- a/Source/Engine/Main/Mac/main.cpp +++ b/Source/Engine/Main/Mac/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_MAC diff --git a/Source/Engine/Main/Main.Build.cs b/Source/Engine/Main/Main.Build.cs index 57e9e7ada..b061aa303 100644 --- a/Source/Engine/Main/Main.Build.cs +++ b/Source/Engine/Main/Main.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Main/UWP/main.cpp b/Source/Engine/Main/UWP/main.cpp index e678cfa33..0600c39b9 100644 --- a/Source/Engine/Main/UWP/main.cpp +++ b/Source/Engine/Main/UWP/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UWP diff --git a/Source/Engine/Main/UWP/main.h b/Source/Engine/Main/UWP/main.h index 5d46aeb77..3b2be51ce 100644 --- a/Source/Engine/Main/UWP/main.h +++ b/Source/Engine/Main/UWP/main.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Main/Windows/main.cpp b/Source/Engine/Main/Windows/main.cpp index 1f0e9676e..d9eb6db2a 100644 --- a/Source/Engine/Main/Windows/main.cpp +++ b/Source/Engine/Main/Windows/main.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Navigation/NavCrowd.cpp b/Source/Engine/Navigation/NavCrowd.cpp index 5be3e969a..80055c3a4 100644 --- a/Source/Engine/Navigation/NavCrowd.cpp +++ b/Source/Engine/Navigation/NavCrowd.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavCrowd.h" #include "NavMesh.h" diff --git a/Source/Engine/Navigation/NavCrowd.h b/Source/Engine/Navigation/NavCrowd.h index f14ca7a08..2311e5f0f 100644 --- a/Source/Engine/Navigation/NavCrowd.h +++ b/Source/Engine/Navigation/NavCrowd.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavLink.cpp b/Source/Engine/Navigation/NavLink.cpp index d3724e6c7..5489fa6bc 100644 --- a/Source/Engine/Navigation/NavLink.cpp +++ b/Source/Engine/Navigation/NavLink.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavLink.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Navigation/NavLink.h b/Source/Engine/Navigation/NavLink.h index bd2aa7792..791cc030a 100644 --- a/Source/Engine/Navigation/NavLink.h +++ b/Source/Engine/Navigation/NavLink.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavMesh.cpp b/Source/Engine/Navigation/NavMesh.cpp index f5b04d138..38dd2961e 100644 --- a/Source/Engine/Navigation/NavMesh.cpp +++ b/Source/Engine/Navigation/NavMesh.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavMesh.h" #include "NavMeshRuntime.h" diff --git a/Source/Engine/Navigation/NavMesh.h b/Source/Engine/Navigation/NavMesh.h index 85e6dd087..33fe27b7a 100644 --- a/Source/Engine/Navigation/NavMesh.h +++ b/Source/Engine/Navigation/NavMesh.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavMeshBoundsVolume.cpp b/Source/Engine/Navigation/NavMeshBoundsVolume.cpp index 5e66211cc..85a022c82 100644 --- a/Source/Engine/Navigation/NavMeshBoundsVolume.cpp +++ b/Source/Engine/Navigation/NavMeshBoundsVolume.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavMeshBoundsVolume.h" #include "Engine/Level/Scene/Scene.h" diff --git a/Source/Engine/Navigation/NavMeshBoundsVolume.h b/Source/Engine/Navigation/NavMeshBoundsVolume.h index 4c079c695..a99cfada9 100644 --- a/Source/Engine/Navigation/NavMeshBoundsVolume.h +++ b/Source/Engine/Navigation/NavMeshBoundsVolume.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavMeshBuilder.cpp b/Source/Engine/Navigation/NavMeshBuilder.cpp index 5459b1363..b0959cb34 100644 --- a/Source/Engine/Navigation/NavMeshBuilder.cpp +++ b/Source/Engine/Navigation/NavMeshBuilder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_NAV_MESH_BUILDER diff --git a/Source/Engine/Navigation/NavMeshBuilder.h b/Source/Engine/Navigation/NavMeshBuilder.h index 42c9efc36..44516a67c 100644 --- a/Source/Engine/Navigation/NavMeshBuilder.h +++ b/Source/Engine/Navigation/NavMeshBuilder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavMeshData.cpp b/Source/Engine/Navigation/NavMeshData.cpp index cbf4056ba..7c90ecd45 100644 --- a/Source/Engine/Navigation/NavMeshData.cpp +++ b/Source/Engine/Navigation/NavMeshData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavMeshData.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Navigation/NavMeshData.h b/Source/Engine/Navigation/NavMeshData.h index a56e3a569..14fc65499 100644 --- a/Source/Engine/Navigation/NavMeshData.h +++ b/Source/Engine/Navigation/NavMeshData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavMeshRuntime.cpp b/Source/Engine/Navigation/NavMeshRuntime.cpp index ba09202d1..5b229a424 100644 --- a/Source/Engine/Navigation/NavMeshRuntime.cpp +++ b/Source/Engine/Navigation/NavMeshRuntime.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavMeshRuntime.h" #include "NavigationSettings.h" diff --git a/Source/Engine/Navigation/NavMeshRuntime.h b/Source/Engine/Navigation/NavMeshRuntime.h index 4c5c2b152..2183ca6f2 100644 --- a/Source/Engine/Navigation/NavMeshRuntime.h +++ b/Source/Engine/Navigation/NavMeshRuntime.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavModifierVolume.cpp b/Source/Engine/Navigation/NavModifierVolume.cpp index c7bdc4234..d5d57fa8d 100644 --- a/Source/Engine/Navigation/NavModifierVolume.cpp +++ b/Source/Engine/Navigation/NavModifierVolume.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NavModifierVolume.h" #include "NavigationSettings.h" diff --git a/Source/Engine/Navigation/NavModifierVolume.h b/Source/Engine/Navigation/NavModifierVolume.h index 0f1e9f9c6..7b148fc2f 100644 --- a/Source/Engine/Navigation/NavModifierVolume.h +++ b/Source/Engine/Navigation/NavModifierVolume.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/Navigation.Build.cs b/Source/Engine/Navigation/Navigation.Build.cs index 6cd312413..251bfe5ec 100644 --- a/Source/Engine/Navigation/Navigation.Build.cs +++ b/Source/Engine/Navigation/Navigation.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Navigation/Navigation.cpp b/Source/Engine/Navigation/Navigation.cpp index a9e0711f8..8bc94eaaa 100644 --- a/Source/Engine/Navigation/Navigation.cpp +++ b/Source/Engine/Navigation/Navigation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Navigation.h" #include "NavigationSettings.h" diff --git a/Source/Engine/Navigation/Navigation.h b/Source/Engine/Navigation/Navigation.h index f68614aae..4ca6aa470 100644 --- a/Source/Engine/Navigation/Navigation.h +++ b/Source/Engine/Navigation/Navigation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavigationSettings.cs b/Source/Engine/Navigation/NavigationSettings.cs index a13423cc5..25acb5cb1 100644 --- a/Source/Engine/Navigation/NavigationSettings.cs +++ b/Source/Engine/Navigation/NavigationSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.Serialization; diff --git a/Source/Engine/Navigation/NavigationSettings.h b/Source/Engine/Navigation/NavigationSettings.h index bd884318e..2401c333b 100644 --- a/Source/Engine/Navigation/NavigationSettings.h +++ b/Source/Engine/Navigation/NavigationSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Navigation/NavigationTypes.h b/Source/Engine/Navigation/NavigationTypes.h index 180b90f3f..4db71ac69 100644 --- a/Source/Engine/Navigation/NavigationTypes.h +++ b/Source/Engine/Navigation/NavigationTypes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/Drivers/ENetDriver.cpp b/Source/Engine/Networking/Drivers/ENetDriver.cpp index 517584eed..6a436cba4 100644 --- a/Source/Engine/Networking/Drivers/ENetDriver.cpp +++ b/Source/Engine/Networking/Drivers/ENetDriver.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // TODO: Check defines so we can disable ENet diff --git a/Source/Engine/Networking/Drivers/ENetDriver.h b/Source/Engine/Networking/Drivers/ENetDriver.h index a58b49bca..2e7378c6b 100644 --- a/Source/Engine/Networking/Drivers/ENetDriver.h +++ b/Source/Engine/Networking/Drivers/ENetDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/INetworkDriver.h b/Source/Engine/Networking/INetworkDriver.h index 71d7aee0e..956c58424 100644 --- a/Source/Engine/Networking/INetworkDriver.h +++ b/Source/Engine/Networking/INetworkDriver.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkChannelType.h b/Source/Engine/Networking/NetworkChannelType.h index 9d65d6c3f..cd3e9b8c4 100644 --- a/Source/Engine/Networking/NetworkChannelType.h +++ b/Source/Engine/Networking/NetworkChannelType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkConfig.h b/Source/Engine/Networking/NetworkConfig.h index 84a688229..794ae74a3 100644 --- a/Source/Engine/Networking/NetworkConfig.h +++ b/Source/Engine/Networking/NetworkConfig.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkConnection.h b/Source/Engine/Networking/NetworkConnection.h index 1eb2b634d..a0b8e7a3c 100644 --- a/Source/Engine/Networking/NetworkConnection.h +++ b/Source/Engine/Networking/NetworkConnection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkEvent.h b/Source/Engine/Networking/NetworkEvent.h index 63f637ad7..691d33f0c 100644 --- a/Source/Engine/Networking/NetworkEvent.h +++ b/Source/Engine/Networking/NetworkEvent.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkMessage.cs b/Source/Engine/Networking/NetworkMessage.cs index 29df6e65f..7c60ddc4d 100644 --- a/Source/Engine/Networking/NetworkMessage.cs +++ b/Source/Engine/Networking/NetworkMessage.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Text; diff --git a/Source/Engine/Networking/NetworkMessage.h b/Source/Engine/Networking/NetworkMessage.h index ed1285ccd..a82ae526d 100644 --- a/Source/Engine/Networking/NetworkMessage.h +++ b/Source/Engine/Networking/NetworkMessage.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/NetworkPeer.cpp b/Source/Engine/Networking/NetworkPeer.cpp index 47b7cd02e..91d15c9fd 100644 --- a/Source/Engine/Networking/NetworkPeer.cpp +++ b/Source/Engine/Networking/NetworkPeer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NetworkPeer.h" #include "NetworkEvent.h" diff --git a/Source/Engine/Networking/NetworkPeer.h b/Source/Engine/Networking/NetworkPeer.h index 3cc6f6d8b..085555dfe 100644 --- a/Source/Engine/Networking/NetworkPeer.h +++ b/Source/Engine/Networking/NetworkPeer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Networking/Networking.Build.cs b/Source/Engine/Networking/Networking.Build.cs index 956a6bfa5..632f5f8a2 100644 --- a/Source/Engine/Networking/Networking.Build.cs +++ b/Source/Engine/Networking/Networking.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Networking/Types.h b/Source/Engine/Networking/Types.h index 42c8ac213..e1ccb8ed0 100644 --- a/Source/Engine/Networking/Types.h +++ b/Source/Engine/Networking/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Online/IOnlinePlatform.h b/Source/Engine/Online/IOnlinePlatform.h index 6d387021d..76049ce71 100644 --- a/Source/Engine/Online/IOnlinePlatform.h +++ b/Source/Engine/Online/IOnlinePlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Online/Online.Build.cs b/Source/Engine/Online/Online.Build.cs index bb4ff1ba5..6ef78eb6e 100644 --- a/Source/Engine/Online/Online.Build.cs +++ b/Source/Engine/Online/Online.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Online/Online.cpp b/Source/Engine/Online/Online.cpp index ca53ed78e..313497f98 100644 --- a/Source/Engine/Online/Online.cpp +++ b/Source/Engine/Online/Online.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Online.h" #include "IOnlinePlatform.h" diff --git a/Source/Engine/Online/Online.h b/Source/Engine/Online/Online.h index 7d8bdc820..7b4ed678b 100644 --- a/Source/Engine/Online/Online.h +++ b/Source/Engine/Online/Online.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.ParticleModules.cpp b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.ParticleModules.cpp index 94ba3de87..5d8297452 100644 --- a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.ParticleModules.cpp +++ b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.ParticleModules.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitterGraph.CPU.h" #include "Engine/Core/Random.h" diff --git a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.Particles.cpp b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.Particles.cpp index 1caed8044..649d01d85 100644 --- a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.Particles.cpp +++ b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.Particles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitterGraph.CPU.h" #include "Engine/Particles/ParticleEmitter.h" diff --git a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.cpp b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.cpp index a08be5951..d86bc6d54 100644 --- a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.cpp +++ b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitterGraph.CPU.h" #include "Engine/Core/Collections/Sorting.h" diff --git a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.h b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.h index b1738ea49..9d1d48c81 100644 --- a/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.h +++ b/Source/Engine/Particles/Graph/CPU/ParticleEmitterGraph.CPU.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Graph/GPU/GPUParticles.cpp b/Source/Engine/Particles/Graph/GPU/GPUParticles.cpp index a5e9948f5..03a198d53 100644 --- a/Source/Engine/Particles/Graph/GPU/GPUParticles.cpp +++ b/Source/Engine/Particles/Graph/GPU/GPUParticles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_GPU_PARTICLES diff --git a/Source/Engine/Particles/Graph/GPU/GPUParticles.h b/Source/Engine/Particles/Graph/GPU/GPUParticles.h index 6d81d6d88..23ddb3966 100644 --- a/Source/Engine/Particles/Graph/GPU/GPUParticles.h +++ b/Source/Engine/Particles/Graph/GPU/GPUParticles.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.ParticleModules.cpp b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.ParticleModules.cpp index b75fb920d..cec202770 100644 --- a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.ParticleModules.cpp +++ b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.ParticleModules.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitterGraph.GPU.h" #include "Engine/Graphics/Materials/MaterialInfo.h" diff --git a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Particles.cpp b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Particles.cpp index 6f8116e2e..597c7695c 100644 --- a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Particles.cpp +++ b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Particles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PARTICLE_GPU_GRAPH diff --git a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Textures.cpp b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Textures.cpp index 05059f05e..86ace12a2 100644 --- a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Textures.cpp +++ b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.Textures.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PARTICLE_GPU_GRAPH diff --git a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.cpp b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.cpp index 30b432294..60df4a6d6 100644 --- a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.cpp +++ b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PARTICLE_GPU_GRAPH diff --git a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.h b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.h index 5f220915e..82f9c2c93 100644 --- a/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.h +++ b/Source/Engine/Particles/Graph/GPU/ParticleEmitterGraph.GPU.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Graph/ParticleEmitterGraph.h b/Source/Engine/Particles/Graph/ParticleEmitterGraph.h index 1cbd226b8..e5801827e 100644 --- a/Source/Engine/Particles/Graph/ParticleEmitterGraph.h +++ b/Source/Engine/Particles/Graph/ParticleEmitterGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticleEffect.cpp b/Source/Engine/Particles/ParticleEffect.cpp index 4c5347ca6..43531589a 100644 --- a/Source/Engine/Particles/ParticleEffect.cpp +++ b/Source/Engine/Particles/ParticleEffect.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEffect.h" #include "Particles.h" diff --git a/Source/Engine/Particles/ParticleEffect.cs b/Source/Engine/Particles/ParticleEffect.cs index 2f37a087f..2d9707630 100644 --- a/Source/Engine/Particles/ParticleEffect.cs +++ b/Source/Engine/Particles/ParticleEffect.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Particles/ParticleEffect.h b/Source/Engine/Particles/ParticleEffect.h index 9d735b364..789738bc0 100644 --- a/Source/Engine/Particles/ParticleEffect.h +++ b/Source/Engine/Particles/ParticleEffect.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticleEmitter.cpp b/Source/Engine/Particles/ParticleEmitter.cpp index 1000754ae..20e4c0490 100644 --- a/Source/Engine/Particles/ParticleEmitter.cpp +++ b/Source/Engine/Particles/ParticleEmitter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitter.h" #include "ParticleSystem.h" diff --git a/Source/Engine/Particles/ParticleEmitter.h b/Source/Engine/Particles/ParticleEmitter.h index 57d58f2ae..93279290f 100644 --- a/Source/Engine/Particles/ParticleEmitter.h +++ b/Source/Engine/Particles/ParticleEmitter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticleEmitterFunction.cpp b/Source/Engine/Particles/ParticleEmitterFunction.cpp index 935877b60..c91bc0d82 100644 --- a/Source/Engine/Particles/ParticleEmitterFunction.cpp +++ b/Source/Engine/Particles/ParticleEmitterFunction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleEmitterFunction.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Particles/ParticleEmitterFunction.h b/Source/Engine/Particles/ParticleEmitterFunction.h index 41df28fdf..ba4d95ddb 100644 --- a/Source/Engine/Particles/ParticleEmitterFunction.h +++ b/Source/Engine/Particles/ParticleEmitterFunction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticleSystem.cpp b/Source/Engine/Particles/ParticleSystem.cpp index 39f72abb5..e051eb242 100644 --- a/Source/Engine/Particles/ParticleSystem.cpp +++ b/Source/Engine/Particles/ParticleSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticleSystem.h" #include "ParticleEffect.h" diff --git a/Source/Engine/Particles/ParticleSystem.h b/Source/Engine/Particles/ParticleSystem.h index 68d3cfacb..69212036f 100644 --- a/Source/Engine/Particles/ParticleSystem.h +++ b/Source/Engine/Particles/ParticleSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Particles.Build.cs b/Source/Engine/Particles/Particles.Build.cs index 5c814c42c..18512cfa1 100644 --- a/Source/Engine/Particles/Particles.Build.cs +++ b/Source/Engine/Particles/Particles.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Engine/Particles/Particles.cpp b/Source/Engine/Particles/Particles.cpp index 5a7e776bc..a68fa5d17 100644 --- a/Source/Engine/Particles/Particles.cpp +++ b/Source/Engine/Particles/Particles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Particles.h" #include "ParticleEffect.h" diff --git a/Source/Engine/Particles/Particles.h b/Source/Engine/Particles/Particles.h index 80dc82823..34611c338 100644 --- a/Source/Engine/Particles/Particles.h +++ b/Source/Engine/Particles/Particles.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticlesData.cpp b/Source/Engine/Particles/ParticlesData.cpp index bd836638e..986e4cc9c 100644 --- a/Source/Engine/Particles/ParticlesData.cpp +++ b/Source/Engine/Particles/ParticlesData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticlesData.h" #include "ParticleEmitter.h" diff --git a/Source/Engine/Particles/ParticlesData.h b/Source/Engine/Particles/ParticlesData.h index 328caa03c..45cc455db 100644 --- a/Source/Engine/Particles/ParticlesData.h +++ b/Source/Engine/Particles/ParticlesData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/ParticlesSimulation.cpp b/Source/Engine/Particles/ParticlesSimulation.cpp index 9a7218999..2d52a7f76 100644 --- a/Source/Engine/Particles/ParticlesSimulation.cpp +++ b/Source/Engine/Particles/ParticlesSimulation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ParticlesSimulation.h" #include "ParticleSystem.h" diff --git a/Source/Engine/Particles/ParticlesSimulation.h b/Source/Engine/Particles/ParticlesSimulation.h index 603344a4b..a7d16d3d1 100644 --- a/Source/Engine/Particles/ParticlesSimulation.h +++ b/Source/Engine/Particles/ParticlesSimulation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Particles/Types.h b/Source/Engine/Particles/Types.h index c2bb376c1..891ddf05c 100644 --- a/Source/Engine/Particles/Types.h +++ b/Source/Engine/Particles/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Actors/IPhysicsActor.h b/Source/Engine/Physics/Actors/IPhysicsActor.h index 758358b4d..8776b24de 100644 --- a/Source/Engine/Physics/Actors/IPhysicsActor.h +++ b/Source/Engine/Physics/Actors/IPhysicsActor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Actors/PhysicsColliderActor.cpp b/Source/Engine/Physics/Actors/PhysicsColliderActor.cpp index 8247c2309..02645943c 100644 --- a/Source/Engine/Physics/Actors/PhysicsColliderActor.cpp +++ b/Source/Engine/Physics/Actors/PhysicsColliderActor.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PhysicsColliderActor.h" #include "Engine/Scripting/Script.h" diff --git a/Source/Engine/Physics/Actors/PhysicsColliderActor.h b/Source/Engine/Physics/Actors/PhysicsColliderActor.h index 5f0fbb4b9..caea76c79 100644 --- a/Source/Engine/Physics/Actors/PhysicsColliderActor.h +++ b/Source/Engine/Physics/Actors/PhysicsColliderActor.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Actors/RigidBody.cpp b/Source/Engine/Physics/Actors/RigidBody.cpp index e2fa531f2..a090104ff 100644 --- a/Source/Engine/Physics/Actors/RigidBody.cpp +++ b/Source/Engine/Physics/Actors/RigidBody.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RigidBody.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Physics/Actors/RigidBody.h b/Source/Engine/Physics/Actors/RigidBody.h index 399e40596..8108256c6 100644 --- a/Source/Engine/Physics/Actors/RigidBody.h +++ b/Source/Engine/Physics/Actors/RigidBody.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Actors/SplineRopeBody.cpp b/Source/Engine/Physics/Actors/SplineRopeBody.cpp index b3dfdb3a0..0129a7486 100644 --- a/Source/Engine/Physics/Actors/SplineRopeBody.cpp +++ b/Source/Engine/Physics/Actors/SplineRopeBody.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SplineRopeBody.h" #include "Engine/Level/Actors/Spline.h" diff --git a/Source/Engine/Physics/Actors/SplineRopeBody.h b/Source/Engine/Physics/Actors/SplineRopeBody.h index c19785edc..46d0578b6 100644 --- a/Source/Engine/Physics/Actors/SplineRopeBody.h +++ b/Source/Engine/Physics/Actors/SplineRopeBody.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Actors/WheeledVehicle.cpp b/Source/Engine/Physics/Actors/WheeledVehicle.cpp index 5d265280b..cc28ef756 100644 --- a/Source/Engine/Physics/Actors/WheeledVehicle.cpp +++ b/Source/Engine/Physics/Actors/WheeledVehicle.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "WheeledVehicle.h" #include "Engine/Physics/Physics.h" diff --git a/Source/Engine/Physics/Actors/WheeledVehicle.h b/Source/Engine/Physics/Actors/WheeledVehicle.h index ac7f34973..2cc43bdd7 100644 --- a/Source/Engine/Physics/Actors/WheeledVehicle.h +++ b/Source/Engine/Physics/Actors/WheeledVehicle.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/BoxCollider.cpp b/Source/Engine/Physics/Colliders/BoxCollider.cpp index 45fb8d4fc..90f0dab38 100644 --- a/Source/Engine/Physics/Colliders/BoxCollider.cpp +++ b/Source/Engine/Physics/Colliders/BoxCollider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BoxCollider.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Colliders/BoxCollider.h b/Source/Engine/Physics/Colliders/BoxCollider.h index c15d1c8b4..c69a3ee56 100644 --- a/Source/Engine/Physics/Colliders/BoxCollider.h +++ b/Source/Engine/Physics/Colliders/BoxCollider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/CapsuleCollider.cpp b/Source/Engine/Physics/Colliders/CapsuleCollider.cpp index da06b2d77..ba133e8b6 100644 --- a/Source/Engine/Physics/Colliders/CapsuleCollider.cpp +++ b/Source/Engine/Physics/Colliders/CapsuleCollider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CapsuleCollider.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Colliders/CapsuleCollider.h b/Source/Engine/Physics/Colliders/CapsuleCollider.h index fa4e487ec..2f31e0d3b 100644 --- a/Source/Engine/Physics/Colliders/CapsuleCollider.h +++ b/Source/Engine/Physics/Colliders/CapsuleCollider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/CharacterController.cpp b/Source/Engine/Physics/Colliders/CharacterController.cpp index e6bd8cd52..acce482cd 100644 --- a/Source/Engine/Physics/Colliders/CharacterController.cpp +++ b/Source/Engine/Physics/Colliders/CharacterController.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CharacterController.h" #include "Engine/Physics/Colliders/Collider.h" diff --git a/Source/Engine/Physics/Colliders/CharacterController.h b/Source/Engine/Physics/Colliders/CharacterController.h index 95d9e3293..7e729afeb 100644 --- a/Source/Engine/Physics/Colliders/CharacterController.h +++ b/Source/Engine/Physics/Colliders/CharacterController.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/Collider.cpp b/Source/Engine/Physics/Colliders/Collider.cpp index 061810849..49de1f799 100644 --- a/Source/Engine/Physics/Colliders/Collider.cpp +++ b/Source/Engine/Physics/Colliders/Collider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Collider.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Physics/Colliders/Collider.h b/Source/Engine/Physics/Colliders/Collider.h index 8bc3301e4..6b9dfcb9d 100644 --- a/Source/Engine/Physics/Colliders/Collider.h +++ b/Source/Engine/Physics/Colliders/Collider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/MeshCollider.cpp b/Source/Engine/Physics/Colliders/MeshCollider.cpp index c075ec4c1..94429ab7d 100644 --- a/Source/Engine/Physics/Colliders/MeshCollider.cpp +++ b/Source/Engine/Physics/Colliders/MeshCollider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MeshCollider.h" #include "Engine/Core/Math/Matrix.h" diff --git a/Source/Engine/Physics/Colliders/MeshCollider.h b/Source/Engine/Physics/Colliders/MeshCollider.h index 44c3662ab..f64dd6dd3 100644 --- a/Source/Engine/Physics/Colliders/MeshCollider.h +++ b/Source/Engine/Physics/Colliders/MeshCollider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/SphereCollider.cpp b/Source/Engine/Physics/Colliders/SphereCollider.cpp index 593af7454..e163484e8 100644 --- a/Source/Engine/Physics/Colliders/SphereCollider.cpp +++ b/Source/Engine/Physics/Colliders/SphereCollider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SphereCollider.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Colliders/SphereCollider.h b/Source/Engine/Physics/Colliders/SphereCollider.h index 6a816b5e5..a40d22704 100644 --- a/Source/Engine/Physics/Colliders/SphereCollider.h +++ b/Source/Engine/Physics/Colliders/SphereCollider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Colliders/SplineCollider.cpp b/Source/Engine/Physics/Colliders/SplineCollider.cpp index ae32c1438..b85617da4 100644 --- a/Source/Engine/Physics/Colliders/SplineCollider.cpp +++ b/Source/Engine/Physics/Colliders/SplineCollider.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SplineCollider.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Physics/Colliders/SplineCollider.h b/Source/Engine/Physics/Colliders/SplineCollider.h index 526040471..bea1059d8 100644 --- a/Source/Engine/Physics/Colliders/SplineCollider.h +++ b/Source/Engine/Physics/Colliders/SplineCollider.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/CollisionCooking.cpp b/Source/Engine/Physics/CollisionCooking.cpp index 672ff4409..a6b6969bd 100644 --- a/Source/Engine/Physics/CollisionCooking.cpp +++ b/Source/Engine/Physics/CollisionCooking.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PHYSICS_COOKING diff --git a/Source/Engine/Physics/CollisionCooking.h b/Source/Engine/Physics/CollisionCooking.h index 9c4d8b9bb..245968206 100644 --- a/Source/Engine/Physics/CollisionCooking.h +++ b/Source/Engine/Physics/CollisionCooking.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/CollisionData.cpp b/Source/Engine/Physics/CollisionData.cpp index 60d956880..d73b760af 100644 --- a/Source/Engine/Physics/CollisionData.cpp +++ b/Source/Engine/Physics/CollisionData.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "CollisionData.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Physics/CollisionData.cs b/Source/Engine/Physics/CollisionData.cs index d84711ff6..8b54c6218 100644 --- a/Source/Engine/Physics/CollisionData.cs +++ b/Source/Engine/Physics/CollisionData.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2014-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Physics/CollisionData.h b/Source/Engine/Physics/CollisionData.h index 458c6577d..7bf41aa36 100644 --- a/Source/Engine/Physics/CollisionData.h +++ b/Source/Engine/Physics/CollisionData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Collisions.cs b/Source/Engine/Physics/Collisions.cs index 8ef43adfb..526ae33d4 100644 --- a/Source/Engine/Physics/Collisions.cs +++ b/Source/Engine/Physics/Collisions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Engine/Physics/Collisions.h b/Source/Engine/Physics/Collisions.h index 3e6ffc5af..7336e8d5c 100644 --- a/Source/Engine/Physics/Collisions.h +++ b/Source/Engine/Physics/Collisions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/D6Joint.cs b/Source/Engine/Physics/D6Joint.cs index 5044ad54a..b8aeb8aab 100644 --- a/Source/Engine/Physics/D6Joint.cs +++ b/Source/Engine/Physics/D6Joint.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; diff --git a/Source/Engine/Physics/HingeJoint.cs b/Source/Engine/Physics/HingeJoint.cs index 8b6155b63..16dfcb5c5 100644 --- a/Source/Engine/Physics/HingeJoint.cs +++ b/Source/Engine/Physics/HingeJoint.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Physics/Joints/D6Joint.cpp b/Source/Engine/Physics/Joints/D6Joint.cpp index e0ba4bdff..a5ef035a3 100644 --- a/Source/Engine/Physics/Joints/D6Joint.cpp +++ b/Source/Engine/Physics/Joints/D6Joint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "D6Joint.h" #include "Engine/Serialization/JsonTools.h" diff --git a/Source/Engine/Physics/Joints/D6Joint.h b/Source/Engine/Physics/Joints/D6Joint.h index a0aafd48e..d6f208b33 100644 --- a/Source/Engine/Physics/Joints/D6Joint.h +++ b/Source/Engine/Physics/Joints/D6Joint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/DistanceJoint.cpp b/Source/Engine/Physics/Joints/DistanceJoint.cpp index 1dbc30cc9..96419f86b 100644 --- a/Source/Engine/Physics/Joints/DistanceJoint.cpp +++ b/Source/Engine/Physics/Joints/DistanceJoint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DistanceJoint.h" #include "Engine/Physics/PhysicsBackend.h" diff --git a/Source/Engine/Physics/Joints/DistanceJoint.h b/Source/Engine/Physics/Joints/DistanceJoint.h index 44940b5ea..7ff522a03 100644 --- a/Source/Engine/Physics/Joints/DistanceJoint.h +++ b/Source/Engine/Physics/Joints/DistanceJoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/FixedJoint.cpp b/Source/Engine/Physics/Joints/FixedJoint.cpp index 958bdef55..dff413479 100644 --- a/Source/Engine/Physics/Joints/FixedJoint.cpp +++ b/Source/Engine/Physics/Joints/FixedJoint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FixedJoint.h" #include "Engine/Physics/PhysicsBackend.h" diff --git a/Source/Engine/Physics/Joints/FixedJoint.h b/Source/Engine/Physics/Joints/FixedJoint.h index 0e2eee8e4..8020ea73f 100644 --- a/Source/Engine/Physics/Joints/FixedJoint.h +++ b/Source/Engine/Physics/Joints/FixedJoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/HingeJoint.cpp b/Source/Engine/Physics/Joints/HingeJoint.cpp index a8ae3a82b..0d8557f10 100644 --- a/Source/Engine/Physics/Joints/HingeJoint.cpp +++ b/Source/Engine/Physics/Joints/HingeJoint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "HingeJoint.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Joints/HingeJoint.h b/Source/Engine/Physics/Joints/HingeJoint.h index 9a3769c3c..6c7af54de 100644 --- a/Source/Engine/Physics/Joints/HingeJoint.h +++ b/Source/Engine/Physics/Joints/HingeJoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/Joint.cpp b/Source/Engine/Physics/Joints/Joint.cpp index 329393a90..2c7d15727 100644 --- a/Source/Engine/Physics/Joints/Joint.cpp +++ b/Source/Engine/Physics/Joints/Joint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Joint.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Joints/Joint.h b/Source/Engine/Physics/Joints/Joint.h index 6e2d7ac4c..f96e47b71 100644 --- a/Source/Engine/Physics/Joints/Joint.h +++ b/Source/Engine/Physics/Joints/Joint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/Limits.h b/Source/Engine/Physics/Joints/Limits.h index 65247567e..216d120b3 100644 --- a/Source/Engine/Physics/Joints/Limits.h +++ b/Source/Engine/Physics/Joints/Limits.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/SliderJoint.cpp b/Source/Engine/Physics/Joints/SliderJoint.cpp index f37d659d5..4f33154ff 100644 --- a/Source/Engine/Physics/Joints/SliderJoint.cpp +++ b/Source/Engine/Physics/Joints/SliderJoint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SliderJoint.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Joints/SliderJoint.h b/Source/Engine/Physics/Joints/SliderJoint.h index 46fb2a3de..d102c1dd5 100644 --- a/Source/Engine/Physics/Joints/SliderJoint.h +++ b/Source/Engine/Physics/Joints/SliderJoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Joints/SphericalJoint.cpp b/Source/Engine/Physics/Joints/SphericalJoint.cpp index 568d8a49e..63aff4477 100644 --- a/Source/Engine/Physics/Joints/SphericalJoint.cpp +++ b/Source/Engine/Physics/Joints/SphericalJoint.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SphericalJoint.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Physics/Joints/SphericalJoint.h b/Source/Engine/Physics/Joints/SphericalJoint.h index 5b29a0a25..96359d4c5 100644 --- a/Source/Engine/Physics/Joints/SphericalJoint.h +++ b/Source/Engine/Physics/Joints/SphericalJoint.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Limits.cs b/Source/Engine/Physics/Limits.cs index a02a2888c..9e955c41b 100644 --- a/Source/Engine/Physics/Limits.cs +++ b/Source/Engine/Physics/Limits.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.cpp b/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.cpp index 6bcd68a9d..9b0c3a9f9 100644 --- a/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.cpp +++ b/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PHYSX diff --git a/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.h b/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.h index c8d71a7ec..32e5979ca 100644 --- a/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.h +++ b/Source/Engine/Physics/PhysX/PhysicsBackendPhysX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.cpp b/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.cpp index 887353f49..a7ba06296 100644 --- a/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.cpp +++ b/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PHYSX diff --git a/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.h b/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.h index 964c1c97e..1b616eac2 100644 --- a/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.h +++ b/Source/Engine/Physics/PhysX/PhysicsStepperPhysX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.cpp b/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.cpp index d26ea49a6..d25beb2d3 100644 --- a/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.cpp +++ b/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PHYSX diff --git a/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.h b/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.h index e0f16d140..7dfe7d3f1 100644 --- a/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.h +++ b/Source/Engine/Physics/PhysX/SimulationEventCallbackPhysX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysX/Types.h b/Source/Engine/Physics/PhysX/Types.h index 79ee1f6f2..ed570867d 100644 --- a/Source/Engine/Physics/PhysX/Types.h +++ b/Source/Engine/Physics/PhysX/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysicalMaterial.h b/Source/Engine/Physics/PhysicalMaterial.h index b46c1a294..fc5352a8a 100644 --- a/Source/Engine/Physics/PhysicalMaterial.h +++ b/Source/Engine/Physics/PhysicalMaterial.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Physics.Build.cs b/Source/Engine/Physics/Physics.Build.cs index 49fc80876..55a972dde 100644 --- a/Source/Engine/Physics/Physics.Build.cs +++ b/Source/Engine/Physics/Physics.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using Flax.Build; diff --git a/Source/Engine/Physics/Physics.cpp b/Source/Engine/Physics/Physics.cpp index 2dbd9041c..0a0178622 100644 --- a/Source/Engine/Physics/Physics.cpp +++ b/Source/Engine/Physics/Physics.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Physics.h" #include "PhysicsScene.h" diff --git a/Source/Engine/Physics/Physics.h b/Source/Engine/Physics/Physics.h index e0e23ac05..62344e082 100644 --- a/Source/Engine/Physics/Physics.h +++ b/Source/Engine/Physics/Physics.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysicsBackend.h b/Source/Engine/Physics/PhysicsBackend.h index 50f0a3f71..fda15a079 100644 --- a/Source/Engine/Physics/PhysicsBackend.h +++ b/Source/Engine/Physics/PhysicsBackend.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/PhysicsSettings.cs b/Source/Engine/Physics/PhysicsSettings.cs index 0e725b7a8..21dbbc5fc 100644 --- a/Source/Engine/Physics/PhysicsSettings.cs +++ b/Source/Engine/Physics/PhysicsSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine; diff --git a/Source/Engine/Physics/PhysicsSettings.h b/Source/Engine/Physics/PhysicsSettings.h index 7fe4a0b89..c90d50c42 100644 --- a/Source/Engine/Physics/PhysicsSettings.h +++ b/Source/Engine/Physics/PhysicsSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Physics/Types.h b/Source/Engine/Physics/Types.h index f2f3f7621..81bc370f5 100644 --- a/Source/Engine/Physics/Types.h +++ b/Source/Engine/Physics/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidDefines.h b/Source/Engine/Platform/Android/AndroidDefines.h index 493ff8778..b94634227 100644 --- a/Source/Engine/Platform/Android/AndroidDefines.h +++ b/Source/Engine/Platform/Android/AndroidDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidFile.h b/Source/Engine/Platform/Android/AndroidFile.h index 73e17ba16..881854637 100644 --- a/Source/Engine/Platform/Android/AndroidFile.h +++ b/Source/Engine/Platform/Android/AndroidFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidFileSystem.h b/Source/Engine/Platform/Android/AndroidFileSystem.h index 608d5feeb..fb78390e1 100644 --- a/Source/Engine/Platform/Android/AndroidFileSystem.h +++ b/Source/Engine/Platform/Android/AndroidFileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidPlatform.cpp b/Source/Engine/Platform/Android/AndroidPlatform.cpp index 34bf59b01..28481c97f 100644 --- a/Source/Engine/Platform/Android/AndroidPlatform.cpp +++ b/Source/Engine/Platform/Android/AndroidPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_ANDROID diff --git a/Source/Engine/Platform/Android/AndroidPlatform.h b/Source/Engine/Platform/Android/AndroidPlatform.h index 0e5dc804f..941836ce6 100644 --- a/Source/Engine/Platform/Android/AndroidPlatform.h +++ b/Source/Engine/Platform/Android/AndroidPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidPlatformSettings.h b/Source/Engine/Platform/Android/AndroidPlatformSettings.h index cb067bf05..0a877fc18 100644 --- a/Source/Engine/Platform/Android/AndroidPlatformSettings.h +++ b/Source/Engine/Platform/Android/AndroidPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidThread.h b/Source/Engine/Platform/Android/AndroidThread.h index 322f98043..e458f8230 100644 --- a/Source/Engine/Platform/Android/AndroidThread.h +++ b/Source/Engine/Platform/Android/AndroidThread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Android/AndroidWindow.cpp b/Source/Engine/Platform/Android/AndroidWindow.cpp index 7f048057b..546f187ac 100644 --- a/Source/Engine/Platform/Android/AndroidWindow.cpp +++ b/Source/Engine/Platform/Android/AndroidWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_ANDROID diff --git a/Source/Engine/Platform/Android/AndroidWindow.h b/Source/Engine/Platform/Android/AndroidWindow.h index 42e250f19..d48928dbf 100644 --- a/Source/Engine/Platform/Android/AndroidWindow.h +++ b/Source/Engine/Platform/Android/AndroidWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/FileBase.cpp b/Source/Engine/Platform/Base/FileBase.cpp index f3f1d21f3..f45685c7f 100644 --- a/Source/Engine/Platform/Base/FileBase.cpp +++ b/Source/Engine/Platform/Base/FileBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/File.h" #include "Engine/Core/Math/Math.h" diff --git a/Source/Engine/Platform/Base/FileBase.h b/Source/Engine/Platform/Base/FileBase.h index 7aa82f12d..c6f76c610 100644 --- a/Source/Engine/Platform/Base/FileBase.h +++ b/Source/Engine/Platform/Base/FileBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/FileSystemBase.cpp b/Source/Engine/Platform/Base/FileSystemBase.cpp index 658100446..34cf7af38 100644 --- a/Source/Engine/Platform/Base/FileSystemBase.cpp +++ b/Source/Engine/Platform/Base/FileSystemBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/FileSystem.h" #include "Engine/Platform/File.h" diff --git a/Source/Engine/Platform/Base/FileSystemBase.h b/Source/Engine/Platform/Base/FileSystemBase.h index 782ff89b3..19ce676e2 100644 --- a/Source/Engine/Platform/Base/FileSystemBase.h +++ b/Source/Engine/Platform/Base/FileSystemBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/FileSystemWatcherBase.h b/Source/Engine/Platform/Base/FileSystemWatcherBase.h index 7f2c6e8b9..65e3363fb 100644 --- a/Source/Engine/Platform/Base/FileSystemWatcherBase.h +++ b/Source/Engine/Platform/Base/FileSystemWatcherBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/NetworkBase.cpp b/Source/Engine/Platform/Base/NetworkBase.cpp index bf8923213..9aa17efbf 100644 --- a/Source/Engine/Platform/Base/NetworkBase.cpp +++ b/Source/Engine/Platform/Base/NetworkBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "NetworkBase.h" diff --git a/Source/Engine/Platform/Base/NetworkBase.h b/Source/Engine/Platform/Base/NetworkBase.h index a18ad97ec..432373c25 100644 --- a/Source/Engine/Platform/Base/NetworkBase.h +++ b/Source/Engine/Platform/Base/NetworkBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/PlatformBase.cpp b/Source/Engine/Platform/Base/PlatformBase.cpp index 825c5639c..353e2b8f9 100644 --- a/Source/Engine/Platform/Base/PlatformBase.cpp +++ b/Source/Engine/Platform/Base/PlatformBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/Platform.h" #include "Engine/Platform/CPUInfo.h" diff --git a/Source/Engine/Platform/Base/PlatformBase.h b/Source/Engine/Platform/Base/PlatformBase.h index 0508cccd3..bed3520ac 100644 --- a/Source/Engine/Platform/Base/PlatformBase.h +++ b/Source/Engine/Platform/Base/PlatformBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/PlatformUtils.h b/Source/Engine/Platform/Base/PlatformUtils.h index 5c28802ee..9fdef81a5 100644 --- a/Source/Engine/Platform/Base/PlatformUtils.h +++ b/Source/Engine/Platform/Base/PlatformUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/StringUtilsBase.cpp b/Source/Engine/Platform/Base/StringUtilsBase.cpp index 61482df89..6f1d741d5 100644 --- a/Source/Engine/Platform/Base/StringUtilsBase.cpp +++ b/Source/Engine/Platform/Base/StringUtilsBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/StringUtils.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Engine/Platform/Base/ThreadBase.cpp b/Source/Engine/Platform/Base/ThreadBase.cpp index 178fea9c3..38e99ceb7 100644 --- a/Source/Engine/Platform/Base/ThreadBase.cpp +++ b/Source/Engine/Platform/Base/ThreadBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/Thread.h" #include "Engine/Threading/IRunnable.h" diff --git a/Source/Engine/Platform/Base/ThreadBase.h b/Source/Engine/Platform/Base/ThreadBase.h index f43167f58..f9e78b555 100644 --- a/Source/Engine/Platform/Base/ThreadBase.h +++ b/Source/Engine/Platform/Base/ThreadBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/UserBase.h b/Source/Engine/Platform/Base/UserBase.h index f486f5d35..5e16c54ce 100644 --- a/Source/Engine/Platform/Base/UserBase.h +++ b/Source/Engine/Platform/Base/UserBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/WindowBase.cpp b/Source/Engine/Platform/Base/WindowBase.cpp index 0d41ca50a..3b60f1121 100644 --- a/Source/Engine/Platform/Base/WindowBase.cpp +++ b/Source/Engine/Platform/Base/WindowBase.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/Window.h" #include "Engine/Engine/Engine.h" diff --git a/Source/Engine/Platform/Base/WindowBase.h b/Source/Engine/Platform/Base/WindowBase.h index ebeeb6b45..4220f1054 100644 --- a/Source/Engine/Platform/Base/WindowBase.h +++ b/Source/Engine/Platform/Base/WindowBase.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Base/WindowsManager.cpp b/Source/Engine/Platform/Base/WindowsManager.cpp index e87bb7df2..ed2106cf5 100644 --- a/Source/Engine/Platform/Base/WindowsManager.cpp +++ b/Source/Engine/Platform/Base/WindowsManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "../WindowsManager.h" #include "Engine/Engine/Time.h" diff --git a/Source/Engine/Platform/BatteryInfo.h b/Source/Engine/Platform/BatteryInfo.h index c0b689cbd..c973a6619 100644 --- a/Source/Engine/Platform/BatteryInfo.h +++ b/Source/Engine/Platform/BatteryInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/CPUInfo.h b/Source/Engine/Platform/CPUInfo.h index f0e83506d..c8b0a048e 100644 --- a/Source/Engine/Platform/CPUInfo.h +++ b/Source/Engine/Platform/CPUInfo.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Clipboard.h b/Source/Engine/Platform/Clipboard.h index c0071587f..d7a5f315b 100644 --- a/Source/Engine/Platform/Clipboard.h +++ b/Source/Engine/Platform/Clipboard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/ConditionVariable.h b/Source/Engine/Platform/ConditionVariable.h index ed6a57fce..b2cd6289b 100644 --- a/Source/Engine/Platform/ConditionVariable.h +++ b/Source/Engine/Platform/ConditionVariable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/CreateWindowSettings.cs b/Source/Engine/Platform/CreateWindowSettings.cs index 80245e0d0..1e5d17484 100644 --- a/Source/Engine/Platform/CreateWindowSettings.cs +++ b/Source/Engine/Platform/CreateWindowSettings.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Platform/CreateWindowSettings.h b/Source/Engine/Platform/CreateWindowSettings.h index d756b26d2..71bbf58c3 100644 --- a/Source/Engine/Platform/CreateWindowSettings.h +++ b/Source/Engine/Platform/CreateWindowSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/CriticalSection.h b/Source/Engine/Platform/CriticalSection.h index eff5dd64a..fc72b715e 100644 --- a/Source/Engine/Platform/CriticalSection.h +++ b/Source/Engine/Platform/CriticalSection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Defines.h b/Source/Engine/Platform/Defines.h index e978f08a5..0506cadc1 100644 --- a/Source/Engine/Platform/Defines.h +++ b/Source/Engine/Platform/Defines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/File.h b/Source/Engine/Platform/File.h index deed60aad..d783213e6 100644 --- a/Source/Engine/Platform/File.h +++ b/Source/Engine/Platform/File.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/FileSystem.h b/Source/Engine/Platform/FileSystem.h index c78c3fbbf..235f43ce2 100644 --- a/Source/Engine/Platform/FileSystem.h +++ b/Source/Engine/Platform/FileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/FileSystemWatcher.h b/Source/Engine/Platform/FileSystemWatcher.h index e7d4c7451..c6b44ca80 100644 --- a/Source/Engine/Platform/FileSystemWatcher.h +++ b/Source/Engine/Platform/FileSystemWatcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/GDK/GDKInput.cpp b/Source/Engine/Platform/GDK/GDKInput.cpp index c0d49cbef..d55173081 100644 --- a/Source/Engine/Platform/GDK/GDKInput.cpp +++ b/Source/Engine/Platform/GDK/GDKInput.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_XBOX_ONE || PLATFORM_XBOX_SCARLETT diff --git a/Source/Engine/Platform/GDK/GDKInput.h b/Source/Engine/Platform/GDK/GDKInput.h index da86efc19..e22cf7733 100644 --- a/Source/Engine/Platform/GDK/GDKInput.h +++ b/Source/Engine/Platform/GDK/GDKInput.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/GDK/GDKPlatform.cpp b/Source/Engine/Platform/GDK/GDKPlatform.cpp index 625ded0db..41c309d39 100644 --- a/Source/Engine/Platform/GDK/GDKPlatform.cpp +++ b/Source/Engine/Platform/GDK/GDKPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_GDK diff --git a/Source/Engine/Platform/GDK/GDKPlatform.h b/Source/Engine/Platform/GDK/GDKPlatform.h index 9a774c814..28430165f 100644 --- a/Source/Engine/Platform/GDK/GDKPlatform.h +++ b/Source/Engine/Platform/GDK/GDKPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/GDK/GDKPlatformSettings.h b/Source/Engine/Platform/GDK/GDKPlatformSettings.h index dd0429a5c..88822047d 100644 --- a/Source/Engine/Platform/GDK/GDKPlatformSettings.h +++ b/Source/Engine/Platform/GDK/GDKPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/GDK/GDKUser.h b/Source/Engine/Platform/GDK/GDKUser.h index 72d63251a..81cd1df42 100644 --- a/Source/Engine/Platform/GDK/GDKUser.h +++ b/Source/Engine/Platform/GDK/GDKUser.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/GDK/GDKWindow.cpp b/Source/Engine/Platform/GDK/GDKWindow.cpp index e6dad4ac5..b7d64ace7 100644 --- a/Source/Engine/Platform/GDK/GDKWindow.cpp +++ b/Source/Engine/Platform/GDK/GDKWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_GDK diff --git a/Source/Engine/Platform/GDK/GDKWindow.h b/Source/Engine/Platform/GDK/GDKWindow.h index 5882cd426..9856559de 100644 --- a/Source/Engine/Platform/GDK/GDKWindow.h +++ b/Source/Engine/Platform/GDK/GDKWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/IGuiData.h b/Source/Engine/Platform/IGuiData.h index 259976bd1..d03c6b10b 100644 --- a/Source/Engine/Platform/IGuiData.h +++ b/Source/Engine/Platform/IGuiData.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/IncludeX11.h b/Source/Engine/Platform/Linux/IncludeX11.h index 48c0da6ab..0ef466851 100644 --- a/Source/Engine/Platform/Linux/IncludeX11.h +++ b/Source/Engine/Platform/Linux/IncludeX11.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxClipboard.h b/Source/Engine/Platform/Linux/LinuxClipboard.h index 1f21c0d6c..956fe0aba 100644 --- a/Source/Engine/Platform/Linux/LinuxClipboard.h +++ b/Source/Engine/Platform/Linux/LinuxClipboard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxDefines.h b/Source/Engine/Platform/Linux/LinuxDefines.h index bda134586..8048848ce 100644 --- a/Source/Engine/Platform/Linux/LinuxDefines.h +++ b/Source/Engine/Platform/Linux/LinuxDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxFileSystem.h b/Source/Engine/Platform/Linux/LinuxFileSystem.h index 9694551f3..cce89bcb8 100644 --- a/Source/Engine/Platform/Linux/LinuxFileSystem.h +++ b/Source/Engine/Platform/Linux/LinuxFileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp b/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp index 9431ba715..93457623c 100644 --- a/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp +++ b/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.h b/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.h index f8e90c989..47031b1bc 100644 --- a/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.h +++ b/Source/Engine/Platform/Linux/LinuxFileSystemWatcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxInput.cpp b/Source/Engine/Platform/Linux/LinuxInput.cpp index bfae94a5e..4282db3b2 100644 --- a/Source/Engine/Platform/Linux/LinuxInput.cpp +++ b/Source/Engine/Platform/Linux/LinuxInput.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Platform/Linux/LinuxInput.h b/Source/Engine/Platform/Linux/LinuxInput.h index 1ae797cff..2bc7b2312 100644 --- a/Source/Engine/Platform/Linux/LinuxInput.h +++ b/Source/Engine/Platform/Linux/LinuxInput.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Platform/Linux/LinuxPlatform.cpp b/Source/Engine/Platform/Linux/LinuxPlatform.cpp index 50ac72381..a5bd099c9 100644 --- a/Source/Engine/Platform/Linux/LinuxPlatform.cpp +++ b/Source/Engine/Platform/Linux/LinuxPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Platform/Linux/LinuxPlatform.h b/Source/Engine/Platform/Linux/LinuxPlatform.h index 7b919b0b4..e41031f7a 100644 --- a/Source/Engine/Platform/Linux/LinuxPlatform.h +++ b/Source/Engine/Platform/Linux/LinuxPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxPlatformSettings.h b/Source/Engine/Platform/Linux/LinuxPlatformSettings.h index e3bcf3c4b..8384b3d51 100644 --- a/Source/Engine/Platform/Linux/LinuxPlatformSettings.h +++ b/Source/Engine/Platform/Linux/LinuxPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxThread.h b/Source/Engine/Platform/Linux/LinuxThread.h index 014abb76e..85778ca9e 100644 --- a/Source/Engine/Platform/Linux/LinuxThread.h +++ b/Source/Engine/Platform/Linux/LinuxThread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Linux/LinuxWindow.cpp b/Source/Engine/Platform/Linux/LinuxWindow.cpp index cabdcd46d..cbcfca0af 100644 --- a/Source/Engine/Platform/Linux/LinuxWindow.cpp +++ b/Source/Engine/Platform/Linux/LinuxWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_LINUX diff --git a/Source/Engine/Platform/Linux/LinuxWindow.h b/Source/Engine/Platform/Linux/LinuxWindow.h index bc9faaacf..fb0882cbf 100644 --- a/Source/Engine/Platform/Linux/LinuxWindow.h +++ b/Source/Engine/Platform/Linux/LinuxWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacClipboard.h b/Source/Engine/Platform/Mac/MacClipboard.h index e98d74797..ecdced2d1 100644 --- a/Source/Engine/Platform/Mac/MacClipboard.h +++ b/Source/Engine/Platform/Mac/MacClipboard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacDefines.h b/Source/Engine/Platform/Mac/MacDefines.h index 0c8947857..e1f57b80b 100644 --- a/Source/Engine/Platform/Mac/MacDefines.h +++ b/Source/Engine/Platform/Mac/MacDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacFileSystem.h b/Source/Engine/Platform/Mac/MacFileSystem.h index d1ebc6867..272c909f9 100644 --- a/Source/Engine/Platform/Mac/MacFileSystem.h +++ b/Source/Engine/Platform/Mac/MacFileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacPlatform.cpp b/Source/Engine/Platform/Mac/MacPlatform.cpp index 19325bbc3..e2d459c7e 100644 --- a/Source/Engine/Platform/Mac/MacPlatform.cpp +++ b/Source/Engine/Platform/Mac/MacPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_MAC diff --git a/Source/Engine/Platform/Mac/MacPlatform.h b/Source/Engine/Platform/Mac/MacPlatform.h index 617fee57a..47e8f17f3 100644 --- a/Source/Engine/Platform/Mac/MacPlatform.h +++ b/Source/Engine/Platform/Mac/MacPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacPlatformSettings.h b/Source/Engine/Platform/Mac/MacPlatformSettings.h index 592a2d4e9..8fbe6327e 100644 --- a/Source/Engine/Platform/Mac/MacPlatformSettings.h +++ b/Source/Engine/Platform/Mac/MacPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacThread.h b/Source/Engine/Platform/Mac/MacThread.h index 1da8d7e68..01790d705 100644 --- a/Source/Engine/Platform/Mac/MacThread.h +++ b/Source/Engine/Platform/Mac/MacThread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacUtils.h b/Source/Engine/Platform/Mac/MacUtils.h index 7d778527a..b89ff24b6 100644 --- a/Source/Engine/Platform/Mac/MacUtils.h +++ b/Source/Engine/Platform/Mac/MacUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Mac/MacWindow.cpp b/Source/Engine/Platform/Mac/MacWindow.cpp index c3f103798..61a811b75 100644 --- a/Source/Engine/Platform/Mac/MacWindow.cpp +++ b/Source/Engine/Platform/Mac/MacWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_MAC diff --git a/Source/Engine/Platform/Mac/MacWindow.h b/Source/Engine/Platform/Mac/MacWindow.h index 65432fd07..8498864a9 100644 --- a/Source/Engine/Platform/Mac/MacWindow.h +++ b/Source/Engine/Platform/Mac/MacWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/MemoryStats.h b/Source/Engine/Platform/MemoryStats.h index 230525647..227625187 100644 --- a/Source/Engine/Platform/MemoryStats.h +++ b/Source/Engine/Platform/MemoryStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/MessageBox.h b/Source/Engine/Platform/MessageBox.h index e140d8116..210d1273e 100644 --- a/Source/Engine/Platform/MessageBox.h +++ b/Source/Engine/Platform/MessageBox.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Network.h b/Source/Engine/Platform/Network.h index a622dbdaa..fda650304 100644 --- a/Source/Engine/Platform/Network.h +++ b/Source/Engine/Platform/Network.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Platform.Build.cs b/Source/Engine/Platform/Platform.Build.cs index 8a049fbba..bfdd07d6f 100644 --- a/Source/Engine/Platform/Platform.Build.cs +++ b/Source/Engine/Platform/Platform.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Engine/Platform/Platform.cs b/Source/Engine/Platform/Platform.cs index 1a72ec939..6f73da32f 100644 --- a/Source/Engine/Platform/Platform.cs +++ b/Source/Engine/Platform/Platform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Platform/Platform.h b/Source/Engine/Platform/Platform.h index 699dc49e1..4d9e090f8 100644 --- a/Source/Engine/Platform/Platform.h +++ b/Source/Engine/Platform/Platform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/SettingsBase.cs b/Source/Engine/Platform/SettingsBase.cs index ab25592a5..3e0916d37 100644 --- a/Source/Engine/Platform/SettingsBase.cs +++ b/Source/Engine/Platform/SettingsBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine; diff --git a/Source/Engine/Platform/StringUtils.h b/Source/Engine/Platform/StringUtils.h index f2efa9a5d..6f90bbe92 100644 --- a/Source/Engine/Platform/StringUtils.h +++ b/Source/Engine/Platform/StringUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Thread.h b/Source/Engine/Platform/Thread.h index 8bc7422e2..1cf585014 100644 --- a/Source/Engine/Platform/Thread.h +++ b/Source/Engine/Platform/Thread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Types.h b/Source/Engine/Platform/Types.h index 06e68dcc0..cb218ddf0 100644 --- a/Source/Engine/Platform/Types.h +++ b/Source/Engine/Platform/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPDefines.h b/Source/Engine/Platform/UWP/UWPDefines.h index 83a0d4844..c2710f6e8 100644 --- a/Source/Engine/Platform/UWP/UWPDefines.h +++ b/Source/Engine/Platform/UWP/UWPDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPFileSystem.cpp b/Source/Engine/Platform/UWP/UWPFileSystem.cpp index b8a139742..edc3c9acb 100644 --- a/Source/Engine/Platform/UWP/UWPFileSystem.cpp +++ b/Source/Engine/Platform/UWP/UWPFileSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UWP diff --git a/Source/Engine/Platform/UWP/UWPFileSystem.h b/Source/Engine/Platform/UWP/UWPFileSystem.h index 394f2c010..2b8a10362 100644 --- a/Source/Engine/Platform/UWP/UWPFileSystem.h +++ b/Source/Engine/Platform/UWP/UWPFileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPPlatform.cpp b/Source/Engine/Platform/UWP/UWPPlatform.cpp index 264ab30d4..f7c883878 100644 --- a/Source/Engine/Platform/UWP/UWPPlatform.cpp +++ b/Source/Engine/Platform/UWP/UWPPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UWP diff --git a/Source/Engine/Platform/UWP/UWPPlatform.h b/Source/Engine/Platform/UWP/UWPPlatform.h index 448221fd7..be114f419 100644 --- a/Source/Engine/Platform/UWP/UWPPlatform.h +++ b/Source/Engine/Platform/UWP/UWPPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPPlatformImpl.h b/Source/Engine/Platform/UWP/UWPPlatformImpl.h index 27bed439e..42f6ffd46 100644 --- a/Source/Engine/Platform/UWP/UWPPlatformImpl.h +++ b/Source/Engine/Platform/UWP/UWPPlatformImpl.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPPlatformSettings.h b/Source/Engine/Platform/UWP/UWPPlatformSettings.h index f9d83d9a6..98a2fedce 100644 --- a/Source/Engine/Platform/UWP/UWPPlatformSettings.h +++ b/Source/Engine/Platform/UWP/UWPPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/UWP/UWPWindow.cpp b/Source/Engine/Platform/UWP/UWPWindow.cpp index 0ee43c8c1..8d3ebb286 100644 --- a/Source/Engine/Platform/UWP/UWPWindow.cpp +++ b/Source/Engine/Platform/UWP/UWPWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UWP diff --git a/Source/Engine/Platform/UWP/UWPWindow.h b/Source/Engine/Platform/UWP/UWPWindow.h index 43c81beb2..ebe25bbc7 100644 --- a/Source/Engine/Platform/UWP/UWPWindow.h +++ b/Source/Engine/Platform/UWP/UWPWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixConditionVariable.h b/Source/Engine/Platform/Unix/UnixConditionVariable.h index ea9928276..36ea7a653 100644 --- a/Source/Engine/Platform/Unix/UnixConditionVariable.h +++ b/Source/Engine/Platform/Unix/UnixConditionVariable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixCriticalSection.h b/Source/Engine/Platform/Unix/UnixCriticalSection.h index 5d187c618..8c982a508 100644 --- a/Source/Engine/Platform/Unix/UnixCriticalSection.h +++ b/Source/Engine/Platform/Unix/UnixCriticalSection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixDefines.h b/Source/Engine/Platform/Unix/UnixDefines.h index 51f6684dd..5c6d7a4a3 100644 --- a/Source/Engine/Platform/Unix/UnixDefines.h +++ b/Source/Engine/Platform/Unix/UnixDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixFile.cpp b/Source/Engine/Platform/Unix/UnixFile.cpp index 586755a71..5fbc75f2e 100644 --- a/Source/Engine/Platform/Unix/UnixFile.cpp +++ b/Source/Engine/Platform/Unix/UnixFile.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UNIX diff --git a/Source/Engine/Platform/Unix/UnixFile.h b/Source/Engine/Platform/Unix/UnixFile.h index 2fd3171f3..b36159fea 100644 --- a/Source/Engine/Platform/Unix/UnixFile.h +++ b/Source/Engine/Platform/Unix/UnixFile.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixNetwork.cpp b/Source/Engine/Platform/Unix/UnixNetwork.cpp index 96886e776..5ffdb2c01 100644 --- a/Source/Engine/Platform/Unix/UnixNetwork.cpp +++ b/Source/Engine/Platform/Unix/UnixNetwork.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UNIX && !PLATFORM_PS4 && !PLATFORM_PS5 diff --git a/Source/Engine/Platform/Unix/UnixNetwork.h b/Source/Engine/Platform/Unix/UnixNetwork.h index faf03c08e..d893a00b1 100644 --- a/Source/Engine/Platform/Unix/UnixNetwork.h +++ b/Source/Engine/Platform/Unix/UnixNetwork.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixPlatform.cpp b/Source/Engine/Platform/Unix/UnixPlatform.cpp index de80f2426..ec3f59ee5 100644 --- a/Source/Engine/Platform/Unix/UnixPlatform.cpp +++ b/Source/Engine/Platform/Unix/UnixPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UNIX diff --git a/Source/Engine/Platform/Unix/UnixPlatform.h b/Source/Engine/Platform/Unix/UnixPlatform.h index 7ceec5ed2..9a1211f6d 100644 --- a/Source/Engine/Platform/Unix/UnixPlatform.h +++ b/Source/Engine/Platform/Unix/UnixPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Unix/UnixStringUtils.cpp b/Source/Engine/Platform/Unix/UnixStringUtils.cpp index d21ba05dc..7e5c34b24 100644 --- a/Source/Engine/Platform/Unix/UnixStringUtils.cpp +++ b/Source/Engine/Platform/Unix/UnixStringUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UNIX diff --git a/Source/Engine/Platform/Unix/UnixThread.cpp b/Source/Engine/Platform/Unix/UnixThread.cpp index 488ed6c2b..4fa532a4b 100644 --- a/Source/Engine/Platform/Unix/UnixThread.cpp +++ b/Source/Engine/Platform/Unix/UnixThread.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_UNIX diff --git a/Source/Engine/Platform/Unix/UnixThread.h b/Source/Engine/Platform/Unix/UnixThread.h index 4f1ca92eb..8b772ba0b 100644 --- a/Source/Engine/Platform/Unix/UnixThread.h +++ b/Source/Engine/Platform/Unix/UnixThread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/User.h b/Source/Engine/Platform/User.h index c8a4a6512..85ee77aa7 100644 --- a/Source/Engine/Platform/User.h +++ b/Source/Engine/Platform/User.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/IncludeWindowsHeaders.h b/Source/Engine/Platform/Win32/IncludeWindowsHeaders.h index 8cd074b13..c2494c474 100644 --- a/Source/Engine/Platform/Win32/IncludeWindowsHeaders.h +++ b/Source/Engine/Platform/Win32/IncludeWindowsHeaders.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32ConditionVariable.h b/Source/Engine/Platform/Win32/Win32ConditionVariable.h index a370daadf..868276e71 100644 --- a/Source/Engine/Platform/Win32/Win32ConditionVariable.h +++ b/Source/Engine/Platform/Win32/Win32ConditionVariable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32CriticalSection.h b/Source/Engine/Platform/Win32/Win32CriticalSection.h index d836bda4e..2c103ef85 100644 --- a/Source/Engine/Platform/Win32/Win32CriticalSection.h +++ b/Source/Engine/Platform/Win32/Win32CriticalSection.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32Defines.h b/Source/Engine/Platform/Win32/Win32Defines.h index b8c3d01f5..e421e5b1c 100644 --- a/Source/Engine/Platform/Win32/Win32Defines.h +++ b/Source/Engine/Platform/Win32/Win32Defines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32File.cpp b/Source/Engine/Platform/Win32/Win32File.cpp index e1f26c80c..23de7b926 100644 --- a/Source/Engine/Platform/Win32/Win32File.cpp +++ b/Source/Engine/Platform/Win32/Win32File.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32File.h b/Source/Engine/Platform/Win32/Win32File.h index ca7a14f29..3f5685bea 100644 --- a/Source/Engine/Platform/Win32/Win32File.h +++ b/Source/Engine/Platform/Win32/Win32File.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32FileSystem.cpp b/Source/Engine/Platform/Win32/Win32FileSystem.cpp index a1dff41ab..44d3ae366 100644 --- a/Source/Engine/Platform/Win32/Win32FileSystem.cpp +++ b/Source/Engine/Platform/Win32/Win32FileSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32FileSystem.h b/Source/Engine/Platform/Win32/Win32FileSystem.h index 2f0f6627c..be2ac3262 100644 --- a/Source/Engine/Platform/Win32/Win32FileSystem.h +++ b/Source/Engine/Platform/Win32/Win32FileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32Network.cpp b/Source/Engine/Platform/Win32/Win32Network.cpp index 1fa7911f9..eeac3accd 100644 --- a/Source/Engine/Platform/Win32/Win32Network.cpp +++ b/Source/Engine/Platform/Win32/Win32Network.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32Network.h b/Source/Engine/Platform/Win32/Win32Network.h index a6685aab5..62e9f005f 100644 --- a/Source/Engine/Platform/Win32/Win32Network.h +++ b/Source/Engine/Platform/Win32/Win32Network.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32Platform.cpp b/Source/Engine/Platform/Win32/Win32Platform.cpp index b4e36a4ef..17e44e543 100644 --- a/Source/Engine/Platform/Win32/Win32Platform.cpp +++ b/Source/Engine/Platform/Win32/Win32Platform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32Platform.h b/Source/Engine/Platform/Win32/Win32Platform.h index b2009e803..b50d31616 100644 --- a/Source/Engine/Platform/Win32/Win32Platform.h +++ b/Source/Engine/Platform/Win32/Win32Platform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/Win32StringUtils.cpp b/Source/Engine/Platform/Win32/Win32StringUtils.cpp index 8775f99a1..d1634d90d 100644 --- a/Source/Engine/Platform/Win32/Win32StringUtils.cpp +++ b/Source/Engine/Platform/Win32/Win32StringUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32Thread.cpp b/Source/Engine/Platform/Win32/Win32Thread.cpp index 53cf60e2b..5ede5cfc6 100644 --- a/Source/Engine/Platform/Win32/Win32Thread.cpp +++ b/Source/Engine/Platform/Win32/Win32Thread.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WIN32 diff --git a/Source/Engine/Platform/Win32/Win32Thread.h b/Source/Engine/Platform/Win32/Win32Thread.h index 67fb1d3a2..d682d90c4 100644 --- a/Source/Engine/Platform/Win32/Win32Thread.h +++ b/Source/Engine/Platform/Win32/Win32Thread.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Win32/WindowsMinimal.h b/Source/Engine/Platform/Win32/WindowsMinimal.h index 7848c2fe8..b6e92feb2 100644 --- a/Source/Engine/Platform/Win32/WindowsMinimal.h +++ b/Source/Engine/Platform/Win32/WindowsMinimal.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Window.cs b/Source/Engine/Platform/Window.cs index 876a2993f..b0c596df0 100644 --- a/Source/Engine/Platform/Window.cs +++ b/Source/Engine/Platform/Window.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.GUI; diff --git a/Source/Engine/Platform/Window.h b/Source/Engine/Platform/Window.h index 96e9d0af4..b5b3ff7d2 100644 --- a/Source/Engine/Platform/Window.h +++ b/Source/Engine/Platform/Window.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/ComPtr.h b/Source/Engine/Platform/Windows/ComPtr.h index e060080c5..e7223d1f5 100644 --- a/Source/Engine/Platform/Windows/ComPtr.h +++ b/Source/Engine/Platform/Windows/ComPtr.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsClipboard.cpp b/Source/Engine/Platform/Windows/WindowsClipboard.cpp index dd9a3e907..2ddb49524 100644 --- a/Source/Engine/Platform/Windows/WindowsClipboard.cpp +++ b/Source/Engine/Platform/Windows/WindowsClipboard.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsClipboard.h b/Source/Engine/Platform/Windows/WindowsClipboard.h index e85871f01..338283b19 100644 --- a/Source/Engine/Platform/Windows/WindowsClipboard.h +++ b/Source/Engine/Platform/Windows/WindowsClipboard.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsDefines.h b/Source/Engine/Platform/Windows/WindowsDefines.h index 513b2a917..bca396d5f 100644 --- a/Source/Engine/Platform/Windows/WindowsDefines.h +++ b/Source/Engine/Platform/Windows/WindowsDefines.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsFileSystem.cpp b/Source/Engine/Platform/Windows/WindowsFileSystem.cpp index 746566f50..04f757bc0 100644 --- a/Source/Engine/Platform/Windows/WindowsFileSystem.cpp +++ b/Source/Engine/Platform/Windows/WindowsFileSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsFileSystem.h b/Source/Engine/Platform/Windows/WindowsFileSystem.h index 1e4927442..477cbed26 100644 --- a/Source/Engine/Platform/Windows/WindowsFileSystem.h +++ b/Source/Engine/Platform/Windows/WindowsFileSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.cpp b/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.cpp index 17de38afa..80ed54633 100644 --- a/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.cpp +++ b/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.h b/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.h index ba98504d8..c39e51910 100644 --- a/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.h +++ b/Source/Engine/Platform/Windows/WindowsFileSystemWatcher.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsInput.cpp b/Source/Engine/Platform/Windows/WindowsInput.cpp index 9852c775c..80bff7ca5 100644 --- a/Source/Engine/Platform/Windows/WindowsInput.cpp +++ b/Source/Engine/Platform/Windows/WindowsInput.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsInput.h b/Source/Engine/Platform/Windows/WindowsInput.h index 265a5b31d..07c9565bc 100644 --- a/Source/Engine/Platform/Windows/WindowsInput.h +++ b/Source/Engine/Platform/Windows/WindowsInput.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsPlatform.cpp b/Source/Engine/Platform/Windows/WindowsPlatform.cpp index d732e8d2b..e215cbaf0 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatform.cpp +++ b/Source/Engine/Platform/Windows/WindowsPlatform.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsPlatform.h b/Source/Engine/Platform/Windows/WindowsPlatform.h index 767f9a43b..7441d0812 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatform.h +++ b/Source/Engine/Platform/Windows/WindowsPlatform.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsPlatformSettings.h b/Source/Engine/Platform/Windows/WindowsPlatformSettings.h index e2f988779..4c380fda3 100644 --- a/Source/Engine/Platform/Windows/WindowsPlatformSettings.h +++ b/Source/Engine/Platform/Windows/WindowsPlatformSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/Windows/WindowsWindow.DragDrop.cpp b/Source/Engine/Platform/Windows/WindowsWindow.DragDrop.cpp index 86662a993..b6e636697 100644 --- a/Source/Engine/Platform/Windows/WindowsWindow.DragDrop.cpp +++ b/Source/Engine/Platform/Windows/WindowsWindow.DragDrop.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsWindow.cpp b/Source/Engine/Platform/Windows/WindowsWindow.cpp index da7692eeb..687eeed28 100644 --- a/Source/Engine/Platform/Windows/WindowsWindow.cpp +++ b/Source/Engine/Platform/Windows/WindowsWindow.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS diff --git a/Source/Engine/Platform/Windows/WindowsWindow.h b/Source/Engine/Platform/Windows/WindowsWindow.h index c18a2f020..e4c23cbd6 100644 --- a/Source/Engine/Platform/Windows/WindowsWindow.h +++ b/Source/Engine/Platform/Windows/WindowsWindow.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Platform/WindowsManager.h b/Source/Engine/Platform/WindowsManager.h index eb22570ca..e1dc46757 100644 --- a/Source/Engine/Platform/WindowsManager.h +++ b/Source/Engine/Platform/WindowsManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/Profiler.Build.cs b/Source/Engine/Profiler/Profiler.Build.cs index d76c92fa2..1f324fb48 100644 --- a/Source/Engine/Profiler/Profiler.Build.cs +++ b/Source/Engine/Profiler/Profiler.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Profiler/Profiler.h b/Source/Engine/Profiler/Profiler.h index 341f834ad..86b6682b9 100644 --- a/Source/Engine/Profiler/Profiler.h +++ b/Source/Engine/Profiler/Profiler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/ProfilerCPU.cpp b/Source/Engine/Profiler/ProfilerCPU.cpp index acc662917..0198ed7bc 100644 --- a/Source/Engine/Profiler/ProfilerCPU.cpp +++ b/Source/Engine/Profiler/ProfilerCPU.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PROFILER diff --git a/Source/Engine/Profiler/ProfilerCPU.h b/Source/Engine/Profiler/ProfilerCPU.h index b4a4bfdc4..ba0eee5e8 100644 --- a/Source/Engine/Profiler/ProfilerCPU.h +++ b/Source/Engine/Profiler/ProfilerCPU.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/ProfilerGPU.cpp b/Source/Engine/Profiler/ProfilerGPU.cpp index cbad72e75..299a09dea 100644 --- a/Source/Engine/Profiler/ProfilerGPU.cpp +++ b/Source/Engine/Profiler/ProfilerGPU.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PROFILER diff --git a/Source/Engine/Profiler/ProfilerGPU.h b/Source/Engine/Profiler/ProfilerGPU.h index caba96b6e..398c74cbb 100644 --- a/Source/Engine/Profiler/ProfilerGPU.h +++ b/Source/Engine/Profiler/ProfilerGPU.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/ProfilerSrcLoc.h b/Source/Engine/Profiler/ProfilerSrcLoc.h index 36baebaef..de6c7fb5f 100644 --- a/Source/Engine/Profiler/ProfilerSrcLoc.h +++ b/Source/Engine/Profiler/ProfilerSrcLoc.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/ProfilingTools.cpp b/Source/Engine/Profiler/ProfilingTools.cpp index ee412c6a9..b0e25410b 100644 --- a/Source/Engine/Profiler/ProfilingTools.cpp +++ b/Source/Engine/Profiler/ProfilingTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_PROFILER diff --git a/Source/Engine/Profiler/ProfilingTools.h b/Source/Engine/Profiler/ProfilingTools.h index 28115fcda..fb0ccb980 100644 --- a/Source/Engine/Profiler/ProfilingTools.h +++ b/Source/Engine/Profiler/ProfilingTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Profiler/RenderStats.h b/Source/Engine/Profiler/RenderStats.h index a3dd6e7f7..1aff381a3 100644 --- a/Source/Engine/Profiler/RenderStats.h +++ b/Source/Engine/Profiler/RenderStats.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/Font.cpp b/Source/Engine/Render2D/Font.cpp index cbc40a227..0cbc30701 100644 --- a/Source/Engine/Render2D/Font.cpp +++ b/Source/Engine/Render2D/Font.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Font.h" #include "FontAsset.h" diff --git a/Source/Engine/Render2D/Font.h b/Source/Engine/Render2D/Font.h index 00d151990..d3806f0b4 100644 --- a/Source/Engine/Render2D/Font.h +++ b/Source/Engine/Render2D/Font.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/FontAsset.cpp b/Source/Engine/Render2D/FontAsset.cpp index 44723f47a..062479b97 100644 --- a/Source/Engine/Render2D/FontAsset.cpp +++ b/Source/Engine/Render2D/FontAsset.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FontAsset.h" #include "Font.h" diff --git a/Source/Engine/Render2D/FontAsset.cs b/Source/Engine/Render2D/FontAsset.cs index fb1a057fa..f7ac8d50b 100644 --- a/Source/Engine/Render2D/FontAsset.cs +++ b/Source/Engine/Render2D/FontAsset.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Render2D/FontAsset.h b/Source/Engine/Render2D/FontAsset.h index d5b21ea1a..abc601f45 100644 --- a/Source/Engine/Render2D/FontAsset.h +++ b/Source/Engine/Render2D/FontAsset.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/FontManager.cpp b/Source/Engine/Render2D/FontManager.cpp index be0e0e966..21443fa9d 100644 --- a/Source/Engine/Render2D/FontManager.cpp +++ b/Source/Engine/Render2D/FontManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FontManager.h" #include "FontTextureAtlas.h" diff --git a/Source/Engine/Render2D/FontManager.h b/Source/Engine/Render2D/FontManager.h index 0873341b7..f390b8cd7 100644 --- a/Source/Engine/Render2D/FontManager.h +++ b/Source/Engine/Render2D/FontManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/FontReference.cs b/Source/Engine/Render2D/FontReference.cs index d11f0a36d..290e10312 100644 --- a/Source/Engine/Render2D/FontReference.cs +++ b/Source/Engine/Render2D/FontReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Runtime.CompilerServices; diff --git a/Source/Engine/Render2D/FontTextureAtlas.cpp b/Source/Engine/Render2D/FontTextureAtlas.cpp index 88bc47e0d..822f94c08 100644 --- a/Source/Engine/Render2D/FontTextureAtlas.cpp +++ b/Source/Engine/Render2D/FontTextureAtlas.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FontTextureAtlas.h" #include "Engine/Core/Types/DataContainer.h" diff --git a/Source/Engine/Render2D/FontTextureAtlas.h b/Source/Engine/Render2D/FontTextureAtlas.h index 7e8325d40..5d9fa43dd 100644 --- a/Source/Engine/Render2D/FontTextureAtlas.h +++ b/Source/Engine/Render2D/FontTextureAtlas.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/IncludeFreeType.h b/Source/Engine/Render2D/IncludeFreeType.h index 542104d14..7b03b9aab 100644 --- a/Source/Engine/Render2D/IncludeFreeType.h +++ b/Source/Engine/Render2D/IncludeFreeType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/Render2D.Build.cs b/Source/Engine/Render2D/Render2D.Build.cs index d0c19199a..c5de04336 100644 --- a/Source/Engine/Render2D/Render2D.Build.cs +++ b/Source/Engine/Render2D/Render2D.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Render2D/Render2D.cpp b/Source/Engine/Render2D/Render2D.cpp index 1105920ba..032234dae 100644 --- a/Source/Engine/Render2D/Render2D.cpp +++ b/Source/Engine/Render2D/Render2D.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Render2D.h" #include "Font.h" diff --git a/Source/Engine/Render2D/Render2D.cs b/Source/Engine/Render2D/Render2D.cs index b642cc5c1..e2cb14cfd 100644 --- a/Source/Engine/Render2D/Render2D.cs +++ b/Source/Engine/Render2D/Render2D.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Render2D/Render2D.h b/Source/Engine/Render2D/Render2D.h index 55f450e87..9e2e277d2 100644 --- a/Source/Engine/Render2D/Render2D.h +++ b/Source/Engine/Render2D/Render2D.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/RotatedRectangle.h b/Source/Engine/Render2D/RotatedRectangle.h index ec23bdd01..00e35ff1e 100644 --- a/Source/Engine/Render2D/RotatedRectangle.h +++ b/Source/Engine/Render2D/RotatedRectangle.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/SpriteAtlas.cpp b/Source/Engine/Render2D/SpriteAtlas.cpp index 561f006c0..7c4b0e786 100644 --- a/Source/Engine/Render2D/SpriteAtlas.cpp +++ b/Source/Engine/Render2D/SpriteAtlas.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SpriteAtlas.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Render2D/SpriteAtlas.cs b/Source/Engine/Render2D/SpriteAtlas.cs index d6feeb823..b3796ffd3 100644 --- a/Source/Engine/Render2D/SpriteAtlas.cs +++ b/Source/Engine/Render2D/SpriteAtlas.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Render2D/SpriteAtlas.h b/Source/Engine/Render2D/SpriteAtlas.h index 2cd739e58..6fcda5162 100644 --- a/Source/Engine/Render2D/SpriteAtlas.h +++ b/Source/Engine/Render2D/SpriteAtlas.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/TextLayoutOptions.cs b/Source/Engine/Render2D/TextLayoutOptions.cs index 5ce54d858..ab38506c7 100644 --- a/Source/Engine/Render2D/TextLayoutOptions.cs +++ b/Source/Engine/Render2D/TextLayoutOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Render2D/TextLayoutOptions.h b/Source/Engine/Render2D/TextLayoutOptions.h index cccd146d7..8901db353 100644 --- a/Source/Engine/Render2D/TextLayoutOptions.h +++ b/Source/Engine/Render2D/TextLayoutOptions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Render2D/TextRange.cs b/Source/Engine/Render2D/TextRange.cs index 1bfb37e75..716fb1a09 100644 --- a/Source/Engine/Render2D/TextRange.cs +++ b/Source/Engine/Render2D/TextRange.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Renderer/AmbientOcclusionPass.cpp b/Source/Engine/Renderer/AmbientOcclusionPass.cpp index 6be56e534..a17d46e5f 100644 --- a/Source/Engine/Renderer/AmbientOcclusionPass.cpp +++ b/Source/Engine/Renderer/AmbientOcclusionPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AmbientOcclusionPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/AmbientOcclusionPass.h b/Source/Engine/Renderer/AmbientOcclusionPass.h index e427a4b4f..3b255c639 100644 --- a/Source/Engine/Renderer/AmbientOcclusionPass.h +++ b/Source/Engine/Renderer/AmbientOcclusionPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/AntiAliasing/FXAA.cpp b/Source/Engine/Renderer/AntiAliasing/FXAA.cpp index f4a9092e7..839a1045e 100644 --- a/Source/Engine/Renderer/AntiAliasing/FXAA.cpp +++ b/Source/Engine/Renderer/AntiAliasing/FXAA.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FXAA.h" #include "Engine/Content/Assets/Shader.h" diff --git a/Source/Engine/Renderer/AntiAliasing/FXAA.h b/Source/Engine/Renderer/AntiAliasing/FXAA.h index f151c397d..ab9ea173c 100644 --- a/Source/Engine/Renderer/AntiAliasing/FXAA.h +++ b/Source/Engine/Renderer/AntiAliasing/FXAA.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/AntiAliasing/SMAA.cpp b/Source/Engine/Renderer/AntiAliasing/SMAA.cpp index 4eafc89ee..ef4b61733 100644 --- a/Source/Engine/Renderer/AntiAliasing/SMAA.cpp +++ b/Source/Engine/Renderer/AntiAliasing/SMAA.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SMAA.h" #include "Engine/Content/Assets/Shader.h" diff --git a/Source/Engine/Renderer/AntiAliasing/SMAA.h b/Source/Engine/Renderer/AntiAliasing/SMAA.h index 1c78646a9..c308206ea 100644 --- a/Source/Engine/Renderer/AntiAliasing/SMAA.h +++ b/Source/Engine/Renderer/AntiAliasing/SMAA.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/AntiAliasing/TAA.cpp b/Source/Engine/Renderer/AntiAliasing/TAA.cpp index fa79932a4..4727db8d3 100644 --- a/Source/Engine/Renderer/AntiAliasing/TAA.cpp +++ b/Source/Engine/Renderer/AntiAliasing/TAA.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TAA.h" #include "Engine/Content/Assets/Shader.h" diff --git a/Source/Engine/Renderer/AntiAliasing/TAA.h b/Source/Engine/Renderer/AntiAliasing/TAA.h index c90cfbb8a..0362f5347 100644 --- a/Source/Engine/Renderer/AntiAliasing/TAA.h +++ b/Source/Engine/Renderer/AntiAliasing/TAA.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/AtmospherePreCompute.cpp b/Source/Engine/Renderer/AtmospherePreCompute.cpp index 7fb60155f..4d6b7d2ac 100644 --- a/Source/Engine/Renderer/AtmospherePreCompute.cpp +++ b/Source/Engine/Renderer/AtmospherePreCompute.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AtmospherePreCompute.h" #include "Engine/Engine/Engine.h" diff --git a/Source/Engine/Renderer/AtmospherePreCompute.h b/Source/Engine/Renderer/AtmospherePreCompute.h index 6a7c09b74..aeeed0e03 100644 --- a/Source/Engine/Renderer/AtmospherePreCompute.h +++ b/Source/Engine/Renderer/AtmospherePreCompute.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ColorGradingPass.cpp b/Source/Engine/Renderer/ColorGradingPass.cpp index 64a6ed631..b03c221ee 100644 --- a/Source/Engine/Renderer/ColorGradingPass.cpp +++ b/Source/Engine/Renderer/ColorGradingPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ColorGradingPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/ColorGradingPass.h b/Source/Engine/Renderer/ColorGradingPass.h index eb42ed5f5..f847e45d7 100644 --- a/Source/Engine/Renderer/ColorGradingPass.h +++ b/Source/Engine/Renderer/ColorGradingPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Config.h b/Source/Engine/Renderer/Config.h index 816ced8d6..ac3fcbd6e 100644 --- a/Source/Engine/Renderer/Config.h +++ b/Source/Engine/Renderer/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/DepthOfFieldPass.cpp b/Source/Engine/Renderer/DepthOfFieldPass.cpp index f80441d00..61cac9570 100644 --- a/Source/Engine/Renderer/DepthOfFieldPass.cpp +++ b/Source/Engine/Renderer/DepthOfFieldPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DepthOfFieldPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/DepthOfFieldPass.h b/Source/Engine/Renderer/DepthOfFieldPass.h index 9b2841fbd..b1193f4d7 100644 --- a/Source/Engine/Renderer/DepthOfFieldPass.h +++ b/Source/Engine/Renderer/DepthOfFieldPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/DrawCall.h b/Source/Engine/Renderer/DrawCall.h index 86a73ef9e..85c54a1ad 100644 --- a/Source/Engine/Renderer/DrawCall.h +++ b/Source/Engine/Renderer/DrawCall.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Editor/LODPreview.cpp b/Source/Engine/Renderer/Editor/LODPreview.cpp index 612de21a8..3e937188c 100644 --- a/Source/Engine/Renderer/Editor/LODPreview.cpp +++ b/Source/Engine/Renderer/Editor/LODPreview.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Renderer/Editor/LODPreview.h b/Source/Engine/Renderer/Editor/LODPreview.h index 8de84a7cf..4c7b11d72 100644 --- a/Source/Engine/Renderer/Editor/LODPreview.h +++ b/Source/Engine/Renderer/Editor/LODPreview.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Editor/LightmapUVsDensity.cpp b/Source/Engine/Renderer/Editor/LightmapUVsDensity.cpp index 44b947906..31e34b917 100644 --- a/Source/Engine/Renderer/Editor/LightmapUVsDensity.cpp +++ b/Source/Engine/Renderer/Editor/LightmapUVsDensity.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Renderer/Editor/LightmapUVsDensity.h b/Source/Engine/Renderer/Editor/LightmapUVsDensity.h index 9c293ca57..f11c8908d 100644 --- a/Source/Engine/Renderer/Editor/LightmapUVsDensity.h +++ b/Source/Engine/Renderer/Editor/LightmapUVsDensity.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Editor/MaterialComplexity.cpp b/Source/Engine/Renderer/Editor/MaterialComplexity.cpp index 4db975cf8..fcfb248b0 100644 --- a/Source/Engine/Renderer/Editor/MaterialComplexity.cpp +++ b/Source/Engine/Renderer/Editor/MaterialComplexity.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Renderer/Editor/MaterialComplexity.h b/Source/Engine/Renderer/Editor/MaterialComplexity.h index 716964f0d..4a8272ab9 100644 --- a/Source/Engine/Renderer/Editor/MaterialComplexity.h +++ b/Source/Engine/Renderer/Editor/MaterialComplexity.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Editor/QuadOverdrawPass.cpp b/Source/Engine/Renderer/Editor/QuadOverdrawPass.cpp index e0ed4ae31..607471be9 100644 --- a/Source/Engine/Renderer/Editor/QuadOverdrawPass.cpp +++ b/Source/Engine/Renderer/Editor/QuadOverdrawPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Renderer/Editor/QuadOverdrawPass.h b/Source/Engine/Renderer/Editor/QuadOverdrawPass.h index 411ceecc2..269ca4bdc 100644 --- a/Source/Engine/Renderer/Editor/QuadOverdrawPass.h +++ b/Source/Engine/Renderer/Editor/QuadOverdrawPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Editor/VertexColors.cpp b/Source/Engine/Renderer/Editor/VertexColors.cpp index 4b4a8fc3c..cd736c97e 100644 --- a/Source/Engine/Renderer/Editor/VertexColors.cpp +++ b/Source/Engine/Renderer/Editor/VertexColors.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Renderer/Editor/VertexColors.h b/Source/Engine/Renderer/Editor/VertexColors.h index 79ea22ae0..ed67e9afd 100644 --- a/Source/Engine/Renderer/Editor/VertexColors.h +++ b/Source/Engine/Renderer/Editor/VertexColors.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/EyeAdaptationPass.cpp b/Source/Engine/Renderer/EyeAdaptationPass.cpp index 00b15192f..7188a4c34 100644 --- a/Source/Engine/Renderer/EyeAdaptationPass.cpp +++ b/Source/Engine/Renderer/EyeAdaptationPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "EyeAdaptationPass.h" #include "HistogramPass.h" diff --git a/Source/Engine/Renderer/EyeAdaptationPass.h b/Source/Engine/Renderer/EyeAdaptationPass.h index f95219da7..27f319cf4 100644 --- a/Source/Engine/Renderer/EyeAdaptationPass.h +++ b/Source/Engine/Renderer/EyeAdaptationPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ForwardPass.cpp b/Source/Engine/Renderer/ForwardPass.cpp index b853b71c4..594b5c060 100644 --- a/Source/Engine/Renderer/ForwardPass.cpp +++ b/Source/Engine/Renderer/ForwardPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ForwardPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/ForwardPass.h b/Source/Engine/Renderer/ForwardPass.h index c2fa69b31..4f513b999 100644 --- a/Source/Engine/Renderer/ForwardPass.h +++ b/Source/Engine/Renderer/ForwardPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/GBufferPass.cpp b/Source/Engine/Renderer/GBufferPass.cpp index 450fedcbe..ea34a967e 100644 --- a/Source/Engine/Renderer/GBufferPass.cpp +++ b/Source/Engine/Renderer/GBufferPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GBufferPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/GBufferPass.h b/Source/Engine/Renderer/GBufferPass.h index 8ff3f6091..f5586d1b7 100644 --- a/Source/Engine/Renderer/GBufferPass.h +++ b/Source/Engine/Renderer/GBufferPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.cpp b/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.cpp index e1949a7d8..363437c6c 100644 --- a/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.cpp +++ b/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "DynamicDiffuseGlobalIllumination.h" #include "GlobalSurfaceAtlasPass.h" diff --git a/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.h b/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.h index a6bdc9e9e..29833bda9 100644 --- a/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.h +++ b/Source/Engine/Renderer/GI/DynamicDiffuseGlobalIllumination.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp index ecd35ba4c..19f4304b5 100644 --- a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp +++ b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GlobalSurfaceAtlasPass.h" #include "DynamicDiffuseGlobalIllumination.h" diff --git a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.h b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.h index 84cce19c8..a0545d311 100644 --- a/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.h +++ b/Source/Engine/Renderer/GI/GlobalSurfaceAtlasPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/GlobalSignDistanceFieldPass.cpp b/Source/Engine/Renderer/GlobalSignDistanceFieldPass.cpp index 9f5377afd..c95e4efc5 100644 --- a/Source/Engine/Renderer/GlobalSignDistanceFieldPass.cpp +++ b/Source/Engine/Renderer/GlobalSignDistanceFieldPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GlobalSignDistanceFieldPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/GlobalSignDistanceFieldPass.h b/Source/Engine/Renderer/GlobalSignDistanceFieldPass.h index 4a3c2ec91..865564f10 100644 --- a/Source/Engine/Renderer/GlobalSignDistanceFieldPass.h +++ b/Source/Engine/Renderer/GlobalSignDistanceFieldPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/HistogramPass.cpp b/Source/Engine/Renderer/HistogramPass.cpp index acff2adf9..1a2f57b5a 100644 --- a/Source/Engine/Renderer/HistogramPass.cpp +++ b/Source/Engine/Renderer/HistogramPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "HistogramPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/HistogramPass.h b/Source/Engine/Renderer/HistogramPass.h index 5a6bdfd76..1694ac9f2 100644 --- a/Source/Engine/Renderer/HistogramPass.h +++ b/Source/Engine/Renderer/HistogramPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/LightPass.cpp b/Source/Engine/Renderer/LightPass.cpp index 2d9760387..04debe1cd 100644 --- a/Source/Engine/Renderer/LightPass.cpp +++ b/Source/Engine/Renderer/LightPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "LightPass.h" #include "ShadowsPass.h" diff --git a/Source/Engine/Renderer/LightPass.h b/Source/Engine/Renderer/LightPass.h index 9ecc52634..a24b55360 100644 --- a/Source/Engine/Renderer/LightPass.h +++ b/Source/Engine/Renderer/LightPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Lightmaps.h b/Source/Engine/Renderer/Lightmaps.h index 25c0e5262..dc3302e37 100644 --- a/Source/Engine/Renderer/Lightmaps.h +++ b/Source/Engine/Renderer/Lightmaps.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/MotionBlurPass.cpp b/Source/Engine/Renderer/MotionBlurPass.cpp index 850933f05..99ebcc6bc 100644 --- a/Source/Engine/Renderer/MotionBlurPass.cpp +++ b/Source/Engine/Renderer/MotionBlurPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MotionBlurPass.h" #include "GBufferPass.h" diff --git a/Source/Engine/Renderer/MotionBlurPass.h b/Source/Engine/Renderer/MotionBlurPass.h index 3ea11897d..cd4ddbd3b 100644 --- a/Source/Engine/Renderer/MotionBlurPass.h +++ b/Source/Engine/Renderer/MotionBlurPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/PostProcessingPass.cpp b/Source/Engine/Renderer/PostProcessingPass.cpp index a7d73f279..d345bc3ca 100644 --- a/Source/Engine/Renderer/PostProcessingPass.cpp +++ b/Source/Engine/Renderer/PostProcessingPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PostProcessingPass.h" #include "RenderList.h" diff --git a/Source/Engine/Renderer/PostProcessingPass.h b/Source/Engine/Renderer/PostProcessingPass.h index e86b34a9e..19695d22e 100644 --- a/Source/Engine/Renderer/PostProcessingPass.h +++ b/Source/Engine/Renderer/PostProcessingPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ProbesRenderer.cpp b/Source/Engine/Renderer/ProbesRenderer.cpp index c1c273de8..376c8632d 100644 --- a/Source/Engine/Renderer/ProbesRenderer.cpp +++ b/Source/Engine/Renderer/ProbesRenderer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ProbesRenderer.h" #include "Renderer.h" diff --git a/Source/Engine/Renderer/ProbesRenderer.h b/Source/Engine/Renderer/ProbesRenderer.h index 3cd1f40bd..ae583c18b 100644 --- a/Source/Engine/Renderer/ProbesRenderer.h +++ b/Source/Engine/Renderer/ProbesRenderer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ReflectionsPass.cpp b/Source/Engine/Renderer/ReflectionsPass.cpp index f453e1a41..cc401339c 100644 --- a/Source/Engine/Renderer/ReflectionsPass.cpp +++ b/Source/Engine/Renderer/ReflectionsPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ReflectionsPass.h" #include "GBufferPass.h" diff --git a/Source/Engine/Renderer/ReflectionsPass.h b/Source/Engine/Renderer/ReflectionsPass.h index cab4618d5..408120d3b 100644 --- a/Source/Engine/Renderer/ReflectionsPass.h +++ b/Source/Engine/Renderer/ReflectionsPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/RenderList.cpp b/Source/Engine/Renderer/RenderList.cpp index eb66ef98d..a03a56495 100644 --- a/Source/Engine/Renderer/RenderList.cpp +++ b/Source/Engine/Renderer/RenderList.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "RenderList.h" #include "Engine/Core/Collections/Sorting.h" diff --git a/Source/Engine/Renderer/RenderList.h b/Source/Engine/Renderer/RenderList.h index 7c81eacf4..d8b9fdc57 100644 --- a/Source/Engine/Renderer/RenderList.h +++ b/Source/Engine/Renderer/RenderList.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Renderer.Build.cs b/Source/Engine/Renderer/Renderer.Build.cs index 74826d196..eb8b23e19 100644 --- a/Source/Engine/Renderer/Renderer.Build.cs +++ b/Source/Engine/Renderer/Renderer.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Renderer/Renderer.cpp b/Source/Engine/Renderer/Renderer.cpp index e0055f19b..2f4bace2e 100644 --- a/Source/Engine/Renderer/Renderer.cpp +++ b/Source/Engine/Renderer/Renderer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Renderer.h" #include "Engine/Graphics/GPUContext.h" diff --git a/Source/Engine/Renderer/Renderer.cs b/Source/Engine/Renderer/Renderer.cs index 6c9b25dff..2e20efe18 100644 --- a/Source/Engine/Renderer/Renderer.cs +++ b/Source/Engine/Renderer/Renderer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Engine/Renderer/Renderer.h b/Source/Engine/Renderer/Renderer.h index 2596b26e1..d3ce7975a 100644 --- a/Source/Engine/Renderer/Renderer.h +++ b/Source/Engine/Renderer/Renderer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/RendererPass.h b/Source/Engine/Renderer/RendererPass.h index 80e465473..a6ef28c1f 100644 --- a/Source/Engine/Renderer/RendererPass.h +++ b/Source/Engine/Renderer/RendererPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ScreenSpaceReflectionsPass.cpp b/Source/Engine/Renderer/ScreenSpaceReflectionsPass.cpp index 543320fd4..b4e43f68a 100644 --- a/Source/Engine/Renderer/ScreenSpaceReflectionsPass.cpp +++ b/Source/Engine/Renderer/ScreenSpaceReflectionsPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ScreenSpaceReflectionsPass.h" #include "ReflectionsPass.h" diff --git a/Source/Engine/Renderer/ScreenSpaceReflectionsPass.h b/Source/Engine/Renderer/ScreenSpaceReflectionsPass.h index 24abf2b62..1653a0731 100644 --- a/Source/Engine/Renderer/ScreenSpaceReflectionsPass.h +++ b/Source/Engine/Renderer/ScreenSpaceReflectionsPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/ShadowsPass.cpp b/Source/Engine/Renderer/ShadowsPass.cpp index 1a7024d24..ddb0344ca 100644 --- a/Source/Engine/Renderer/ShadowsPass.cpp +++ b/Source/Engine/Renderer/ShadowsPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ShadowsPass.h" #include "GBufferPass.h" diff --git a/Source/Engine/Renderer/ShadowsPass.h b/Source/Engine/Renderer/ShadowsPass.h index c17757fb4..888c5ee9d 100644 --- a/Source/Engine/Renderer/ShadowsPass.h +++ b/Source/Engine/Renderer/ShadowsPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Utils/BitonicSort.cpp b/Source/Engine/Renderer/Utils/BitonicSort.cpp index 08d9ba843..5c485f478 100644 --- a/Source/Engine/Renderer/Utils/BitonicSort.cpp +++ b/Source/Engine/Renderer/Utils/BitonicSort.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BitonicSort.h" #include "Engine/Content/Content.h" diff --git a/Source/Engine/Renderer/Utils/BitonicSort.h b/Source/Engine/Renderer/Utils/BitonicSort.h index 53e390546..d0fa7258a 100644 --- a/Source/Engine/Renderer/Utils/BitonicSort.h +++ b/Source/Engine/Renderer/Utils/BitonicSort.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/Utils/MultiScaler.cpp b/Source/Engine/Renderer/Utils/MultiScaler.cpp index 2b8d8ae80..ecf5c33f9 100644 --- a/Source/Engine/Renderer/Utils/MultiScaler.cpp +++ b/Source/Engine/Renderer/Utils/MultiScaler.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MultiScaler.h" #include "Engine/Graphics/Textures/GPUTexture.h" diff --git a/Source/Engine/Renderer/Utils/MultiScaler.h b/Source/Engine/Renderer/Utils/MultiScaler.h index 2e9fe2a26..cc5d476bd 100644 --- a/Source/Engine/Renderer/Utils/MultiScaler.h +++ b/Source/Engine/Renderer/Utils/MultiScaler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Renderer/VolumetricFogPass.cpp b/Source/Engine/Renderer/VolumetricFogPass.cpp index 6d6b804c5..e7e8a34ab 100644 --- a/Source/Engine/Renderer/VolumetricFogPass.cpp +++ b/Source/Engine/Renderer/VolumetricFogPass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VolumetricFogPass.h" #include "ShadowsPass.h" diff --git a/Source/Engine/Renderer/VolumetricFogPass.h b/Source/Engine/Renderer/VolumetricFogPass.h index 1b4d1c7f2..071cae686 100644 --- a/Source/Engine/Renderer/VolumetricFogPass.h +++ b/Source/Engine/Renderer/VolumetricFogPass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Attributes/CollectionAttribute.cs b/Source/Engine/Scripting/Attributes/CollectionAttribute.cs index 1bd1629ef..ca8f45d39 100644 --- a/Source/Engine/Scripting/Attributes/CollectionAttribute.cs +++ b/Source/Engine/Scripting/Attributes/CollectionAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/AssetReferenceAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/AssetReferenceAttribute.cs index 3504dcaa5..15c037f82 100644 --- a/Source/Engine/Scripting/Attributes/Editor/AssetReferenceAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/AssetReferenceAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/CategoryAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/CategoryAttribute.cs index 7f9e606c2..f7a68d419 100644 --- a/Source/Engine/Scripting/Attributes/Editor/CategoryAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/CategoryAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/CustomEditorAliasAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/CustomEditorAliasAttribute.cs index 8ccf02a95..e47237752 100644 --- a/Source/Engine/Scripting/Attributes/Editor/CustomEditorAliasAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/CustomEditorAliasAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/CustomEditorAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/CustomEditorAttribute.cs index b03cdadad..86741ff21 100644 --- a/Source/Engine/Scripting/Attributes/Editor/CustomEditorAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/CustomEditorAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/DefaultEditorAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/DefaultEditorAttribute.cs index 112febc57..cd6a99959 100644 --- a/Source/Engine/Scripting/Attributes/Editor/DefaultEditorAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/DefaultEditorAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/EditorDisplayAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/EditorDisplayAttribute.cs index 310b4cedc..e1f0f0a5d 100644 --- a/Source/Engine/Scripting/Attributes/Editor/EditorDisplayAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/EditorDisplayAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/EditorOrderAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/EditorOrderAttribute.cs index 6afac5498..7f10a79a7 100644 --- a/Source/Engine/Scripting/Attributes/Editor/EditorOrderAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/EditorOrderAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/EnumDisplayAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/EnumDisplayAttribute.cs index 18c61dacb..82f580e8a 100644 --- a/Source/Engine/Scripting/Attributes/Editor/EnumDisplayAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/EnumDisplayAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs index 8f24acbb8..2f374f2d5 100644 --- a/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/ExpandGroupsAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/HeaderAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/HeaderAttribute.cs index 3f0ce57d0..38a3841ce 100644 --- a/Source/Engine/Scripting/Attributes/Editor/HeaderAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/HeaderAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/HideInEditorAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/HideInEditorAttribute.cs index 782f3fa0b..063e9a02f 100644 --- a/Source/Engine/Scripting/Attributes/Editor/HideInEditorAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/HideInEditorAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/LimitAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/LimitAttribute.cs index a556a8870..f35d03d29 100644 --- a/Source/Engine/Scripting/Attributes/Editor/LimitAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/LimitAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/MultilineTextAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/MultilineTextAttribute.cs index 811180249..6a8b970bc 100644 --- a/Source/Engine/Scripting/Attributes/Editor/MultilineTextAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/MultilineTextAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/NoUndoAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/NoUndoAttribute.cs index 9cd9625ea..9126362bf 100644 --- a/Source/Engine/Scripting/Attributes/Editor/NoUndoAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/NoUndoAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/RangeAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/RangeAttribute.cs index 4fd021a11..ad7312ba4 100644 --- a/Source/Engine/Scripting/Attributes/Editor/RangeAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/RangeAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/ReadOnlyAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/ReadOnlyAttribute.cs index 3901c5220..eb6dd54f0 100644 --- a/Source/Engine/Scripting/Attributes/Editor/ReadOnlyAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/ReadOnlyAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs index 8e3b912d3..38939a08e 100644 --- a/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/ShowInEditorAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/SpaceAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/SpaceAttribute.cs index 74705265b..9c801a879 100644 --- a/Source/Engine/Scripting/Attributes/Editor/SpaceAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/SpaceAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/TooltipAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/TooltipAttribute.cs index ce96b2f09..54f3be5d0 100644 --- a/Source/Engine/Scripting/Attributes/Editor/TooltipAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/TooltipAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/TypeReferenceAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/TypeReferenceAttribute.cs index 5fa726089..38fabc0c5 100644 --- a/Source/Engine/Scripting/Attributes/Editor/TypeReferenceAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/TypeReferenceAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/Editor/VisibleIfAttribute.cs b/Source/Engine/Scripting/Attributes/Editor/VisibleIfAttribute.cs index 5f4177a6c..5e690caa8 100644 --- a/Source/Engine/Scripting/Attributes/Editor/VisibleIfAttribute.cs +++ b/Source/Engine/Scripting/Attributes/Editor/VisibleIfAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/ExecuteInEditModeAttribute.cs b/Source/Engine/Scripting/Attributes/ExecuteInEditModeAttribute.cs index 655ec31e4..25442c3b1 100644 --- a/Source/Engine/Scripting/Attributes/ExecuteInEditModeAttribute.cs +++ b/Source/Engine/Scripting/Attributes/ExecuteInEditModeAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/MonoPInvokeCallbackAttribute.cs b/Source/Engine/Scripting/Attributes/MonoPInvokeCallbackAttribute.cs index 030f7c276..62c67823a 100644 --- a/Source/Engine/Scripting/Attributes/MonoPInvokeCallbackAttribute.cs +++ b/Source/Engine/Scripting/Attributes/MonoPInvokeCallbackAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Engine/Scripting/Attributes/NoAnimateAttribute.cs b/Source/Engine/Scripting/Attributes/NoAnimateAttribute.cs index 73707d713..1eafa914c 100644 --- a/Source/Engine/Scripting/Attributes/NoAnimateAttribute.cs +++ b/Source/Engine/Scripting/Attributes/NoAnimateAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs b/Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs index 874869cbe..8c333363d 100644 --- a/Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs +++ b/Source/Engine/Scripting/Attributes/NoSerializeAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/SerializeAttribute.cs b/Source/Engine/Scripting/Attributes/SerializeAttribute.cs index e6f6c3fa3..5a557902d 100644 --- a/Source/Engine/Scripting/Attributes/SerializeAttribute.cs +++ b/Source/Engine/Scripting/Attributes/SerializeAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/Attributes/UnmanagedAttribute.cs b/Source/Engine/Scripting/Attributes/UnmanagedAttribute.cs index a3220ff18..415e599a1 100644 --- a/Source/Engine/Scripting/Attributes/UnmanagedAttribute.cs +++ b/Source/Engine/Scripting/Attributes/UnmanagedAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/BinaryModule.cpp b/Source/Engine/Scripting/BinaryModule.cpp index 1fd9517da..472dddbf6 100644 --- a/Source/Engine/Scripting/BinaryModule.cpp +++ b/Source/Engine/Scripting/BinaryModule.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BinaryModule.h" #include "ScriptingObject.h" diff --git a/Source/Engine/Scripting/BinaryModule.h b/Source/Engine/Scripting/BinaryModule.h index 7c69a2dc6..51d4b8adc 100644 --- a/Source/Engine/Scripting/BinaryModule.h +++ b/Source/Engine/Scripting/BinaryModule.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Enums.h b/Source/Engine/Scripting/Enums.h index 3c564063a..dd605d303 100644 --- a/Source/Engine/Scripting/Enums.h +++ b/Source/Engine/Scripting/Enums.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Events.h b/Source/Engine/Scripting/Events.h index c5b798e12..a8e702847 100644 --- a/Source/Engine/Scripting/Events.h +++ b/Source/Engine/Scripting/Events.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/InternalCalls.h b/Source/Engine/Scripting/InternalCalls.h index a7b7c2ebd..49d397a1c 100644 --- a/Source/Engine/Scripting/InternalCalls.h +++ b/Source/Engine/Scripting/InternalCalls.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/InternalCalls/EngineInternalCalls.cpp b/Source/Engine/Scripting/InternalCalls/EngineInternalCalls.cpp index d1657d9f3..48c2656b9 100644 --- a/Source/Engine/Scripting/InternalCalls/EngineInternalCalls.cpp +++ b/Source/Engine/Scripting/InternalCalls/EngineInternalCalls.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/FileSystem.h" #include "Engine/Animations/Graph/AnimGraph.h" diff --git a/Source/Engine/Scripting/InternalCalls/ManagedBitArray.h b/Source/Engine/Scripting/InternalCalls/ManagedBitArray.h index 0dcbc0de9..de6a4cff7 100644 --- a/Source/Engine/Scripting/InternalCalls/ManagedBitArray.h +++ b/Source/Engine/Scripting/InternalCalls/ManagedBitArray.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/InternalCalls/ManagedDictionary.h b/Source/Engine/Scripting/InternalCalls/ManagedDictionary.h index 1d123e067..0b19a86e8 100644 --- a/Source/Engine/Scripting/InternalCalls/ManagedDictionary.h +++ b/Source/Engine/Scripting/InternalCalls/ManagedDictionary.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/MException.cpp b/Source/Engine/Scripting/MException.cpp index e1f46602a..5b65b7125 100644 --- a/Source/Engine/Scripting/MException.cpp +++ b/Source/Engine/Scripting/MException.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MException.h" #include "ManagedCLR/MUtils.h" diff --git a/Source/Engine/Scripting/MException.h b/Source/Engine/Scripting/MException.h index 8796eae4a..1ad9cc62a 100644 --- a/Source/Engine/Scripting/MException.h +++ b/Source/Engine/Scripting/MException.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/MainThreadManagedInvokeAction.cpp b/Source/Engine/Scripting/MainThreadManagedInvokeAction.cpp index f3dcbbd86..db2bfb4a8 100644 --- a/Source/Engine/Scripting/MainThreadManagedInvokeAction.cpp +++ b/Source/Engine/Scripting/MainThreadManagedInvokeAction.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MainThreadManagedInvokeAction.h" #include "Engine/Threading/Threading.h" diff --git a/Source/Engine/Scripting/MainThreadManagedInvokeAction.h b/Source/Engine/Scripting/MainThreadManagedInvokeAction.h index 3bb8efc86..a7924c76b 100644 --- a/Source/Engine/Scripting/MainThreadManagedInvokeAction.h +++ b/Source/Engine/Scripting/MainThreadManagedInvokeAction.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MAssembly.cpp b/Source/Engine/Scripting/ManagedCLR/MAssembly.cpp index 996bbb420..b714ed349 100644 --- a/Source/Engine/Scripting/ManagedCLR/MAssembly.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MAssembly.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MAssembly.h" #include "MClass.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MAssembly.h b/Source/Engine/Scripting/ManagedCLR/MAssembly.h index cbf1b741a..4f0a8d57f 100644 --- a/Source/Engine/Scripting/ManagedCLR/MAssembly.h +++ b/Source/Engine/Scripting/ManagedCLR/MAssembly.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MAssemblyOptions.h b/Source/Engine/Scripting/ManagedCLR/MAssemblyOptions.h index 50fa3a677..b5fe04d2c 100644 --- a/Source/Engine/Scripting/ManagedCLR/MAssemblyOptions.h +++ b/Source/Engine/Scripting/ManagedCLR/MAssemblyOptions.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MClass.cpp b/Source/Engine/Scripting/ManagedCLR/MClass.cpp index 1c88afdb2..971e7433c 100644 --- a/Source/Engine/Scripting/ManagedCLR/MClass.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MClass.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MClass.h" #include "MType.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MClass.h b/Source/Engine/Scripting/ManagedCLR/MClass.h index d0b0923d2..461db413e 100644 --- a/Source/Engine/Scripting/ManagedCLR/MClass.h +++ b/Source/Engine/Scripting/ManagedCLR/MClass.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MCore.cpp b/Source/Engine/Scripting/ManagedCLR/MCore.cpp index f7b46e5cc..a3f79ff51 100644 --- a/Source/Engine/Scripting/ManagedCLR/MCore.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MCore.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MCore.h" #include "MDomain.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MCore.h b/Source/Engine/Scripting/ManagedCLR/MCore.h index 14142c0ad..3d62db299 100644 --- a/Source/Engine/Scripting/ManagedCLR/MCore.h +++ b/Source/Engine/Scripting/ManagedCLR/MCore.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MDomain.cpp b/Source/Engine/Scripting/ManagedCLR/MDomain.cpp index e58dd64b7..19bfaa158 100644 --- a/Source/Engine/Scripting/ManagedCLR/MDomain.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MDomain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MDomain.h" #include "MCore.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MDomain.h b/Source/Engine/Scripting/ManagedCLR/MDomain.h index d69f4a22e..7be828ed3 100644 --- a/Source/Engine/Scripting/ManagedCLR/MDomain.h +++ b/Source/Engine/Scripting/ManagedCLR/MDomain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MEvent.cpp b/Source/Engine/Scripting/ManagedCLR/MEvent.cpp index bb2846af8..8dce9a863 100644 --- a/Source/Engine/Scripting/ManagedCLR/MEvent.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MEvent.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MEvent.h" #include "MType.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MEvent.h b/Source/Engine/Scripting/ManagedCLR/MEvent.h index 889898d43..69686cc0e 100644 --- a/Source/Engine/Scripting/ManagedCLR/MEvent.h +++ b/Source/Engine/Scripting/ManagedCLR/MEvent.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MField.cpp b/Source/Engine/Scripting/ManagedCLR/MField.cpp index 29005b9ea..0d5ba9fc9 100644 --- a/Source/Engine/Scripting/ManagedCLR/MField.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MField.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MField.h" #include "MType.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MField.h b/Source/Engine/Scripting/ManagedCLR/MField.h index 699d36841..820b5c9a5 100644 --- a/Source/Engine/Scripting/ManagedCLR/MField.h +++ b/Source/Engine/Scripting/ManagedCLR/MField.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MMethod.cpp b/Source/Engine/Scripting/ManagedCLR/MMethod.cpp index 2eee052dc..89c96a27d 100644 --- a/Source/Engine/Scripting/ManagedCLR/MMethod.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MMethod.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MMethod.h" #include "MType.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MMethod.h b/Source/Engine/Scripting/ManagedCLR/MMethod.h index 04d774c1e..d0d572939 100644 --- a/Source/Engine/Scripting/ManagedCLR/MMethod.h +++ b/Source/Engine/Scripting/ManagedCLR/MMethod.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MProperty.cpp b/Source/Engine/Scripting/ManagedCLR/MProperty.cpp index 58fccd917..f87bae3ab 100644 --- a/Source/Engine/Scripting/ManagedCLR/MProperty.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MProperty.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MProperty.h" #include "Engine/Core/Math/Math.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MProperty.h b/Source/Engine/Scripting/ManagedCLR/MProperty.h index bff5f5f08..a5fe2be43 100644 --- a/Source/Engine/Scripting/ManagedCLR/MProperty.h +++ b/Source/Engine/Scripting/ManagedCLR/MProperty.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MStaticConverter.h b/Source/Engine/Scripting/ManagedCLR/MStaticConverter.h index 19e0445dc..3bf373fab 100644 --- a/Source/Engine/Scripting/ManagedCLR/MStaticConverter.h +++ b/Source/Engine/Scripting/ManagedCLR/MStaticConverter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MType.cpp b/Source/Engine/Scripting/ManagedCLR/MType.cpp index 7af734664..f7c9faed0 100644 --- a/Source/Engine/Scripting/ManagedCLR/MType.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MType.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MType.h" #include "MUtils.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MType.h b/Source/Engine/Scripting/ManagedCLR/MType.h index 2dc82abd2..b0c58db7e 100644 --- a/Source/Engine/Scripting/ManagedCLR/MType.h +++ b/Source/Engine/Scripting/ManagedCLR/MType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MTypes.h b/Source/Engine/Scripting/ManagedCLR/MTypes.h index 71f687d80..3b1cbb4a3 100644 --- a/Source/Engine/Scripting/ManagedCLR/MTypes.h +++ b/Source/Engine/Scripting/ManagedCLR/MTypes.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedCLR/MUtils.cpp b/Source/Engine/Scripting/ManagedCLR/MUtils.cpp index 1b0c17386..a62acd9bc 100644 --- a/Source/Engine/Scripting/ManagedCLR/MUtils.cpp +++ b/Source/Engine/Scripting/ManagedCLR/MUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MUtils.h" #include "MClass.h" diff --git a/Source/Engine/Scripting/ManagedCLR/MUtils.h b/Source/Engine/Scripting/ManagedCLR/MUtils.h index 4fe2b55a8..6d70955ec 100644 --- a/Source/Engine/Scripting/ManagedCLR/MUtils.h +++ b/Source/Engine/Scripting/ManagedCLR/MUtils.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ManagedSerialization.cpp b/Source/Engine/Scripting/ManagedSerialization.cpp index 1fa799d56..737c0c91c 100644 --- a/Source/Engine/Scripting/ManagedSerialization.cpp +++ b/Source/Engine/Scripting/ManagedSerialization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ManagedSerialization.h" #if USE_MONO diff --git a/Source/Engine/Scripting/ManagedSerialization.h b/Source/Engine/Scripting/ManagedSerialization.h index 10495dd36..892742fd9 100644 --- a/Source/Engine/Scripting/ManagedSerialization.h +++ b/Source/Engine/Scripting/ManagedSerialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Object.cs b/Source/Engine/Scripting/Object.cs index b86ed00d8..77d47aec1 100644 --- a/Source/Engine/Scripting/Object.cs +++ b/Source/Engine/Scripting/Object.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.CompilerServices; diff --git a/Source/Engine/Scripting/Plugins/EditorPlugin.h b/Source/Engine/Scripting/Plugins/EditorPlugin.h index 7a519ee0d..b7ca9dde1 100644 --- a/Source/Engine/Scripting/Plugins/EditorPlugin.h +++ b/Source/Engine/Scripting/Plugins/EditorPlugin.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Plugins/GamePlugin.h b/Source/Engine/Scripting/Plugins/GamePlugin.h index d616c2f11..529d5f2b1 100644 --- a/Source/Engine/Scripting/Plugins/GamePlugin.h +++ b/Source/Engine/Scripting/Plugins/GamePlugin.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Plugins/Plugin.h b/Source/Engine/Scripting/Plugins/Plugin.h index 380b9a3c2..86c098f24 100644 --- a/Source/Engine/Scripting/Plugins/Plugin.h +++ b/Source/Engine/Scripting/Plugins/Plugin.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Plugins/PluginDescription.h b/Source/Engine/Scripting/Plugins/PluginDescription.h index cf7ed7ffd..44fe08d0e 100644 --- a/Source/Engine/Scripting/Plugins/PluginDescription.h +++ b/Source/Engine/Scripting/Plugins/PluginDescription.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Plugins/PluginManager.cpp b/Source/Engine/Scripting/Plugins/PluginManager.cpp index 0347fc6b2..554208171 100644 --- a/Source/Engine/Scripting/Plugins/PluginManager.cpp +++ b/Source/Engine/Scripting/Plugins/PluginManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "PluginManager.h" #include "FlaxEngine.Gen.h" diff --git a/Source/Engine/Scripting/Plugins/PluginManager.cs b/Source/Engine/Scripting/Plugins/PluginManager.cs index f376a0826..31cdff500 100644 --- a/Source/Engine/Scripting/Plugins/PluginManager.cs +++ b/Source/Engine/Scripting/Plugins/PluginManager.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Scripting/Plugins/PluginManager.h b/Source/Engine/Scripting/Plugins/PluginManager.h index 8640041a7..b2154361e 100644 --- a/Source/Engine/Scripting/Plugins/PluginManager.h +++ b/Source/Engine/Scripting/Plugins/PluginManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Script.cpp b/Source/Engine/Scripting/Script.cpp index 1bc0448ad..1ffb38210 100644 --- a/Source/Engine/Scripting/Script.cpp +++ b/Source/Engine/Scripting/Script.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Script.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Scripting/Script.cs b/Source/Engine/Scripting/Script.cs index 6c87d3ebf..8cd10b23b 100644 --- a/Source/Engine/Scripting/Script.cs +++ b/Source/Engine/Scripting/Script.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine { diff --git a/Source/Engine/Scripting/Script.h b/Source/Engine/Scripting/Script.h index 3ff0f78d1..2304ea57c 100644 --- a/Source/Engine/Scripting/Script.h +++ b/Source/Engine/Scripting/Script.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Scripting.Build.cs b/Source/Engine/Scripting/Scripting.Build.cs index b18a9b1ef..31d7b0689 100644 --- a/Source/Engine/Scripting/Scripting.Build.cs +++ b/Source/Engine/Scripting/Scripting.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Scripting/Scripting.Internal.cpp b/Source/Engine/Scripting/Scripting.Internal.cpp index 61f110282..7c531dd4e 100644 --- a/Source/Engine/Scripting/Scripting.Internal.cpp +++ b/Source/Engine/Scripting/Scripting.Internal.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Scripting.h" #include "ScriptingType.h" diff --git a/Source/Engine/Scripting/Scripting.cpp b/Source/Engine/Scripting/Scripting.cpp index ac7a6f8e8..f9cf96ae0 100644 --- a/Source/Engine/Scripting/Scripting.cpp +++ b/Source/Engine/Scripting/Scripting.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "BinaryModule.h" #include "Scripting.h" diff --git a/Source/Engine/Scripting/Scripting.cs b/Source/Engine/Scripting/Scripting.cs index 6eff982d9..fcf86d3c8 100644 --- a/Source/Engine/Scripting/Scripting.cs +++ b/Source/Engine/Scripting/Scripting.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Engine/Scripting/Scripting.h b/Source/Engine/Scripting/Scripting.h index dc13b696c..047380424 100644 --- a/Source/Engine/Scripting/Scripting.h +++ b/Source/Engine/Scripting/Scripting.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ScriptingCalls.h b/Source/Engine/Scripting/ScriptingCalls.h index 3a126c375..628969c23 100644 --- a/Source/Engine/Scripting/ScriptingCalls.h +++ b/Source/Engine/Scripting/ScriptingCalls.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ScriptingObject.cpp b/Source/Engine/Scripting/ScriptingObject.cpp index f547ba938..2e45b3e85 100644 --- a/Source/Engine/Scripting/ScriptingObject.cpp +++ b/Source/Engine/Scripting/ScriptingObject.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ScriptingObject.h" #include "Scripting.h" diff --git a/Source/Engine/Scripting/ScriptingObject.h b/Source/Engine/Scripting/ScriptingObject.h index aae6af623..e6d804163 100644 --- a/Source/Engine/Scripting/ScriptingObject.h +++ b/Source/Engine/Scripting/ScriptingObject.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ScriptingObjectReference.h b/Source/Engine/Scripting/ScriptingObjectReference.h index 26c75687b..ec311490b 100644 --- a/Source/Engine/Scripting/ScriptingObjectReference.h +++ b/Source/Engine/Scripting/ScriptingObjectReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/ScriptingType.h b/Source/Engine/Scripting/ScriptingType.h index 118c81e89..e0897cf73 100644 --- a/Source/Engine/Scripting/ScriptingType.h +++ b/Source/Engine/Scripting/ScriptingType.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/SoftObjectReference.cs b/Source/Engine/Scripting/SoftObjectReference.cs index dcd3d24f7..0e779dfbb 100644 --- a/Source/Engine/Scripting/SoftObjectReference.cs +++ b/Source/Engine/Scripting/SoftObjectReference.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Scripting/SoftObjectReference.h b/Source/Engine/Scripting/SoftObjectReference.h index 3af64f595..3366dbbc7 100644 --- a/Source/Engine/Scripting/SoftObjectReference.h +++ b/Source/Engine/Scripting/SoftObjectReference.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/StdTypesContainer.cpp b/Source/Engine/Scripting/StdTypesContainer.cpp index 0fa868aef..526b01817 100644 --- a/Source/Engine/Scripting/StdTypesContainer.cpp +++ b/Source/Engine/Scripting/StdTypesContainer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StdTypesContainer.h" #include "Scripting.h" diff --git a/Source/Engine/Scripting/StdTypesContainer.h b/Source/Engine/Scripting/StdTypesContainer.h index 1a84e38e2..d652c7bcd 100644 --- a/Source/Engine/Scripting/StdTypesContainer.h +++ b/Source/Engine/Scripting/StdTypesContainer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Scripting/Types.h b/Source/Engine/Scripting/Types.h index e88ba9a35..e54db5c4d 100644 --- a/Source/Engine/Scripting/Types.h +++ b/Source/Engine/Scripting/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/FileReadStream.cpp b/Source/Engine/Serialization/FileReadStream.cpp index 82a295596..9c38dfefe 100644 --- a/Source/Engine/Serialization/FileReadStream.cpp +++ b/Source/Engine/Serialization/FileReadStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FileReadStream.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Serialization/FileReadStream.h b/Source/Engine/Serialization/FileReadStream.h index 323953e32..40a14185b 100644 --- a/Source/Engine/Serialization/FileReadStream.h +++ b/Source/Engine/Serialization/FileReadStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/FileWriteStream.cpp b/Source/Engine/Serialization/FileWriteStream.cpp index 743618bc5..225ef40b8 100644 --- a/Source/Engine/Serialization/FileWriteStream.cpp +++ b/Source/Engine/Serialization/FileWriteStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "FileWriteStream.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Serialization/FileWriteStream.h b/Source/Engine/Serialization/FileWriteStream.h index badb28f3c..c40818e55 100644 --- a/Source/Engine/Serialization/FileWriteStream.h +++ b/Source/Engine/Serialization/FileWriteStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/ISerializable.h b/Source/Engine/Serialization/ISerializable.h index 4668588a3..1d165a54c 100644 --- a/Source/Engine/Serialization/ISerializable.h +++ b/Source/Engine/Serialization/ISerializable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/ISerializeModifier.h b/Source/Engine/Serialization/ISerializeModifier.h index 9dea9ad5a..c11be5503 100644 --- a/Source/Engine/Serialization/ISerializeModifier.h +++ b/Source/Engine/Serialization/ISerializeModifier.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/Json.h b/Source/Engine/Serialization/Json.h index fdfb451c5..9d24855c4 100644 --- a/Source/Engine/Serialization/Json.h +++ b/Source/Engine/Serialization/Json.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/JsonConverters.cs b/Source/Engine/Serialization/JsonConverters.cs index 4de09cb5d..3bb0f8a89 100644 --- a/Source/Engine/Serialization/JsonConverters.cs +++ b/Source/Engine/Serialization/JsonConverters.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.GUI; diff --git a/Source/Engine/Serialization/JsonCustomSerializers/ExtendedDefaultContractResolver.cs b/Source/Engine/Serialization/JsonCustomSerializers/ExtendedDefaultContractResolver.cs index dff18fb6a..2fcf7d75f 100644 --- a/Source/Engine/Serialization/JsonCustomSerializers/ExtendedDefaultContractResolver.cs +++ b/Source/Engine/Serialization/JsonCustomSerializers/ExtendedDefaultContractResolver.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Serialization/JsonFwd.h b/Source/Engine/Serialization/JsonFwd.h index 744693c90..4d533bbad 100644 --- a/Source/Engine/Serialization/JsonFwd.h +++ b/Source/Engine/Serialization/JsonFwd.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/JsonSerializer.cs b/Source/Engine/Serialization/JsonSerializer.cs index 29a5951f9..8dad82d64 100644 --- a/Source/Engine/Serialization/JsonSerializer.cs +++ b/Source/Engine/Serialization/JsonSerializer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/Serialization/JsonSerializer.h b/Source/Engine/Serialization/JsonSerializer.h index 6f31a56de..7548e9e97 100644 --- a/Source/Engine/Serialization/JsonSerializer.h +++ b/Source/Engine/Serialization/JsonSerializer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/JsonTools.cpp b/Source/Engine/Serialization/JsonTools.cpp index 264cef008..07a577033 100644 --- a/Source/Engine/Serialization/JsonTools.cpp +++ b/Source/Engine/Serialization/JsonTools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "JsonTools.h" #include "ISerializable.h" diff --git a/Source/Engine/Serialization/JsonTools.h b/Source/Engine/Serialization/JsonTools.h index a2f6fb606..397355e1b 100644 --- a/Source/Engine/Serialization/JsonTools.h +++ b/Source/Engine/Serialization/JsonTools.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/JsonWriter.cpp b/Source/Engine/Serialization/JsonWriter.cpp index c1a6a6b97..2cbf423fd 100644 --- a/Source/Engine/Serialization/JsonWriter.cpp +++ b/Source/Engine/Serialization/JsonWriter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "JsonWriter.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Serialization/JsonWriter.h b/Source/Engine/Serialization/JsonWriter.h index 6e5e07250..6e6c607cf 100644 --- a/Source/Engine/Serialization/JsonWriter.h +++ b/Source/Engine/Serialization/JsonWriter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/JsonWriters.h b/Source/Engine/Serialization/JsonWriters.h index b3f157242..fb6cbdf1a 100644 --- a/Source/Engine/Serialization/JsonWriters.h +++ b/Source/Engine/Serialization/JsonWriters.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/MemoryReadStream.cpp b/Source/Engine/Serialization/MemoryReadStream.cpp index 2d5f12e0c..866c6730b 100644 --- a/Source/Engine/Serialization/MemoryReadStream.cpp +++ b/Source/Engine/Serialization/MemoryReadStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MemoryReadStream.h" diff --git a/Source/Engine/Serialization/MemoryReadStream.h b/Source/Engine/Serialization/MemoryReadStream.h index 6d5ade8e5..c2a77a2e3 100644 --- a/Source/Engine/Serialization/MemoryReadStream.h +++ b/Source/Engine/Serialization/MemoryReadStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/MemoryWriteStream.cpp b/Source/Engine/Serialization/MemoryWriteStream.cpp index e4ddf6cf4..3939af7be 100644 --- a/Source/Engine/Serialization/MemoryWriteStream.cpp +++ b/Source/Engine/Serialization/MemoryWriteStream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Platform/Platform.h" #include "Engine/Platform/File.h" diff --git a/Source/Engine/Serialization/MemoryWriteStream.h b/Source/Engine/Serialization/MemoryWriteStream.h index 2c9197d46..1c6f39ab9 100644 --- a/Source/Engine/Serialization/MemoryWriteStream.h +++ b/Source/Engine/Serialization/MemoryWriteStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/ReadStream.h b/Source/Engine/Serialization/ReadStream.h index d512e168d..df6f9a95e 100644 --- a/Source/Engine/Serialization/ReadStream.h +++ b/Source/Engine/Serialization/ReadStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/Serialization.Build.cs b/Source/Engine/Serialization/Serialization.Build.cs index 02fbd931d..61eb9ebc2 100644 --- a/Source/Engine/Serialization/Serialization.Build.cs +++ b/Source/Engine/Serialization/Serialization.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Serialization/Serialization.cpp b/Source/Engine/Serialization/Serialization.cpp index 2d6a8b4b8..a913781a9 100644 --- a/Source/Engine/Serialization/Serialization.cpp +++ b/Source/Engine/Serialization/Serialization.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Serialization.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Serialization/Serialization.h b/Source/Engine/Serialization/Serialization.h index 6a36b3600..7543f8241 100644 --- a/Source/Engine/Serialization/Serialization.h +++ b/Source/Engine/Serialization/Serialization.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/SerializationFwd.h b/Source/Engine/Serialization/SerializationFwd.h index d9ef2600f..6315ec058 100644 --- a/Source/Engine/Serialization/SerializationFwd.h +++ b/Source/Engine/Serialization/SerializationFwd.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/Stream.cpp b/Source/Engine/Serialization/Stream.cpp index 78adbe2c1..34c1e8341 100644 --- a/Source/Engine/Serialization/Stream.cpp +++ b/Source/Engine/Serialization/Stream.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ReadStream.h" #include "WriteStream.h" diff --git a/Source/Engine/Serialization/Stream.h b/Source/Engine/Serialization/Stream.h index 6dbc8b3ec..a39fa749d 100644 --- a/Source/Engine/Serialization/Stream.h +++ b/Source/Engine/Serialization/Stream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Serialization/UnmanagedMemoryStream.cs b/Source/Engine/Serialization/UnmanagedMemoryStream.cs index 18cbd0180..d4dbfd94d 100644 --- a/Source/Engine/Serialization/UnmanagedMemoryStream.cs +++ b/Source/Engine/Serialization/UnmanagedMemoryStream.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Engine/Serialization/UnmanagedStringReader.cs b/Source/Engine/Serialization/UnmanagedStringReader.cs index 4c5629cc9..6682cf493 100644 --- a/Source/Engine/Serialization/UnmanagedStringReader.cs +++ b/Source/Engine/Serialization/UnmanagedStringReader.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Engine/Serialization/WriteStream.h b/Source/Engine/Serialization/WriteStream.h index 4b818a316..7b322da45 100644 --- a/Source/Engine/Serialization/WriteStream.h +++ b/Source/Engine/Serialization/WriteStream.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Config.h b/Source/Engine/ShadersCompilation/Config.h index ffcdaae86..d0f3f1fd1 100644 --- a/Source/Engine/ShadersCompilation/Config.h +++ b/Source/Engine/ShadersCompilation/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.Build.cs b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.Build.cs index a21387e5e..8cc4348ed 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.Build.cs +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.cpp b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.cpp index b599b7090..d4cf148c9 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.cpp +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_D3D_SHADER_COMPILER diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.h b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.h index 5b176bddc..661a96000 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.h +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerD3D.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.Build.cs b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.Build.cs index dcf2d9b0e..80bd9428d 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.Build.cs +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.cpp b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.cpp index 790319507..b31e8b310 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.cpp +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_DX_SHADER_COMPILER diff --git a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.h b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.h index f7e2d71d6..b9791e5a7 100644 --- a/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.h +++ b/Source/Engine/ShadersCompilation/DirectX/ShaderCompilerDX.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/Config.h b/Source/Engine/ShadersCompilation/Parser/Config.h index 1c1ceee71..df905643b 100644 --- a/Source/Engine/ShadersCompilation/Parser/Config.h +++ b/Source/Engine/ShadersCompilation/Parser/Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/IShaderFunctionReader.h b/Source/Engine/ShadersCompilation/Parser/IShaderFunctionReader.h index be1d93039..c63ed4fec 100644 --- a/Source/Engine/ShadersCompilation/Parser/IShaderFunctionReader.h +++ b/Source/Engine/ShadersCompilation/Parser/IShaderFunctionReader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/IShaderParser.h b/Source/Engine/ShadersCompilation/Parser/IShaderParser.h index 78457d6da..743b5ecb0 100644 --- a/Source/Engine/ShadersCompilation/Parser/IShaderParser.h +++ b/Source/Engine/ShadersCompilation/Parser/IShaderParser.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ITokenReader.h b/Source/Engine/ShadersCompilation/Parser/ITokenReader.h index acc753a77..00985098b 100644 --- a/Source/Engine/ShadersCompilation/Parser/ITokenReader.h +++ b/Source/Engine/ShadersCompilation/Parser/ITokenReader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ITokenReadersContainer.h b/Source/Engine/ShadersCompilation/Parser/ITokenReadersContainer.h index 00da43e01..851a5e01f 100644 --- a/Source/Engine/ShadersCompilation/Parser/ITokenReadersContainer.h +++ b/Source/Engine/ShadersCompilation/Parser/ITokenReadersContainer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CB.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CB.h index e314ced61..ac81a1d3c 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CB.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CB.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CS.h index a1ea61a38..f1bd1aacd 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.CS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.DS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.DS.h index c0a41ac03..e57b88f45 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.DS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.DS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.GS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.GS.h index d33ee4fba..12b573c05 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.GS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.GS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.HS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.HS.h index ee813ab85..f2ff8e3f7 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.HS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.HS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.PS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.PS.h index e71683218..fd2d56d70 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.PS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.PS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.VS.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.VS.h index 2539cd096..48541f07a 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.VS.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.VS.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.h b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.h index d4e7e7e28..fdba37efd 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderFunctionReader.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderMeta.h b/Source/Engine/ShadersCompilation/Parser/ShaderMeta.h index 2ef7ca171..781cd28a0 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderMeta.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderMeta.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.Parse.cpp b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.Parse.cpp index 7b0f1e7bf..035c7bd24 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.Parse.cpp +++ b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.Parse.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ShaderProcessing.h" diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.cpp b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.cpp index 2acab15ad..777a670f6 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.cpp +++ b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ShaderProcessing.h" diff --git a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.h b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.h index d2ae22b25..48c0a036d 100644 --- a/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.h +++ b/Source/Engine/ShadersCompilation/Parser/ShaderProcessing.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/ShaderCompilationContext.h b/Source/Engine/ShadersCompilation/ShaderCompilationContext.h index dabf54642..cc9c898bd 100644 --- a/Source/Engine/ShadersCompilation/ShaderCompilationContext.h +++ b/Source/Engine/ShadersCompilation/ShaderCompilationContext.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/ShaderCompiler.cpp b/Source/Engine/ShadersCompilation/ShaderCompiler.cpp index afca3c4b5..10aeda411 100644 --- a/Source/Engine/ShadersCompilation/ShaderCompiler.cpp +++ b/Source/Engine/ShadersCompilation/ShaderCompiler.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_SHADER_COMPILER diff --git a/Source/Engine/ShadersCompilation/ShaderCompiler.h b/Source/Engine/ShadersCompilation/ShaderCompiler.h index 201e1946e..5d67ec9e8 100644 --- a/Source/Engine/ShadersCompilation/ShaderCompiler.h +++ b/Source/Engine/ShadersCompilation/ShaderCompiler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/ShaderDebugDataExporter.h b/Source/Engine/ShadersCompilation/ShaderDebugDataExporter.h index bbd30a6b6..a0c7356ed 100644 --- a/Source/Engine/ShadersCompilation/ShaderDebugDataExporter.h +++ b/Source/Engine/ShadersCompilation/ShaderDebugDataExporter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/ShadersCompilation.Build.cs b/Source/Engine/ShadersCompilation/ShadersCompilation.Build.cs index 3ee0f9a54..e334e384e 100644 --- a/Source/Engine/ShadersCompilation/ShadersCompilation.Build.cs +++ b/Source/Engine/ShadersCompilation/ShadersCompilation.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/ShadersCompilation/ShadersCompilation.cpp b/Source/Engine/ShadersCompilation/ShadersCompilation.cpp index f6ab56449..43c5ec604 100644 --- a/Source/Engine/ShadersCompilation/ShadersCompilation.cpp +++ b/Source/Engine/ShadersCompilation/ShadersCompilation.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_SHADER_COMPILER diff --git a/Source/Engine/ShadersCompilation/ShadersCompilation.h b/Source/Engine/ShadersCompilation/ShadersCompilation.h index 15f5a8a10..fca6a6ebe 100644 --- a/Source/Engine/ShadersCompilation/ShadersCompilation.h +++ b/Source/Engine/ShadersCompilation/ShadersCompilation.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.Build.cs b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.Build.cs index fddf21319..ed71438fd 100644 --- a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.Build.cs +++ b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build.NativeCpp; diff --git a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.cpp b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.cpp index fb66e78bd..7d59c337e 100644 --- a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.cpp +++ b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_VK_SHADER_COMPILER diff --git a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.h b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.h index 15de0d2ab..4c7f00958 100644 --- a/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.h +++ b/Source/Engine/ShadersCompilation/Vulkan/ShaderCompilerVulkan.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadowsOfMordor/AtlasChartsPacker.h b/Source/Engine/ShadowsOfMordor/AtlasChartsPacker.h index 1e10bdd45..cf5671063 100644 --- a/Source/Engine/ShadowsOfMordor/AtlasChartsPacker.h +++ b/Source/Engine/ShadowsOfMordor/AtlasChartsPacker.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadowsOfMordor/Builder.BuildCache.cpp b/Source/Engine/ShadowsOfMordor/Builder.BuildCache.cpp index 8b5d694ab..acc91fed4 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.BuildCache.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.BuildCache.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Level/Scene/Lightmap.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.Charts.cpp b/Source/Engine/ShadowsOfMordor/Builder.Charts.cpp index 9586ac997..60dfc3260 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Charts.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.Charts.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "AtlasChartsPacker.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.Config.h b/Source/Engine/ShadowsOfMordor/Builder.Config.h index b95a84b74..675acccc3 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Config.h +++ b/Source/Engine/ShadowsOfMordor/Builder.Config.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadowsOfMordor/Builder.Debug.cpp b/Source/Engine/ShadowsOfMordor/Builder.Debug.cpp index 2a0a4673f..268f0ba17 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Debug.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.Debug.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Platform/FileSystem.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.DoWork.cpp b/Source/Engine/ShadowsOfMordor/Builder.DoWork.cpp index 1a04c6fa5..41632d3bf 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.DoWork.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.DoWork.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.Entries.cpp b/Source/Engine/ShadowsOfMordor/Builder.Entries.cpp index 38e0e1a9b..5c7e89c81 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Entries.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.Entries.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.Hemispheres.cpp b/Source/Engine/ShadowsOfMordor/Builder.Hemispheres.cpp index 961e7deaa..e3a6d6cf0 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Hemispheres.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.Hemispheres.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.Jobs.cpp b/Source/Engine/ShadowsOfMordor/Builder.Jobs.cpp index cffbb6043..1580bf7b7 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.Jobs.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.Jobs.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Core/Types/TimeSpan.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.cpp b/Source/Engine/ShadowsOfMordor/Builder.cpp index af69f28b3..798f62184 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.cpp +++ b/Source/Engine/ShadowsOfMordor/Builder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Builder.h" #include "Engine/Engine/Engine.h" diff --git a/Source/Engine/ShadowsOfMordor/Builder.h b/Source/Engine/ShadowsOfMordor/Builder.h index bcbf0ce04..5475e8028 100644 --- a/Source/Engine/ShadowsOfMordor/Builder.h +++ b/Source/Engine/ShadowsOfMordor/Builder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/ShadowsOfMordor/ShadowsOfMordor.Build.cs b/Source/Engine/ShadowsOfMordor/ShadowsOfMordor.Build.cs index 69b263083..21aff8d73 100644 --- a/Source/Engine/ShadowsOfMordor/ShadowsOfMordor.Build.cs +++ b/Source/Engine/ShadowsOfMordor/ShadowsOfMordor.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/ShadowsOfMordor/Types.h b/Source/Engine/ShadowsOfMordor/Types.h index 9cc4015a2..765111d8e 100644 --- a/Source/Engine/ShadowsOfMordor/Types.h +++ b/Source/Engine/ShadowsOfMordor/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/IStreamingHandler.h b/Source/Engine/Streaming/IStreamingHandler.h index 126cf3ea2..0dd615c2a 100644 --- a/Source/Engine/Streaming/IStreamingHandler.h +++ b/Source/Engine/Streaming/IStreamingHandler.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/StreamableResource.h b/Source/Engine/Streaming/StreamableResource.h index 1595b8561..ae44eb442 100644 --- a/Source/Engine/Streaming/StreamableResource.h +++ b/Source/Engine/Streaming/StreamableResource.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/Streaming.Build.cs b/Source/Engine/Streaming/Streaming.Build.cs index 3f39d188f..98c8226f6 100644 --- a/Source/Engine/Streaming/Streaming.Build.cs +++ b/Source/Engine/Streaming/Streaming.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Streaming/Streaming.cpp b/Source/Engine/Streaming/Streaming.cpp index f7ad33dc0..963e7ad1e 100644 --- a/Source/Engine/Streaming/Streaming.cpp +++ b/Source/Engine/Streaming/Streaming.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Streaming.h" #include "StreamableResource.h" diff --git a/Source/Engine/Streaming/Streaming.h b/Source/Engine/Streaming/Streaming.h index a1685f50a..72540df16 100644 --- a/Source/Engine/Streaming/Streaming.h +++ b/Source/Engine/Streaming/Streaming.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/StreamingGroup.cpp b/Source/Engine/Streaming/StreamingGroup.cpp index 20bcf7bba..d3c27e907 100644 --- a/Source/Engine/Streaming/StreamingGroup.cpp +++ b/Source/Engine/Streaming/StreamingGroup.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StreamingGroup.h" #include "StreamingHandlers.h" diff --git a/Source/Engine/Streaming/StreamingGroup.h b/Source/Engine/Streaming/StreamingGroup.h index 3a8f82c1a..d6e03de1b 100644 --- a/Source/Engine/Streaming/StreamingGroup.h +++ b/Source/Engine/Streaming/StreamingGroup.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/StreamingHandlers.cpp b/Source/Engine/Streaming/StreamingHandlers.cpp index 17ca1c6f5..a651413fa 100644 --- a/Source/Engine/Streaming/StreamingHandlers.cpp +++ b/Source/Engine/Streaming/StreamingHandlers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StreamingHandlers.h" #include "Streaming.h" diff --git a/Source/Engine/Streaming/StreamingHandlers.h b/Source/Engine/Streaming/StreamingHandlers.h index 010b1aa5e..6ec4a678a 100644 --- a/Source/Engine/Streaming/StreamingHandlers.h +++ b/Source/Engine/Streaming/StreamingHandlers.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/StreamingSettings.h b/Source/Engine/Streaming/StreamingSettings.h index bc66beef5..3faffb6b1 100644 --- a/Source/Engine/Streaming/StreamingSettings.h +++ b/Source/Engine/Streaming/StreamingSettings.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Streaming/TextureGroup.h b/Source/Engine/Streaming/TextureGroup.h index de1e9c026..42b308baf 100644 --- a/Source/Engine/Streaming/TextureGroup.h +++ b/Source/Engine/Streaming/TextureGroup.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Terrain/Terrain.Build.cs b/Source/Engine/Terrain/Terrain.Build.cs index 623b4b897..16cf6d2ab 100644 --- a/Source/Engine/Terrain/Terrain.Build.cs +++ b/Source/Engine/Terrain/Terrain.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Terrain/Terrain.cpp b/Source/Engine/Terrain/Terrain.cpp index 8c701e9d5..fb6762c9c 100644 --- a/Source/Engine/Terrain/Terrain.cpp +++ b/Source/Engine/Terrain/Terrain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Terrain.h" #include "TerrainPatch.h" diff --git a/Source/Engine/Terrain/Terrain.cs b/Source/Engine/Terrain/Terrain.cs index 1829bbfa6..e0f43fbad 100644 --- a/Source/Engine/Terrain/Terrain.cs +++ b/Source/Engine/Terrain/Terrain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Terrain/Terrain.h b/Source/Engine/Terrain/Terrain.h index 7d2ec7714..6a3a09fd7 100644 --- a/Source/Engine/Terrain/Terrain.h +++ b/Source/Engine/Terrain/Terrain.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Terrain/TerrainChunk.cpp b/Source/Engine/Terrain/TerrainChunk.cpp index b1e1fb2c6..73c6e3892 100644 --- a/Source/Engine/Terrain/TerrainChunk.cpp +++ b/Source/Engine/Terrain/TerrainChunk.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TerrainChunk.h" #include "Engine/Serialization/Serialization.h" diff --git a/Source/Engine/Terrain/TerrainChunk.h b/Source/Engine/Terrain/TerrainChunk.h index d8eb5a51f..d272157d4 100644 --- a/Source/Engine/Terrain/TerrainChunk.h +++ b/Source/Engine/Terrain/TerrainChunk.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Terrain/TerrainManager.cpp b/Source/Engine/Terrain/TerrainManager.cpp index 2d8af5153..ed95d3383 100644 --- a/Source/Engine/Terrain/TerrainManager.cpp +++ b/Source/Engine/Terrain/TerrainManager.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TerrainManager.h" #include "Terrain.h" diff --git a/Source/Engine/Terrain/TerrainManager.h b/Source/Engine/Terrain/TerrainManager.h index b378ed177..25803f603 100644 --- a/Source/Engine/Terrain/TerrainManager.h +++ b/Source/Engine/Terrain/TerrainManager.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Terrain/TerrainPatch.cpp b/Source/Engine/Terrain/TerrainPatch.cpp index 9b104c489..bb7adccfe 100644 --- a/Source/Engine/Terrain/TerrainPatch.cpp +++ b/Source/Engine/Terrain/TerrainPatch.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TerrainPatch.h" #include "Terrain.h" diff --git a/Source/Engine/Terrain/TerrainPatch.h b/Source/Engine/Terrain/TerrainPatch.h index ebb052299..44a768f90 100644 --- a/Source/Engine/Terrain/TerrainPatch.h +++ b/Source/Engine/Terrain/TerrainPatch.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tests/TestCollections.cpp b/Source/Engine/Tests/TestCollections.cpp index a82ae40ce..21aeb1c36 100644 --- a/Source/Engine/Tests/TestCollections.cpp +++ b/Source/Engine/Tests/TestCollections.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/RandomStream.h" #include "Engine/Core/Collections/Array.h" diff --git a/Source/Engine/Tests/TestGuid.cpp b/Source/Engine/Tests/TestGuid.cpp index 8afd858f1..86db305ff 100644 --- a/Source/Engine/Tests/TestGuid.cpp +++ b/Source/Engine/Tests/TestGuid.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/Types/Guid.h" #include "Engine/Core/Types/String.h" diff --git a/Source/Engine/Tests/TestLevel.cpp b/Source/Engine/Tests/TestLevel.cpp index 830868a1d..1e09bc3d8 100644 --- a/Source/Engine/Tests/TestLevel.cpp +++ b/Source/Engine/Tests/TestLevel.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/Math/Vector3.h" #include "Engine/Level/LargeWorlds.h" diff --git a/Source/Engine/Tests/TestMain.cpp b/Source/Engine/Tests/TestMain.cpp index 68998e3e0..c594234fe 100644 --- a/Source/Engine/Tests/TestMain.cpp +++ b/Source/Engine/Tests/TestMain.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if PLATFORM_WINDOWS || PLATFORM_LINUX || PLATFORM_MAC diff --git a/Source/Engine/Tests/TestMath.cpp b/Source/Engine/Tests/TestMath.cpp index 82724064f..d3e298345 100644 --- a/Source/Engine/Tests/TestMath.cpp +++ b/Source/Engine/Tests/TestMath.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/Math/Matrix.h" #include "Engine/Core/Math/Packed.h" diff --git a/Source/Engine/Tests/TestModelTool.cpp b/Source/Engine/Tests/TestModelTool.cpp index 13aa2bf15..0468a2a1d 100644 --- a/Source/Engine/Tests/TestModelTool.cpp +++ b/Source/Engine/Tests/TestModelTool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Tools/ModelTool/ModelTool.h" #include diff --git a/Source/Engine/Tests/TestPrefabs.cpp b/Source/Engine/Tests/TestPrefabs.cpp index 72e063132..38cdd033d 100644 --- a/Source/Engine/Tests/TestPrefabs.cpp +++ b/Source/Engine/Tests/TestPrefabs.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Content/Content.h" #include "Engine/Content/AssetReference.h" diff --git a/Source/Engine/Tests/TestString.cpp b/Source/Engine/Tests/TestString.cpp index 02551756f..265f20b42 100644 --- a/Source/Engine/Tests/TestString.cpp +++ b/Source/Engine/Tests/TestString.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/Types/String.h" #include "Engine/Core/Types/StringView.h" diff --git a/Source/Engine/Tests/TestStringUtils.cpp b/Source/Engine/Tests/TestStringUtils.cpp index 4b9cdc803..21d787f72 100644 --- a/Source/Engine/Tests/TestStringUtils.cpp +++ b/Source/Engine/Tests/TestStringUtils.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Engine/Core/Types/String.h" #include "Engine/Core/Types/StringView.h" diff --git a/Source/Engine/Tests/Tests.Build.cs b/Source/Engine/Tests/Tests.Build.cs index ad64962a0..9e7d35f6c 100644 --- a/Source/Engine/Tests/Tests.Build.cs +++ b/Source/Engine/Tests/Tests.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/Threading/ConcurrentBuffer.h b/Source/Engine/Threading/ConcurrentBuffer.h index e4a89f9b7..ccc5ffc0c 100644 --- a/Source/Engine/Threading/ConcurrentBuffer.h +++ b/Source/Engine/Threading/ConcurrentBuffer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ConcurrentQueue.h b/Source/Engine/Threading/ConcurrentQueue.h index 595233e52..53ac98965 100644 --- a/Source/Engine/Threading/ConcurrentQueue.h +++ b/Source/Engine/Threading/ConcurrentQueue.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ConcurrentTaskQueue.h b/Source/Engine/Threading/ConcurrentTaskQueue.h index 602bfd765..7040c14b0 100644 --- a/Source/Engine/Threading/ConcurrentTaskQueue.h +++ b/Source/Engine/Threading/ConcurrentTaskQueue.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/IRunnable.h b/Source/Engine/Threading/IRunnable.h index 670ab14cd..65991e34c 100644 --- a/Source/Engine/Threading/IRunnable.h +++ b/Source/Engine/Threading/IRunnable.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/JobSystem.cpp b/Source/Engine/Threading/JobSystem.cpp index c297f65ce..bbea7c1f2 100644 --- a/Source/Engine/Threading/JobSystem.cpp +++ b/Source/Engine/Threading/JobSystem.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "JobSystem.h" #include "IRunnable.h" diff --git a/Source/Engine/Threading/JobSystem.h b/Source/Engine/Threading/JobSystem.h index e009e2f29..f67372b72 100644 --- a/Source/Engine/Threading/JobSystem.h +++ b/Source/Engine/Threading/JobSystem.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/MainThreadTask.cpp b/Source/Engine/Threading/MainThreadTask.cpp index 0febc8bc4..636edd3c2 100644 --- a/Source/Engine/Threading/MainThreadTask.cpp +++ b/Source/Engine/Threading/MainThreadTask.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MainThreadTask.h" #include "Engine/Platform/CriticalSection.h" diff --git a/Source/Engine/Threading/MainThreadTask.h b/Source/Engine/Threading/MainThreadTask.h index 8919eb66f..36e66bfb0 100644 --- a/Source/Engine/Threading/MainThreadTask.h +++ b/Source/Engine/Threading/MainThreadTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/Task.cpp b/Source/Engine/Threading/Task.cpp index 09e16c216..a516c31c7 100644 --- a/Source/Engine/Threading/Task.cpp +++ b/Source/Engine/Threading/Task.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Task.h" #include "ThreadPoolTask.h" diff --git a/Source/Engine/Threading/Task.h b/Source/Engine/Threading/Task.h index 8f12696d7..c783bc5ae 100644 --- a/Source/Engine/Threading/Task.h +++ b/Source/Engine/Threading/Task.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/TaskGraph.cpp b/Source/Engine/Threading/TaskGraph.cpp index cc7d80a0a..26a611a8a 100644 --- a/Source/Engine/Threading/TaskGraph.cpp +++ b/Source/Engine/Threading/TaskGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TaskGraph.h" #include "JobSystem.h" diff --git a/Source/Engine/Threading/TaskGraph.h b/Source/Engine/Threading/TaskGraph.h index c61297cca..f6c130f4d 100644 --- a/Source/Engine/Threading/TaskGraph.h +++ b/Source/Engine/Threading/TaskGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ThreadLocal.h b/Source/Engine/Threading/ThreadLocal.h index d82610906..40f9096cd 100644 --- a/Source/Engine/Threading/ThreadLocal.h +++ b/Source/Engine/Threading/ThreadLocal.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ThreadPool.cpp b/Source/Engine/Threading/ThreadPool.cpp index 30a89cf00..821d1a07b 100644 --- a/Source/Engine/Threading/ThreadPool.cpp +++ b/Source/Engine/Threading/ThreadPool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ThreadPool.h" #include "IRunnable.h" diff --git a/Source/Engine/Threading/ThreadPool.h b/Source/Engine/Threading/ThreadPool.h index 5fd433fa0..36bdce766 100644 --- a/Source/Engine/Threading/ThreadPool.h +++ b/Source/Engine/Threading/ThreadPool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ThreadPoolTask.h b/Source/Engine/Threading/ThreadPoolTask.h index 179615f7f..91b169ccb 100644 --- a/Source/Engine/Threading/ThreadPoolTask.h +++ b/Source/Engine/Threading/ThreadPoolTask.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ThreadRegistry.cpp b/Source/Engine/Threading/ThreadRegistry.cpp index 3dafb4f87..2e5628071 100644 --- a/Source/Engine/Threading/ThreadRegistry.cpp +++ b/Source/Engine/Threading/ThreadRegistry.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ThreadRegistry.h" #include "Engine/Core/Collections/Dictionary.h" diff --git a/Source/Engine/Threading/ThreadRegistry.h b/Source/Engine/Threading/ThreadRegistry.h index 2d2fcfc3b..540732cdf 100644 --- a/Source/Engine/Threading/ThreadRegistry.h +++ b/Source/Engine/Threading/ThreadRegistry.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/ThreadSpawner.h b/Source/Engine/Threading/ThreadSpawner.h index be76486b2..31aa363b9 100644 --- a/Source/Engine/Threading/ThreadSpawner.h +++ b/Source/Engine/Threading/ThreadSpawner.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Threading/Threading.Build.cs b/Source/Engine/Threading/Threading.Build.cs index ad757900b..8a3703b21 100644 --- a/Source/Engine/Threading/Threading.Build.cs +++ b/Source/Engine/Threading/Threading.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Threading/Threading.h b/Source/Engine/Threading/Threading.h index 4a65787da..90b06d5cb 100644 --- a/Source/Engine/Threading/Threading.h +++ b/Source/Engine/Threading/Threading.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/AudioDecoder.h b/Source/Engine/Tools/AudioTool/AudioDecoder.h index 7a452092b..4e2bac970 100644 --- a/Source/Engine/Tools/AudioTool/AudioDecoder.h +++ b/Source/Engine/Tools/AudioTool/AudioDecoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/AudioEncoder.h b/Source/Engine/Tools/AudioTool/AudioEncoder.h index 099bb632b..33f35ba6e 100644 --- a/Source/Engine/Tools/AudioTool/AudioEncoder.h +++ b/Source/Engine/Tools/AudioTool/AudioEncoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/AudioTool.Build.cs b/Source/Engine/Tools/AudioTool/AudioTool.Build.cs index 8fe27b5ff..e8d4069b3 100644 --- a/Source/Engine/Tools/AudioTool/AudioTool.Build.cs +++ b/Source/Engine/Tools/AudioTool/AudioTool.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/Tools/AudioTool/AudioTool.cpp b/Source/Engine/Tools/AudioTool/AudioTool.cpp index c5ecd9235..2a047117b 100644 --- a/Source/Engine/Tools/AudioTool/AudioTool.cpp +++ b/Source/Engine/Tools/AudioTool/AudioTool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "AudioTool.h" #include "Engine/Core/Core.h" diff --git a/Source/Engine/Tools/AudioTool/AudioTool.h b/Source/Engine/Tools/AudioTool/AudioTool.h index dc1402348..b9525ffa7 100644 --- a/Source/Engine/Tools/AudioTool/AudioTool.h +++ b/Source/Engine/Tools/AudioTool/AudioTool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/MP3Decoder.cpp b/Source/Engine/Tools/AudioTool/MP3Decoder.cpp index 390e02019..1f74e381d 100644 --- a/Source/Engine/Tools/AudioTool/MP3Decoder.cpp +++ b/Source/Engine/Tools/AudioTool/MP3Decoder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "MP3Decoder.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Tools/AudioTool/MP3Decoder.h b/Source/Engine/Tools/AudioTool/MP3Decoder.h index 29d759929..430704955 100644 --- a/Source/Engine/Tools/AudioTool/MP3Decoder.h +++ b/Source/Engine/Tools/AudioTool/MP3Decoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/OggVorbisDecoder.cpp b/Source/Engine/Tools/AudioTool/OggVorbisDecoder.cpp index 096808e44..2b645735b 100644 --- a/Source/Engine/Tools/AudioTool/OggVorbisDecoder.cpp +++ b/Source/Engine/Tools/AudioTool/OggVorbisDecoder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_OGG_VORBIS diff --git a/Source/Engine/Tools/AudioTool/OggVorbisDecoder.h b/Source/Engine/Tools/AudioTool/OggVorbisDecoder.h index 0e153c921..e0908d439 100644 --- a/Source/Engine/Tools/AudioTool/OggVorbisDecoder.h +++ b/Source/Engine/Tools/AudioTool/OggVorbisDecoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/OggVorbisEncoder.cpp b/Source/Engine/Tools/AudioTool/OggVorbisEncoder.cpp index c7899c22f..1d81abf00 100644 --- a/Source/Engine/Tools/AudioTool/OggVorbisEncoder.cpp +++ b/Source/Engine/Tools/AudioTool/OggVorbisEncoder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_OGG_VORBIS diff --git a/Source/Engine/Tools/AudioTool/OggVorbisEncoder.h b/Source/Engine/Tools/AudioTool/OggVorbisEncoder.h index 66eacd05b..5a954b37d 100644 --- a/Source/Engine/Tools/AudioTool/OggVorbisEncoder.h +++ b/Source/Engine/Tools/AudioTool/OggVorbisEncoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/AudioTool/WaveDecoder.cpp b/Source/Engine/Tools/AudioTool/WaveDecoder.cpp index d93891615..961745eeb 100644 --- a/Source/Engine/Tools/AudioTool/WaveDecoder.cpp +++ b/Source/Engine/Tools/AudioTool/WaveDecoder.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "WaveDecoder.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Tools/AudioTool/WaveDecoder.h b/Source/Engine/Tools/AudioTool/WaveDecoder.h index 69e772840..6e9eac4c2 100644 --- a/Source/Engine/Tools/AudioTool/WaveDecoder.h +++ b/Source/Engine/Tools/AudioTool/WaveDecoder.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Build.cs b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Build.cs index 62dd2710b..1fb59a671 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Build.cs +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build; diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layer.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layer.cpp index 9549e8334..b7af16cb2 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layer.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layers.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layers.cpp index afc9d8276..63718b329 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layers.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Layers.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Material.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Material.cpp index 9790ad86d..8aa300731 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Material.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Material.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Parameters.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Parameters.cpp index 67bb3d84d..10410e64f 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Parameters.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Parameters.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Particles.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Particles.cpp index c0f87d85b..73ad4b99b 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Particles.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Particles.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Textures.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Textures.cpp index d6ae2719f..98a9e7c87 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Textures.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Textures.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Tools.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Tools.cpp index 7dc96c6f4..2f359d14f 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Tools.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.Tools.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.cpp index 9b8812eee..6de5c6cf9 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.h b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.h index 3f184daaf..92f238508 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.h +++ b/Source/Engine/Tools/MaterialGenerator/MaterialGenerator.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialLayer.cpp b/Source/Engine/Tools/MaterialGenerator/MaterialLayer.cpp index 81a9886db..33b3dfed3 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialLayer.cpp +++ b/Source/Engine/Tools/MaterialGenerator/MaterialLayer.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MATERIAL_GRAPH diff --git a/Source/Engine/Tools/MaterialGenerator/MaterialLayer.h b/Source/Engine/Tools/MaterialGenerator/MaterialLayer.h index f6aa118b8..19bb2faf5 100644 --- a/Source/Engine/Tools/MaterialGenerator/MaterialLayer.h +++ b/Source/Engine/Tools/MaterialGenerator/MaterialLayer.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/MaterialGenerator/Types.h b/Source/Engine/Tools/MaterialGenerator/Types.h index 04c35b81d..80b766061 100644 --- a/Source/Engine/Tools/MaterialGenerator/Types.h +++ b/Source/Engine/Tools/MaterialGenerator/Types.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.cpp b/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.cpp index 4f01bd1a9..c81a03254 100644 --- a/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.cpp +++ b/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL diff --git a/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.h b/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.h index 8c4ce6b8c..2f9a8e3f0 100644 --- a/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.h +++ b/Source/Engine/Tools/ModelTool/MeshAccelerationStructure.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp b/Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp index 7f3cfbba0..2aaeb9040 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp +++ b/Source/Engine/Tools/ModelTool/ModelTool.Assimp.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL && USE_ASSIMP diff --git a/Source/Engine/Tools/ModelTool/ModelTool.AutodeskFbxSdk.cpp b/Source/Engine/Tools/ModelTool/ModelTool.AutodeskFbxSdk.cpp index 7921ad0b6..f0e2e3c5f 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.AutodeskFbxSdk.cpp +++ b/Source/Engine/Tools/ModelTool/ModelTool.AutodeskFbxSdk.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL && USE_AUTODESK_FBX_SDK diff --git a/Source/Engine/Tools/ModelTool/ModelTool.Build.cs b/Source/Engine/Tools/ModelTool/ModelTool.Build.cs index 7a4eb59c3..dcf62805d 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.Build.cs +++ b/Source/Engine/Tools/ModelTool/ModelTool.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Tools/ModelTool/ModelTool.OpenFBX.cpp b/Source/Engine/Tools/ModelTool/ModelTool.OpenFBX.cpp index 493068892..688cf2bfd 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.OpenFBX.cpp +++ b/Source/Engine/Tools/ModelTool/ModelTool.OpenFBX.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL && USE_OPEN_FBX diff --git a/Source/Engine/Tools/ModelTool/ModelTool.Options.cpp b/Source/Engine/Tools/ModelTool/ModelTool.Options.cpp index 964df9d6e..3825709ca 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.Options.cpp +++ b/Source/Engine/Tools/ModelTool/ModelTool.Options.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL && USE_EDITOR diff --git a/Source/Engine/Tools/ModelTool/ModelTool.cpp b/Source/Engine/Tools/ModelTool/ModelTool.cpp index bdd87d510..afa1e9368 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.cpp +++ b/Source/Engine/Tools/ModelTool/ModelTool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL diff --git a/Source/Engine/Tools/ModelTool/ModelTool.h b/Source/Engine/Tools/ModelTool/ModelTool.h index 84c763a27..d527a8dba 100644 --- a/Source/Engine/Tools/ModelTool/ModelTool.h +++ b/Source/Engine/Tools/ModelTool/ModelTool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.cpp b/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.cpp index 4dd820853..325b48dd5 100644 --- a/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.cpp +++ b/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_MODEL_TOOL && USE_EDITOR diff --git a/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.h b/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.h index c37d767ba..ac69263b1 100644 --- a/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.h +++ b/Source/Engine/Tools/ModelTool/VertexTriangleAdjacency.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/TextureTool/TextureTool.Build.cs b/Source/Engine/Tools/TextureTool/TextureTool.Build.cs index 3b9e4595d..8bdd1c013 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.Build.cs +++ b/Source/Engine/Tools/TextureTool/TextureTool.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Engine/Tools/TextureTool/TextureTool.DirectXTex.cpp b/Source/Engine/Tools/TextureTool/TextureTool.DirectXTex.cpp index 4b5fb4897..e7ae30680 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.DirectXTex.cpp +++ b/Source/Engine/Tools/TextureTool/TextureTool.DirectXTex.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_TEXTURE_TOOL && COMPILE_WITH_DIRECTXTEX diff --git a/Source/Engine/Tools/TextureTool/TextureTool.cpp b/Source/Engine/Tools/TextureTool/TextureTool.cpp index a3624cd53..56aa9295f 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.cpp +++ b/Source/Engine/Tools/TextureTool/TextureTool.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_TEXTURE_TOOL diff --git a/Source/Engine/Tools/TextureTool/TextureTool.h b/Source/Engine/Tools/TextureTool/TextureTool.h index 2119fa9f1..164c156a3 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.h +++ b/Source/Engine/Tools/TextureTool/TextureTool.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Tools/TextureTool/TextureTool.stb.cpp b/Source/Engine/Tools/TextureTool/TextureTool.stb.cpp index 097ad9ee9..64de58572 100644 --- a/Source/Engine/Tools/TextureTool/TextureTool.stb.cpp +++ b/Source/Engine/Tools/TextureTool/TextureTool.stb.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if COMPILE_WITH_TEXTURE_TOOL && COMPILE_WITH_STB diff --git a/Source/Engine/UI/GUI/Brushes/GPUTextureBrush.cs b/Source/Engine/UI/GUI/Brushes/GPUTextureBrush.cs index 08d15d18d..9ad9db1d3 100644 --- a/Source/Engine/UI/GUI/Brushes/GPUTextureBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/GPUTextureBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/IBrush.cs b/Source/Engine/UI/GUI/Brushes/IBrush.cs index 961b3ba35..2f8135099 100644 --- a/Source/Engine/UI/GUI/Brushes/IBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/IBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/LinearGradientBrush.cs b/Source/Engine/UI/GUI/Brushes/LinearGradientBrush.cs index 06fd39412..72f50f5b9 100644 --- a/Source/Engine/UI/GUI/Brushes/LinearGradientBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/LinearGradientBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/MaterialBrush.cs b/Source/Engine/UI/GUI/Brushes/MaterialBrush.cs index f4baeedda..6a88df933 100644 --- a/Source/Engine/UI/GUI/Brushes/MaterialBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/MaterialBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/SolidColorBrush.cs b/Source/Engine/UI/GUI/Brushes/SolidColorBrush.cs index a6921a3ef..48c767a73 100644 --- a/Source/Engine/UI/GUI/Brushes/SolidColorBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/SolidColorBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/SpriteBrush.cs b/Source/Engine/UI/GUI/Brushes/SpriteBrush.cs index a24d7a73f..23a41f174 100644 --- a/Source/Engine/UI/GUI/Brushes/SpriteBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/SpriteBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Brushes/TextureBrush.cs b/Source/Engine/UI/GUI/Brushes/TextureBrush.cs index 96cae3f18..d49e5519b 100644 --- a/Source/Engine/UI/GUI/Brushes/TextureBrush.cs +++ b/Source/Engine/UI/GUI/Brushes/TextureBrush.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/CanvasContainer.cs b/Source/Engine/UI/GUI/CanvasContainer.cs index 88e844a1d..d85ed37a8 100644 --- a/Source/Engine/UI/GUI/CanvasContainer.cs +++ b/Source/Engine/UI/GUI/CanvasContainer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/CanvasRootControl.cs b/Source/Engine/UI/GUI/CanvasRootControl.cs index c4db8776b..a3d099eee 100644 --- a/Source/Engine/UI/GUI/CanvasRootControl.cs +++ b/Source/Engine/UI/GUI/CanvasRootControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Common/Border.cs b/Source/Engine/UI/GUI/Common/Border.cs index 061917fcc..6ed94dbaf 100644 --- a/Source/Engine/UI/GUI/Common/Border.cs +++ b/Source/Engine/UI/GUI/Common/Border.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Common/Button.cs b/Source/Engine/UI/GUI/Common/Button.cs index 30ff25aa1..e1f41a5ff 100644 --- a/Source/Engine/UI/GUI/Common/Button.cs +++ b/Source/Engine/UI/GUI/Common/Button.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Common/CheckBox.cs b/Source/Engine/UI/GUI/Common/CheckBox.cs index 043d94d13..ab689bfc3 100644 --- a/Source/Engine/UI/GUI/Common/CheckBox.cs +++ b/Source/Engine/UI/GUI/Common/CheckBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Common/Dropdown.cs b/Source/Engine/UI/GUI/Common/Dropdown.cs index 02ab43db1..80d4beb02 100644 --- a/Source/Engine/UI/GUI/Common/Dropdown.cs +++ b/Source/Engine/UI/GUI/Common/Dropdown.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/Common/Image.cs b/Source/Engine/UI/GUI/Common/Image.cs index 169d97062..98113b00c 100644 --- a/Source/Engine/UI/GUI/Common/Image.cs +++ b/Source/Engine/UI/GUI/Common/Image.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Common/Label.cs b/Source/Engine/UI/GUI/Common/Label.cs index 3373eef7c..b64764a40 100644 --- a/Source/Engine/UI/GUI/Common/Label.cs +++ b/Source/Engine/UI/GUI/Common/Label.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.ComponentModel; diff --git a/Source/Engine/UI/GUI/Common/ProgressBar.cs b/Source/Engine/UI/GUI/Common/ProgressBar.cs index 45cb7e768..fa76d9d26 100644 --- a/Source/Engine/UI/GUI/Common/ProgressBar.cs +++ b/Source/Engine/UI/GUI/Common/ProgressBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Common/RenderToTextureControl.cs b/Source/Engine/UI/GUI/Common/RenderToTextureControl.cs index 893be0ce4..4eba42970 100644 --- a/Source/Engine/UI/GUI/Common/RenderToTextureControl.cs +++ b/Source/Engine/UI/GUI/Common/RenderToTextureControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Common/RichTextBox.Parsing.cs b/Source/Engine/UI/GUI/Common/RichTextBox.Parsing.cs index c65b7caf0..2abadb40e 100644 --- a/Source/Engine/UI/GUI/Common/RichTextBox.Parsing.cs +++ b/Source/Engine/UI/GUI/Common/RichTextBox.Parsing.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine.Utilities; diff --git a/Source/Engine/UI/GUI/Common/RichTextBox.Tags.cs b/Source/Engine/UI/GUI/Common/RichTextBox.Tags.cs index 6d3bbb8f3..044c65044 100644 --- a/Source/Engine/UI/GUI/Common/RichTextBox.Tags.cs +++ b/Source/Engine/UI/GUI/Common/RichTextBox.Tags.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.Utilities; diff --git a/Source/Engine/UI/GUI/Common/RichTextBox.cs b/Source/Engine/UI/GUI/Common/RichTextBox.cs index 54522399e..ab922d93d 100644 --- a/Source/Engine/UI/GUI/Common/RichTextBox.cs +++ b/Source/Engine/UI/GUI/Common/RichTextBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/Common/RichTextBoxBase.cs b/Source/Engine/UI/GUI/Common/RichTextBoxBase.cs index 4f9e20d5d..5070bf657 100644 --- a/Source/Engine/UI/GUI/Common/RichTextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/RichTextBoxBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/Common/Spacer.cs b/Source/Engine/UI/GUI/Common/Spacer.cs index 4efeb5623..f558dd1e2 100644 --- a/Source/Engine/UI/GUI/Common/Spacer.cs +++ b/Source/Engine/UI/GUI/Common/Spacer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Common/TextBox.cs b/Source/Engine/UI/GUI/Common/TextBox.cs index e11e7c787..00c381e01 100644 --- a/Source/Engine/UI/GUI/Common/TextBox.cs +++ b/Source/Engine/UI/GUI/Common/TextBox.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Common/TextBoxBase.cs b/Source/Engine/UI/GUI/Common/TextBoxBase.cs index 2999fe957..24657b62f 100644 --- a/Source/Engine/UI/GUI/Common/TextBoxBase.cs +++ b/Source/Engine/UI/GUI/Common/TextBoxBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.Assertions; diff --git a/Source/Engine/UI/GUI/ContainerControl.cs b/Source/Engine/UI/GUI/ContainerControl.cs index a01ebea20..9e226edb5 100644 --- a/Source/Engine/UI/GUI/ContainerControl.cs +++ b/Source/Engine/UI/GUI/ContainerControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/Control.Bounds.cs b/Source/Engine/UI/GUI/Control.Bounds.cs index 2c85e223b..9d0dafeb7 100644 --- a/Source/Engine/UI/GUI/Control.Bounds.cs +++ b/Source/Engine/UI/GUI/Control.Bounds.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Control.cs b/Source/Engine/UI/GUI/Control.cs index 890908c0e..027dd0267 100644 --- a/Source/Engine/UI/GUI/Control.cs +++ b/Source/Engine/UI/GUI/Control.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/DragData.cs b/Source/Engine/UI/GUI/DragData.cs index 5c7aae499..6a076d81e 100644 --- a/Source/Engine/UI/GUI/DragData.cs +++ b/Source/Engine/UI/GUI/DragData.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/DragDataFiles.cs b/Source/Engine/UI/GUI/DragDataFiles.cs index 421bd96fc..eb0dfae6d 100644 --- a/Source/Engine/UI/GUI/DragDataFiles.cs +++ b/Source/Engine/UI/GUI/DragDataFiles.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/DragDataText.cs b/Source/Engine/UI/GUI/DragDataText.cs index f74151500..6dcdb2dc2 100644 --- a/Source/Engine/UI/GUI/DragDataText.cs +++ b/Source/Engine/UI/GUI/DragDataText.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Enums.cs b/Source/Engine/UI/GUI/Enums.cs index 63570283a..d0b4fb61c 100644 --- a/Source/Engine/UI/GUI/Enums.cs +++ b/Source/Engine/UI/GUI/Enums.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Margin.cs b/Source/Engine/UI/GUI/Margin.cs index 4875238f8..4b1d5c6d1 100644 --- a/Source/Engine/UI/GUI/Margin.cs +++ b/Source/Engine/UI/GUI/Margin.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/UI/GUI/Panels/AlphaPanel.cs b/Source/Engine/UI/GUI/Panels/AlphaPanel.cs index 6ae17c5ff..b3159af4b 100644 --- a/Source/Engine/UI/GUI/Panels/AlphaPanel.cs +++ b/Source/Engine/UI/GUI/Panels/AlphaPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/BlurPanel.cs b/Source/Engine/UI/GUI/Panels/BlurPanel.cs index 9a4d0d254..8d4525113 100644 --- a/Source/Engine/UI/GUI/Panels/BlurPanel.cs +++ b/Source/Engine/UI/GUI/Panels/BlurPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/DropPanel.cs b/Source/Engine/UI/GUI/Panels/DropPanel.cs index e2771c71b..482460d04 100644 --- a/Source/Engine/UI/GUI/Panels/DropPanel.cs +++ b/Source/Engine/UI/GUI/Panels/DropPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Panels/GridPanel.cs b/Source/Engine/UI/GUI/Panels/GridPanel.cs index c75fbc25d..0dd030274 100644 --- a/Source/Engine/UI/GUI/Panels/GridPanel.cs +++ b/Source/Engine/UI/GUI/Panels/GridPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Panels/HScrollBar.cs b/Source/Engine/UI/GUI/Panels/HScrollBar.cs index e416b9a6e..514ab5703 100644 --- a/Source/Engine/UI/GUI/Panels/HScrollBar.cs +++ b/Source/Engine/UI/GUI/Panels/HScrollBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/HorizontalPanel.cs b/Source/Engine/UI/GUI/Panels/HorizontalPanel.cs index 67bc2a3a2..1df180357 100644 --- a/Source/Engine/UI/GUI/Panels/HorizontalPanel.cs +++ b/Source/Engine/UI/GUI/Panels/HorizontalPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/Panel.cs b/Source/Engine/UI/GUI/Panels/Panel.cs index 7903a548a..bae165fba 100644 --- a/Source/Engine/UI/GUI/Panels/Panel.cs +++ b/Source/Engine/UI/GUI/Panels/Panel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Panels/PanelWithMargins.cs b/Source/Engine/UI/GUI/Panels/PanelWithMargins.cs index 92e55dc27..68265a05a 100644 --- a/Source/Engine/UI/GUI/Panels/PanelWithMargins.cs +++ b/Source/Engine/UI/GUI/Panels/PanelWithMargins.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/ScrollBar.cs b/Source/Engine/UI/GUI/Panels/ScrollBar.cs index 8d8551544..f28d7d4cb 100644 --- a/Source/Engine/UI/GUI/Panels/ScrollBar.cs +++ b/Source/Engine/UI/GUI/Panels/ScrollBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Panels/SplitPanel.cs b/Source/Engine/UI/GUI/Panels/SplitPanel.cs index 2a46846e8..e8149c4b1 100644 --- a/Source/Engine/UI/GUI/Panels/SplitPanel.cs +++ b/Source/Engine/UI/GUI/Panels/SplitPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/TilesPanel.cs b/Source/Engine/UI/GUI/Panels/TilesPanel.cs index ebab4c9cd..bc06920b9 100644 --- a/Source/Engine/UI/GUI/Panels/TilesPanel.cs +++ b/Source/Engine/UI/GUI/Panels/TilesPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/Panels/UniformGridPanel.cs b/Source/Engine/UI/GUI/Panels/UniformGridPanel.cs index 2bcb0af50..1303d1561 100644 --- a/Source/Engine/UI/GUI/Panels/UniformGridPanel.cs +++ b/Source/Engine/UI/GUI/Panels/UniformGridPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/VScrollBar.cs b/Source/Engine/UI/GUI/Panels/VScrollBar.cs index 48811f5aa..b10865b83 100644 --- a/Source/Engine/UI/GUI/Panels/VScrollBar.cs +++ b/Source/Engine/UI/GUI/Panels/VScrollBar.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Panels/VerticalPanel.cs b/Source/Engine/UI/GUI/Panels/VerticalPanel.cs index 9c2b55686..069d015e0 100644 --- a/Source/Engine/UI/GUI/Panels/VerticalPanel.cs +++ b/Source/Engine/UI/GUI/Panels/VerticalPanel.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/RenderOutputControl.cs b/Source/Engine/UI/GUI/RenderOutputControl.cs index 499f449aa..541c3215b 100644 --- a/Source/Engine/UI/GUI/RenderOutputControl.cs +++ b/Source/Engine/UI/GUI/RenderOutputControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/RootControl.cs b/Source/Engine/UI/GUI/RootControl.cs index 42c160d57..e2605dce8 100644 --- a/Source/Engine/UI/GUI/RootControl.cs +++ b/Source/Engine/UI/GUI/RootControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/UI/GUI/ScrollableControl.cs b/Source/Engine/UI/GUI/ScrollableControl.cs index 391a4cb7b..736169a73 100644 --- a/Source/Engine/UI/GUI/ScrollableControl.cs +++ b/Source/Engine/UI/GUI/ScrollableControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Style.cs b/Source/Engine/UI/GUI/Style.cs index 9881b9221..fac65e22f 100644 --- a/Source/Engine/UI/GUI/Style.cs +++ b/Source/Engine/UI/GUI/Style.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/TextBlock.cs b/Source/Engine/UI/GUI/TextBlock.cs index d79df59aa..9c2854dec 100644 --- a/Source/Engine/UI/GUI/TextBlock.cs +++ b/Source/Engine/UI/GUI/TextBlock.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/TextBlockStyle.cs b/Source/Engine/UI/GUI/TextBlockStyle.cs index f6893b596..c4c87715f 100644 --- a/Source/Engine/UI/GUI/TextBlockStyle.cs +++ b/Source/Engine/UI/GUI/TextBlockStyle.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.GUI { diff --git a/Source/Engine/UI/GUI/Tooltip.cs b/Source/Engine/UI/GUI/Tooltip.cs index 9910e5286..9180d6d58 100644 --- a/Source/Engine/UI/GUI/Tooltip.cs +++ b/Source/Engine/UI/GUI/Tooltip.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/UI/GUI/WindowRootControl.cs b/Source/Engine/UI/GUI/WindowRootControl.cs index 60eff1087..f7e2fa67c 100644 --- a/Source/Engine/UI/GUI/WindowRootControl.cs +++ b/Source/Engine/UI/GUI/WindowRootControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.Assertions; diff --git a/Source/Engine/UI/SpriteRender.cpp b/Source/Engine/UI/SpriteRender.cpp index e5a70cc89..0ff23d52b 100644 --- a/Source/Engine/UI/SpriteRender.cpp +++ b/Source/Engine/UI/SpriteRender.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "SpriteRender.h" #include "Engine/Core/Types/Variant.h" diff --git a/Source/Engine/UI/SpriteRender.h b/Source/Engine/UI/SpriteRender.h index c5efc018a..2405c5c67 100644 --- a/Source/Engine/UI/SpriteRender.h +++ b/Source/Engine/UI/SpriteRender.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/UI/TextRender.cpp b/Source/Engine/UI/TextRender.cpp index 02ccb3f07..a32328742 100644 --- a/Source/Engine/UI/TextRender.cpp +++ b/Source/Engine/UI/TextRender.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TextRender.h" #include "Engine/Core/Math/OrientedBoundingBox.h" diff --git a/Source/Engine/UI/TextRender.h b/Source/Engine/UI/TextRender.h index da3c73ae0..6764b0e61 100644 --- a/Source/Engine/UI/TextRender.h +++ b/Source/Engine/UI/TextRender.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/UI/UI.Build.cs b/Source/Engine/UI/UI.Build.cs index e5c992549..0d63f1ad2 100644 --- a/Source/Engine/UI/UI.Build.cs +++ b/Source/Engine/UI/UI.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/UI/UICanvas.cpp b/Source/Engine/UI/UICanvas.cpp index c8ce9e49e..c5384ee5e 100644 --- a/Source/Engine/UI/UICanvas.cpp +++ b/Source/Engine/UI/UICanvas.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "UICanvas.h" #include "Engine/Scripting/MException.h" diff --git a/Source/Engine/UI/UICanvas.cs b/Source/Engine/UI/UICanvas.cs index d305d2bb0..a68691a5d 100644 --- a/Source/Engine/UI/UICanvas.cs +++ b/Source/Engine/UI/UICanvas.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/UI/UICanvas.h b/Source/Engine/UI/UICanvas.h index 9a8b76794..c958d57f6 100644 --- a/Source/Engine/UI/UICanvas.h +++ b/Source/Engine/UI/UICanvas.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/UI/UIControl.cpp b/Source/Engine/UI/UIControl.cpp index a8f3cd4c4..75d25aed7 100644 --- a/Source/Engine/UI/UIControl.cpp +++ b/Source/Engine/UI/UIControl.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "UIControl.h" #include "Engine/Scripting/MException.h" diff --git a/Source/Engine/UI/UIControl.cs b/Source/Engine/UI/UIControl.cs index bd1d2e795..dc76122c0 100644 --- a/Source/Engine/UI/UIControl.cs +++ b/Source/Engine/UI/UIControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Globalization; diff --git a/Source/Engine/UI/UIControl.h b/Source/Engine/UI/UIControl.h index 490abcbb1..f6693ffe3 100644 --- a/Source/Engine/UI/UIControl.h +++ b/Source/Engine/UI/UIControl.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Crc.cpp b/Source/Engine/Utilities/Crc.cpp index 20e1cd763..eb0d3d602 100644 --- a/Source/Engine/Utilities/Crc.cpp +++ b/Source/Engine/Utilities/Crc.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Crc.h" #include "Engine/Core/Math/Math.h" diff --git a/Source/Engine/Utilities/Crc.h b/Source/Engine/Utilities/Crc.h index ce32ce56b..b0b2b26fd 100644 --- a/Source/Engine/Utilities/Crc.h +++ b/Source/Engine/Utilities/Crc.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Delaunay2D.h b/Source/Engine/Utilities/Delaunay2D.h index e0b564e09..5ccd4e85b 100644 --- a/Source/Engine/Utilities/Delaunay2D.h +++ b/Source/Engine/Utilities/Delaunay2D.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Encryption.cpp b/Source/Engine/Utilities/Encryption.cpp index 68033b453..60b6e18f4 100644 --- a/Source/Engine/Utilities/Encryption.cpp +++ b/Source/Engine/Utilities/Encryption.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Encryption.h" #include "Engine/Platform/StringUtils.h" diff --git a/Source/Engine/Utilities/Encryption.h b/Source/Engine/Utilities/Encryption.h index dc7d3d06e..7d0ad70b9 100644 --- a/Source/Engine/Utilities/Encryption.h +++ b/Source/Engine/Utilities/Encryption.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Extensions.cs b/Source/Engine/Utilities/Extensions.cs index be5d56bb3..f8376699a 100644 --- a/Source/Engine/Utilities/Extensions.cs +++ b/Source/Engine/Utilities/Extensions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_LARGE_WORLDS using Real = System.Double; diff --git a/Source/Engine/Utilities/HtmlParser.cs b/Source/Engine/Utilities/HtmlParser.cs index b4ab1e24b..c31a95eab 100644 --- a/Source/Engine/Utilities/HtmlParser.cs +++ b/Source/Engine/Utilities/HtmlParser.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Parsing HTML Tags in C# by Jonathan Wood (4 Jul 2012) // https://www.codeproject.com/Articles/57176/Parsing-HTML-Tags-in-C diff --git a/Source/Engine/Utilities/MeshDataCache.cs b/Source/Engine/Utilities/MeshDataCache.cs index e7a0d8436..daae03816 100644 --- a/Source/Engine/Utilities/MeshDataCache.cs +++ b/Source/Engine/Utilities/MeshDataCache.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Threading; diff --git a/Source/Engine/Utilities/Nameof.h b/Source/Engine/Utilities/Nameof.h index 651414a0c..e520d2dd2 100644 --- a/Source/Engine/Utilities/Nameof.h +++ b/Source/Engine/Utilities/Nameof.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Noise.cpp b/Source/Engine/Utilities/Noise.cpp index 5610b8df4..3787eb596 100644 --- a/Source/Engine/Utilities/Noise.cpp +++ b/Source/Engine/Utilities/Noise.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2011 Stefan Gustavson. All rights reserved. // Distributed under the MIT license. diff --git a/Source/Engine/Utilities/Noise.h b/Source/Engine/Utilities/Noise.h index 96ddcb2a3..b95cf603b 100644 --- a/Source/Engine/Utilities/Noise.h +++ b/Source/Engine/Utilities/Noise.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/PerlinNoise.cs b/Source/Engine/Utilities/PerlinNoise.cs index bf28e9823..d0a94c5d4 100644 --- a/Source/Engine/Utilities/PerlinNoise.cs +++ b/Source/Engine/Utilities/PerlinNoise.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Engine/Utilities/RectPack.h b/Source/Engine/Utilities/RectPack.h index b7528834c..ce41b5a39 100644 --- a/Source/Engine/Utilities/RectPack.h +++ b/Source/Engine/Utilities/RectPack.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Screenshot.cpp b/Source/Engine/Utilities/Screenshot.cpp index e7e9c12ad..32172eb19 100644 --- a/Source/Engine/Utilities/Screenshot.cpp +++ b/Source/Engine/Utilities/Screenshot.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "Screenshot.h" #include "Engine/Core/Math/Math.h" diff --git a/Source/Engine/Utilities/Screenshot.h b/Source/Engine/Utilities/Screenshot.h index 914d1820e..c51c34199 100644 --- a/Source/Engine/Utilities/Screenshot.h +++ b/Source/Engine/Utilities/Screenshot.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/State.cs b/Source/Engine/Utilities/State.cs index d07f815c0..d75fc1dbc 100644 --- a/Source/Engine/Utilities/State.cs +++ b/Source/Engine/Utilities/State.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace FlaxEngine.Utilities { diff --git a/Source/Engine/Utilities/StateMachine.cpp b/Source/Engine/Utilities/StateMachine.cpp index 3b0990ac3..da703b106 100644 --- a/Source/Engine/Utilities/StateMachine.cpp +++ b/Source/Engine/Utilities/StateMachine.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "StateMachine.h" diff --git a/Source/Engine/Utilities/StateMachine.cs b/Source/Engine/Utilities/StateMachine.cs index 4640a5466..fa2fc453b 100644 --- a/Source/Engine/Utilities/StateMachine.cs +++ b/Source/Engine/Utilities/StateMachine.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Utilities/StateMachine.h b/Source/Engine/Utilities/StateMachine.h index 280ab4b93..994f0702b 100644 --- a/Source/Engine/Utilities/StateMachine.h +++ b/Source/Engine/Utilities/StateMachine.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/StringConverter.h b/Source/Engine/Utilities/StringConverter.h index 180b64e55..340278c00 100644 --- a/Source/Engine/Utilities/StringConverter.h +++ b/Source/Engine/Utilities/StringConverter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/StringUtils.cs b/Source/Engine/Utilities/StringUtils.cs index 31e8f34cf..5409acf9f 100644 --- a/Source/Engine/Utilities/StringUtils.cs +++ b/Source/Engine/Utilities/StringUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Utilities/TextProcessing.cpp b/Source/Engine/Utilities/TextProcessing.cpp index bb2037d22..3706739ab 100644 --- a/Source/Engine/Utilities/TextProcessing.cpp +++ b/Source/Engine/Utilities/TextProcessing.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "TextProcessing.h" diff --git a/Source/Engine/Utilities/TextProcessing.h b/Source/Engine/Utilities/TextProcessing.h index cdd65d7fa..267465607 100644 --- a/Source/Engine/Utilities/TextProcessing.h +++ b/Source/Engine/Utilities/TextProcessing.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/TextWriter.h b/Source/Engine/Utilities/TextWriter.h index c213d6ba2..2825e7c6d 100644 --- a/Source/Engine/Utilities/TextWriter.h +++ b/Source/Engine/Utilities/TextWriter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Utilities/Utilities.Build.cs b/Source/Engine/Utilities/Utilities.Build.cs index b7f2cdc97..53a1028bc 100644 --- a/Source/Engine/Utilities/Utilities.Build.cs +++ b/Source/Engine/Utilities/Utilities.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/Engine/Utilities/Utils.cs b/Source/Engine/Utilities/Utils.cs index b5213e2c3..9d1ba1bf7 100644 --- a/Source/Engine/Utilities/Utils.cs +++ b/Source/Engine/Utilities/Utils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Engine/Visject/Graph.h b/Source/Engine/Visject/Graph.h index cf342f158..1f2c95480 100644 --- a/Source/Engine/Visject/Graph.h +++ b/Source/Engine/Visject/Graph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/GraphNode.h b/Source/Engine/Visject/GraphNode.h index ec6f48d5c..9ee44e364 100644 --- a/Source/Engine/Visject/GraphNode.h +++ b/Source/Engine/Visject/GraphNode.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/GraphParameter.cpp b/Source/Engine/Visject/GraphParameter.cpp index cfb04a622..ea4ad86e0 100644 --- a/Source/Engine/Visject/GraphParameter.cpp +++ b/Source/Engine/Visject/GraphParameter.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GraphParameter.h" #include "Engine/Core/Types/DataContainer.h" diff --git a/Source/Engine/Visject/GraphParameter.h b/Source/Engine/Visject/GraphParameter.h index 93eba061a..d1c26e807 100644 --- a/Source/Engine/Visject/GraphParameter.h +++ b/Source/Engine/Visject/GraphParameter.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/GraphUtilities.cpp b/Source/Engine/Visject/GraphUtilities.cpp index 035982fa9..098b2bc98 100644 --- a/Source/Engine/Visject/GraphUtilities.cpp +++ b/Source/Engine/Visject/GraphUtilities.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "GraphUtilities.h" diff --git a/Source/Engine/Visject/GraphUtilities.h b/Source/Engine/Visject/GraphUtilities.h index 891fd5d45..d8f31e203 100644 --- a/Source/Engine/Visject/GraphUtilities.h +++ b/Source/Engine/Visject/GraphUtilities.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/ShaderGraph.cpp b/Source/Engine/Visject/ShaderGraph.cpp index a17964d67..41c09687f 100644 --- a/Source/Engine/Visject/ShaderGraph.cpp +++ b/Source/Engine/Visject/ShaderGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Visject/ShaderGraph.h b/Source/Engine/Visject/ShaderGraph.h index 9708fdead..abf6e1d89 100644 --- a/Source/Engine/Visject/ShaderGraph.h +++ b/Source/Engine/Visject/ShaderGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/ShaderGraphUtilities.cpp b/Source/Engine/Visject/ShaderGraphUtilities.cpp index 0cf15010c..df2b751f4 100644 --- a/Source/Engine/Visject/ShaderGraphUtilities.cpp +++ b/Source/Engine/Visject/ShaderGraphUtilities.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #if USE_EDITOR diff --git a/Source/Engine/Visject/ShaderGraphUtilities.h b/Source/Engine/Visject/ShaderGraphUtilities.h index fc4c50c21..5487be807 100644 --- a/Source/Engine/Visject/ShaderGraphUtilities.h +++ b/Source/Engine/Visject/ShaderGraphUtilities.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/ShaderGraphValue.cpp b/Source/Engine/Visject/ShaderGraphValue.cpp index 44389b058..5a792a4a1 100644 --- a/Source/Engine/Visject/ShaderGraphValue.cpp +++ b/Source/Engine/Visject/ShaderGraphValue.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "ShaderGraphValue.h" #include "Engine/Core/Log.h" diff --git a/Source/Engine/Visject/ShaderGraphValue.h b/Source/Engine/Visject/ShaderGraphValue.h index e0fdb9d95..7c7e25154 100644 --- a/Source/Engine/Visject/ShaderGraphValue.h +++ b/Source/Engine/Visject/ShaderGraphValue.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/Visject.Build.cs b/Source/Engine/Visject/Visject.Build.cs index cad368a44..4aa978f79 100644 --- a/Source/Engine/Visject/Visject.Build.cs +++ b/Source/Engine/Visject/Visject.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Engine/Visject/VisjectGraph.cpp b/Source/Engine/Visject/VisjectGraph.cpp index 4f4ca0c41..4e067e61c 100644 --- a/Source/Engine/Visject/VisjectGraph.cpp +++ b/Source/Engine/Visject/VisjectGraph.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VisjectGraph.h" #include "GraphUtilities.h" diff --git a/Source/Engine/Visject/VisjectGraph.h b/Source/Engine/Visject/VisjectGraph.h index cd560d47f..238823afd 100644 --- a/Source/Engine/Visject/VisjectGraph.h +++ b/Source/Engine/Visject/VisjectGraph.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/Engine/Visject/VisjectMeta.cpp b/Source/Engine/Visject/VisjectMeta.cpp index 801d05714..d2b325ee4 100644 --- a/Source/Engine/Visject/VisjectMeta.cpp +++ b/Source/Engine/Visject/VisjectMeta.cpp @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "VisjectMeta.h" #include "Engine/Core/Types/DateTime.h" diff --git a/Source/Engine/Visject/VisjectMeta.h b/Source/Engine/Visject/VisjectMeta.h index 08a40b299..c417b7030 100644 --- a/Source/Engine/Visject/VisjectMeta.h +++ b/Source/Engine/Visject/VisjectMeta.h @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #pragma once diff --git a/Source/FlaxEditor.Build.cs b/Source/FlaxEditor.Build.cs index 29032bce7..ed2b0e960 100644 --- a/Source/FlaxEditor.Build.cs +++ b/Source/FlaxEditor.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/FlaxEngine.Gen.cs b/Source/FlaxEngine.Gen.cs index d1695ed23..054cbf394 100644 --- a/Source/FlaxEngine.Gen.cs +++ b/Source/FlaxEngine.Gen.cs @@ -8,10 +8,10 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Flax")] [assembly: AssemblyProduct("FlaxEngine")] -[assembly: AssemblyCopyright("Copyright (c) 2012-2022 Wojciech Figat. All rights reserved.")] +[assembly: AssemblyCopyright("Copyright (c) 2012-2023 Wojciech Figat. All rights reserved.")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] -[assembly: Guid("b8442186-4a70-7c85-704a-857cc7990797")] +[assembly: Guid("b8442186-4a70-7c85-704a-857c68060f38")] [assembly: AssemblyVersion("1.4.6334")] [assembly: AssemblyFileVersion("1.4.6334")] diff --git a/Source/FlaxEngine.Gen.h b/Source/FlaxEngine.Gen.h index c0f57118d..35e9fc031 100644 --- a/Source/FlaxEngine.Gen.h +++ b/Source/FlaxEngine.Gen.h @@ -9,7 +9,7 @@ #define FLAXENGINE_VERSION_MINOR 4 #define FLAXENGINE_VERSION_BUILD 6334 #define FLAXENGINE_COMPANY "Flax" -#define FLAXENGINE_COPYRIGHT "Copyright (c) 2012-2022 Wojciech Figat. All rights reserved." +#define FLAXENGINE_COPYRIGHT "Copyright (c) 2012-2023 Wojciech Figat. All rights reserved." class BinaryModule; extern "C" FLAXENGINE_API BinaryModule* GetBinaryModuleFlaxEngine(); diff --git a/Source/FlaxGame.Build.cs b/Source/FlaxGame.Build.cs index 7aeb0e854..8f2bc2b3d 100644 --- a/Source/FlaxGame.Build.cs +++ b/Source/FlaxGame.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/FlaxTests.Build.cs b/Source/FlaxTests.Build.cs index 1c02439f7..e2a830f3f 100644 --- a/Source/FlaxTests.Build.cs +++ b/Source/FlaxTests.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Shaders/ACES.hlsl b/Source/Shaders/ACES.hlsl index c516238cd..2348553e9 100644 --- a/Source/Shaders/ACES.hlsl +++ b/Source/Shaders/ACES.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __ACES__ #define __ACES__ diff --git a/Source/Shaders/Atmosphere.hlsl b/Source/Shaders/Atmosphere.hlsl index 751a2b480..93fbf8d9c 100644 --- a/Source/Shaders/Atmosphere.hlsl +++ b/Source/Shaders/Atmosphere.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __ATMOSPHERE__ #define __ATMOSPHERE__ diff --git a/Source/Shaders/AtmosphereFog.hlsl b/Source/Shaders/AtmosphereFog.hlsl index ae60a25ef..d7524c9fa 100644 --- a/Source/Shaders/AtmosphereFog.hlsl +++ b/Source/Shaders/AtmosphereFog.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __ATMOSPHERE_FOG__ #define __ATMOSPHERE_FOG__ diff --git a/Source/Shaders/AtmospherePreCompute.shader b/Source/Shaders/AtmospherePreCompute.shader index 3a660e2fd..b9a65c09c 100644 --- a/Source/Shaders/AtmospherePreCompute.shader +++ b/Source/Shaders/AtmospherePreCompute.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/Atmosphere.hlsl" diff --git a/Source/Shaders/BRDF.hlsl b/Source/Shaders/BRDF.hlsl index 739682e3e..f7f97c124 100644 --- a/Source/Shaders/BRDF.hlsl +++ b/Source/Shaders/BRDF.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __BRDF__ #define __BRDF__ diff --git a/Source/Shaders/BakeLightmap.shader b/Source/Shaders/BakeLightmap.shader index ac3eeca8f..52dd37f7b 100644 --- a/Source/Shaders/BakeLightmap.shader +++ b/Source/Shaders/BakeLightmap.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define USE_VERTEX_COLOR 0 diff --git a/Source/Shaders/BitonicSort.shader b/Source/Shaders/BitonicSort.shader index c42cf63f1..437cb7bab 100644 --- a/Source/Shaders/BitonicSort.shader +++ b/Source/Shaders/BitonicSort.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/Math.hlsl" diff --git a/Source/Shaders/Collisions.hlsl b/Source/Shaders/Collisions.hlsl index 6794bc6fe..ca5f21a03 100644 --- a/Source/Shaders/Collisions.hlsl +++ b/Source/Shaders/Collisions.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __COLLISIONS__ #define __COLLISIONS__ diff --git a/Source/Shaders/ColorGrading.shader b/Source/Shaders/ColorGrading.shader index bf9e4c9e8..ae639fc4d 100644 --- a/Source/Shaders/ColorGrading.shader +++ b/Source/Shaders/ColorGrading.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/GammaCorrectionCommon.hlsl" diff --git a/Source/Shaders/Common.hlsl b/Source/Shaders/Common.hlsl index 1bc9e718c..13d2ad28f 100644 --- a/Source/Shaders/Common.hlsl +++ b/Source/Shaders/Common.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __COMMON__ #define __COMMON__ diff --git a/Source/Shaders/DebugDraw.shader b/Source/Shaders/DebugDraw.shader index 698871252..34d1b9108 100644 --- a/Source/Shaders/DebugDraw.shader +++ b/Source/Shaders/DebugDraw.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/DepthOfField.shader b/Source/Shaders/DepthOfField.shader index 078b188b5..b8d8f301f 100644 --- a/Source/Shaders/DepthOfField.shader +++ b/Source/Shaders/DepthOfField.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Implementation based on: // Bokeh Sample by MJP diff --git a/Source/Shaders/Editor/LightmapUVsDensity.shader b/Source/Shaders/Editor/LightmapUVsDensity.shader index ec227b027..f9c5e61b0 100644 --- a/Source/Shaders/Editor/LightmapUVsDensity.shader +++ b/Source/Shaders/Editor/LightmapUVsDensity.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define MATERIAL 1 diff --git a/Source/Shaders/Editor/MaterialComplexity.shader b/Source/Shaders/Editor/MaterialComplexity.shader index 339a0562a..3171c78ab 100644 --- a/Source/Shaders/Editor/MaterialComplexity.shader +++ b/Source/Shaders/Editor/MaterialComplexity.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/Editor/QuadOverdraw.shader b/Source/Shaders/Editor/QuadOverdraw.shader index c5e6db4bc..058831476 100644 --- a/Source/Shaders/Editor/QuadOverdraw.shader +++ b/Source/Shaders/Editor/QuadOverdraw.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/Editor/VertexColors.shader b/Source/Shaders/Editor/VertexColors.shader index bca926ce9..07bc7498f 100644 --- a/Source/Shaders/Editor/VertexColors.shader +++ b/Source/Shaders/Editor/VertexColors.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define MATERIAL 1 #define USE_VERTEX_COLOR 1 diff --git a/Source/Shaders/ExponentialHeightFog.hlsl b/Source/Shaders/ExponentialHeightFog.hlsl index d94ef5e0c..3e968de47 100644 --- a/Source/Shaders/ExponentialHeightFog.hlsl +++ b/Source/Shaders/ExponentialHeightFog.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __EXPONENTIAL_HEIGHT_FOG__ #define __EXPONENTIAL_HEIGHT_FOG__ diff --git a/Source/Shaders/EyeAdaptation.shader b/Source/Shaders/EyeAdaptation.shader index 7f8e9a58b..08b5ae202 100644 --- a/Source/Shaders/EyeAdaptation.shader +++ b/Source/Shaders/EyeAdaptation.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/FXAA.shader b/Source/Shaders/FXAA.shader index 3500e46c0..7b40d00e5 100644 --- a/Source/Shaders/FXAA.shader +++ b/Source/Shaders/FXAA.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // This software contains source code provided by NVIDIA Corporation. // Copyright (c) 2011 NVIDIA Corporation. All rights reserved. diff --git a/Source/Shaders/Fog.shader b/Source/Shaders/Fog.shader index 474544481..4b77ab817 100644 --- a/Source/Shaders/Fog.shader +++ b/Source/Shaders/Fog.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define NO_GBUFFER_SAMPLING diff --git a/Source/Shaders/Forward.shader b/Source/Shaders/Forward.shader index cd28252a5..98c223293 100644 --- a/Source/Shaders/Forward.shader +++ b/Source/Shaders/Forward.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/GBuffer.hlsl b/Source/Shaders/GBuffer.hlsl index 9288ab8a6..0d8ae489a 100644 --- a/Source/Shaders/GBuffer.hlsl +++ b/Source/Shaders/GBuffer.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __GBUFFER__ #define __GBUFFER__ diff --git a/Source/Shaders/GBuffer.shader b/Source/Shaders/GBuffer.shader index ec1523719..3cce842dd 100644 --- a/Source/Shaders/GBuffer.shader +++ b/Source/Shaders/GBuffer.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define USE_GBUFFER_CUSTOM_DATA diff --git a/Source/Shaders/GBufferCommon.hlsl b/Source/Shaders/GBufferCommon.hlsl index ebeeaefde..30fcd7400 100644 --- a/Source/Shaders/GBufferCommon.hlsl +++ b/Source/Shaders/GBufferCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __GBUFFER_COMMON__ #define __GBUFFER_COMMON__ diff --git a/Source/Shaders/GI/DDGI.hlsl b/Source/Shaders/GI/DDGI.hlsl index 8ae91b3a6..7faf289a8 100644 --- a/Source/Shaders/GI/DDGI.hlsl +++ b/Source/Shaders/GI/DDGI.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Implementation based on: // "Dynamic Diffuse Global Illumination with Ray-Traced Irradiance Probes", Journal of Computer Graphics Tools, April 2019 diff --git a/Source/Shaders/GI/DDGI.shader b/Source/Shaders/GI/DDGI.shader index 4ecd185ec..b71c71406 100644 --- a/Source/Shaders/GI/DDGI.shader +++ b/Source/Shaders/GI/DDGI.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Implementation based on: // "Dynamic Diffuse Global Illumination with Ray-Traced Irradiance Probes", Journal of Computer Graphics Tools, April 2019 diff --git a/Source/Shaders/GI/GlobalSurfaceAtlas.hlsl b/Source/Shaders/GI/GlobalSurfaceAtlas.hlsl index 93633dbec..7c1cdc489 100644 --- a/Source/Shaders/GI/GlobalSurfaceAtlas.hlsl +++ b/Source/Shaders/GI/GlobalSurfaceAtlas.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/Collisions.hlsl" diff --git a/Source/Shaders/GI/GlobalSurfaceAtlas.shader b/Source/Shaders/GI/GlobalSurfaceAtlas.shader index 70b5ee9dc..b2d708dd1 100644 --- a/Source/Shaders/GI/GlobalSurfaceAtlas.shader +++ b/Source/Shaders/GI/GlobalSurfaceAtlas.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Diffuse-only lighting #define LIGHTING_NO_SPECULAR 1 diff --git a/Source/Shaders/GPUParticlesSorting.shader b/Source/Shaders/GPUParticlesSorting.shader index 847c01f51..cc483ea9e 100644 --- a/Source/Shaders/GPUParticlesSorting.shader +++ b/Source/Shaders/GPUParticlesSorting.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/GUI.shader b/Source/Shaders/GUI.shader index b095e3a63..16b764707 100644 --- a/Source/Shaders/GUI.shader +++ b/Source/Shaders/GUI.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/GUICommon.hlsl" diff --git a/Source/Shaders/GUICommon.hlsl b/Source/Shaders/GUICommon.hlsl index 1f8ef377b..dca554d08 100644 --- a/Source/Shaders/GUICommon.hlsl +++ b/Source/Shaders/GUICommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __GUI_COMMON__ #define __GUI_COMMON__ diff --git a/Source/Shaders/GammaCorrectionCommon.hlsl b/Source/Shaders/GammaCorrectionCommon.hlsl index 5681616ed..e2dc7a477 100644 --- a/Source/Shaders/GammaCorrectionCommon.hlsl +++ b/Source/Shaders/GammaCorrectionCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __GAMMA_CORRECTION_COMMON__ #define __GAMMA_CORRECTION_COMMON__ diff --git a/Source/Shaders/Gather.hlsl b/Source/Shaders/Gather.hlsl index 76950bd66..f74878d39 100644 --- a/Source/Shaders/Gather.hlsl +++ b/Source/Shaders/Gather.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __GATHER__ #define __GATHER__ diff --git a/Source/Shaders/GlobalSignDistanceField.hlsl b/Source/Shaders/GlobalSignDistanceField.hlsl index db6fab98a..26a03623b 100644 --- a/Source/Shaders/GlobalSignDistanceField.hlsl +++ b/Source/Shaders/GlobalSignDistanceField.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/Collisions.hlsl" diff --git a/Source/Shaders/GlobalSignDistanceField.shader b/Source/Shaders/GlobalSignDistanceField.shader index 40406fdf6..cface49ac 100644 --- a/Source/Shaders/GlobalSignDistanceField.shader +++ b/Source/Shaders/GlobalSignDistanceField.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/Math.hlsl" diff --git a/Source/Shaders/Histogram.shader b/Source/Shaders/Histogram.shader index edc06434d..49b556ee4 100644 --- a/Source/Shaders/Histogram.shader +++ b/Source/Shaders/Histogram.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/IESProfile.hlsl b/Source/Shaders/IESProfile.hlsl index c7351e275..710ae8484 100644 --- a/Source/Shaders/IESProfile.hlsl +++ b/Source/Shaders/IESProfile.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __IES_PROFILE__ #define __IES_PROFILE__ diff --git a/Source/Shaders/Lighting.hlsl b/Source/Shaders/Lighting.hlsl index e7d168d8a..d4b9da107 100644 --- a/Source/Shaders/Lighting.hlsl +++ b/Source/Shaders/Lighting.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __LIGHTING__ #define __LIGHTING__ diff --git a/Source/Shaders/LightingCommon.hlsl b/Source/Shaders/LightingCommon.hlsl index f58871512..bb7a6ce7e 100644 --- a/Source/Shaders/LightingCommon.hlsl +++ b/Source/Shaders/LightingCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __LIGHTING_COMMON__ #define __LIGHTING_COMMON__ diff --git a/Source/Shaders/Lights.shader b/Source/Shaders/Lights.shader index afc593d63..e48eae4f6 100644 --- a/Source/Shaders/Lights.shader +++ b/Source/Shaders/Lights.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define USE_GBUFFER_CUSTOM_DATA diff --git a/Source/Shaders/MaterialCommon.hlsl b/Source/Shaders/MaterialCommon.hlsl index 60ba7e298..d8d1a5a63 100644 --- a/Source/Shaders/MaterialCommon.hlsl +++ b/Source/Shaders/MaterialCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __MATERIAL_COMMON__ #define __MATERIAL_COMMON__ diff --git a/Source/Shaders/Math.hlsl b/Source/Shaders/Math.hlsl index 16a4ff549..ad3168016 100644 --- a/Source/Shaders/Math.hlsl +++ b/Source/Shaders/Math.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __MATH__ #define __MATH__ diff --git a/Source/Shaders/Matrix.hlsl b/Source/Shaders/Matrix.hlsl index c1f379e43..fe4d55409 100644 --- a/Source/Shaders/Matrix.hlsl +++ b/Source/Shaders/Matrix.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __MATRIX__ #define __MATRIX__ diff --git a/Source/Shaders/MonteCarlo.hlsl b/Source/Shaders/MonteCarlo.hlsl index aefc866cf..c6705c7b4 100644 --- a/Source/Shaders/MonteCarlo.hlsl +++ b/Source/Shaders/MonteCarlo.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __MONTE_CARLO__ #define __MONTE_CARLO__ diff --git a/Source/Shaders/MotionBlur.shader b/Source/Shaders/MotionBlur.shader index e731b0093..6deeb9ef9 100644 --- a/Source/Shaders/MotionBlur.shader +++ b/Source/Shaders/MotionBlur.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define NO_GBUFFER_SAMPLING diff --git a/Source/Shaders/MultiScaler.shader b/Source/Shaders/MultiScaler.shader index 46a0a29c2..c6db36d7f 100644 --- a/Source/Shaders/MultiScaler.shader +++ b/Source/Shaders/MultiScaler.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/Noise.hlsl b/Source/Shaders/Noise.hlsl index 42e8d2e67..5abe2f55e 100644 --- a/Source/Shaders/Noise.hlsl +++ b/Source/Shaders/Noise.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Copyright (c) 2011 Stefan Gustavson. All rights reserved. // Distributed under the MIT license. diff --git a/Source/Shaders/Octahedral.hlsl b/Source/Shaders/Octahedral.hlsl index 7cc1092a4..fc8381f72 100644 --- a/Source/Shaders/Octahedral.hlsl +++ b/Source/Shaders/Octahedral.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __OCTAHEDRAL__ #define __OCTAHEDRAL__ diff --git a/Source/Shaders/PCFKernels.hlsl b/Source/Shaders/PCFKernels.hlsl index 58781f824..d3a1e4d6a 100644 --- a/Source/Shaders/PCFKernels.hlsl +++ b/Source/Shaders/PCFKernels.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __PCF_KERNELS__ #define __PCF_KERNELS__ diff --git a/Source/Shaders/PostProcessing.shader b/Source/Shaders/PostProcessing.shader index 250173108..11b82d8a6 100644 --- a/Source/Shaders/PostProcessing.shader +++ b/Source/Shaders/PostProcessing.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Film Grain post-process shader v1.1 // Martins Upitis (martinsh) devlog-martinsh.blogspot.com diff --git a/Source/Shaders/ProbesFilter.shader b/Source/Shaders/ProbesFilter.shader index 7c4003d72..5fc5a7241 100644 --- a/Source/Shaders/ProbesFilter.shader +++ b/Source/Shaders/ProbesFilter.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/BRDF.hlsl" diff --git a/Source/Shaders/Quad.shader b/Source/Shaders/Quad.shader index 70a49a86d..88d1817fb 100644 --- a/Source/Shaders/Quad.shader +++ b/Source/Shaders/Quad.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/Quaternion.hlsl b/Source/Shaders/Quaternion.hlsl index 1247c48fe..8fdca0437 100644 --- a/Source/Shaders/Quaternion.hlsl +++ b/Source/Shaders/Quaternion.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __QUATERNION__ #define __QUATERNION__ diff --git a/Source/Shaders/Random.hlsl b/Source/Shaders/Random.hlsl index 0c48b0eaa..264c9deee 100644 --- a/Source/Shaders/Random.hlsl +++ b/Source/Shaders/Random.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __RANDOM__ #define __RANDOM__ diff --git a/Source/Shaders/Reflections.shader b/Source/Shaders/Reflections.shader index 6fda1711d..fb01e7957 100644 --- a/Source/Shaders/Reflections.shader +++ b/Source/Shaders/Reflections.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/MaterialCommon.hlsl" diff --git a/Source/Shaders/ReflectionsCommon.hlsl b/Source/Shaders/ReflectionsCommon.hlsl index f6e4aafa1..a17579f43 100644 --- a/Source/Shaders/ReflectionsCommon.hlsl +++ b/Source/Shaders/ReflectionsCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __REFLECTIONS_COMMON__ #define __REFLECTIONS_COMMON__ diff --git a/Source/Shaders/SH.hlsl b/Source/Shaders/SH.hlsl index 93712af03..e35435d7d 100644 --- a/Source/Shaders/SH.hlsl +++ b/Source/Shaders/SH.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __SH__ #define __SH__ diff --git a/Source/Shaders/SMAA.shader b/Source/Shaders/SMAA.shader index 7836d879a..ce135fee9 100644 --- a/Source/Shaders/SMAA.shader +++ b/Source/Shaders/SMAA.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Implementation is based on: // SMAA: Enhanced Subpixel Morphological Antialiasing diff --git a/Source/Shaders/SSAO.shader b/Source/Shaders/SSAO.shader index b97b37b84..ea064b253 100644 --- a/Source/Shaders/SSAO.shader +++ b/Source/Shaders/SSAO.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Adaptive Screen Space Ambient Occlusion // https://github.com/GameTechDev/ASSAO diff --git a/Source/Shaders/SSR.hlsl b/Source/Shaders/SSR.hlsl index 268eb53f4..e036d8fcc 100644 --- a/Source/Shaders/SSR.hlsl +++ b/Source/Shaders/SSR.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/BRDF.hlsl" diff --git a/Source/Shaders/SSR.shader b/Source/Shaders/SSR.shader index 765952cfb..e023e2070 100644 --- a/Source/Shaders/SSR.shader +++ b/Source/Shaders/SSR.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/LightingCommon.hlsl" diff --git a/Source/Shaders/Shadows.shader b/Source/Shaders/Shadows.shader index a57562cc7..e8dc0f56d 100644 --- a/Source/Shaders/Shadows.shader +++ b/Source/Shaders/Shadows.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #define USE_GBUFFER_CUSTOM_DATA diff --git a/Source/Shaders/ShadowsCommon.hlsl b/Source/Shaders/ShadowsCommon.hlsl index c06b16654..937a4be52 100644 --- a/Source/Shaders/ShadowsCommon.hlsl +++ b/Source/Shaders/ShadowsCommon.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __SHADOWS_COMMON__ #define __SHADOWS_COMMON__ diff --git a/Source/Shaders/ShadowsSampling.hlsl b/Source/Shaders/ShadowsSampling.hlsl index 9a5dfd28f..b51c4a8db 100644 --- a/Source/Shaders/ShadowsSampling.hlsl +++ b/Source/Shaders/ShadowsSampling.hlsl @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #ifndef __SHADOWS_SAMPLING__ #define __SHADOWS_SAMPLING__ diff --git a/Source/Shaders/Sky.shader b/Source/Shaders/Sky.shader index 6b97ec05f..e758a0b6f 100644 --- a/Source/Shaders/Sky.shader +++ b/Source/Shaders/Sky.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" #include "./Flax/MaterialCommon.hlsl" diff --git a/Source/Shaders/TAA.shader b/Source/Shaders/TAA.shader index f5f01ee19..04fe31651 100644 --- a/Source/Shaders/TAA.shader +++ b/Source/Shaders/TAA.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. #include "./Flax/Common.hlsl" diff --git a/Source/Shaders/VolumetricFog.shader b/Source/Shaders/VolumetricFog.shader index 01756fe56..73fb56cde 100644 --- a/Source/Shaders/VolumetricFog.shader +++ b/Source/Shaders/VolumetricFog.shader @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // Implementation based on: // "Volumetric fog: Unified, compute shader based solution to atmospheric scattering" - Bart Wronski at Siggraph 2014 diff --git a/Source/ThirdParty/DirectXMesh/DirectXMesh.Build.cs b/Source/ThirdParty/DirectXMesh/DirectXMesh.Build.cs index 5e1ba67f7..e5f0bec41 100644 --- a/Source/ThirdParty/DirectXMesh/DirectXMesh.Build.cs +++ b/Source/ThirdParty/DirectXMesh/DirectXMesh.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/DirectXTex/DirectXTex.Build.cs b/Source/ThirdParty/DirectXTex/DirectXTex.Build.cs index 914a81f22..adead0b7a 100644 --- a/Source/ThirdParty/DirectXTex/DirectXTex.Build.cs +++ b/Source/ThirdParty/DirectXTex/DirectXTex.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/LZ4/lz4.Build.cs b/Source/ThirdParty/LZ4/lz4.Build.cs index 3c7ccf1ff..21aecca7a 100644 --- a/Source/ThirdParty/LZ4/lz4.Build.cs +++ b/Source/ThirdParty/LZ4/lz4.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/MikkTSpace/MikkTSpace.Build.cs b/Source/ThirdParty/MikkTSpace/MikkTSpace.Build.cs index 8efc71038..7a96846ff 100644 --- a/Source/ThirdParty/MikkTSpace/MikkTSpace.Build.cs +++ b/Source/ThirdParty/MikkTSpace/MikkTSpace.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/OpenFBX/OpenFBX.Build.cs b/Source/ThirdParty/OpenFBX/OpenFBX.Build.cs index 0fc412b04..9b1f57b0d 100644 --- a/Source/ThirdParty/OpenFBX/OpenFBX.Build.cs +++ b/Source/ThirdParty/OpenFBX/OpenFBX.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/PhysX/PhysX.Build.cs b/Source/ThirdParty/PhysX/PhysX.Build.cs index 888fbc6c2..2e2f2ffad 100644 --- a/Source/ThirdParty/PhysX/PhysX.Build.cs +++ b/Source/ThirdParty/PhysX/PhysX.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/ThirdParty/UVAtlas/UVAtlas.Build.cs b/Source/ThirdParty/UVAtlas/UVAtlas.Build.cs index c18fb71b6..58748dc1d 100644 --- a/Source/ThirdParty/UVAtlas/UVAtlas.Build.cs +++ b/Source/ThirdParty/UVAtlas/UVAtlas.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs b/Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs index 4503813bb..8f91c4865 100644 --- a/Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs +++ b/Source/ThirdParty/UniversalAnalytics/UniversalAnalytics.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/ThirdParty/VulkanMemoryAllocator/VulkanMemoryAllocator.Build.cs b/Source/ThirdParty/VulkanMemoryAllocator/VulkanMemoryAllocator.Build.cs index d0e29fdbc..bb2433f45 100644 --- a/Source/ThirdParty/VulkanMemoryAllocator/VulkanMemoryAllocator.Build.cs +++ b/Source/ThirdParty/VulkanMemoryAllocator/VulkanMemoryAllocator.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/assimp/assimp.Build.cs b/Source/ThirdParty/assimp/assimp.Build.cs index 59c3281d1..a7c288af3 100644 --- a/Source/ThirdParty/assimp/assimp.Build.cs +++ b/Source/ThirdParty/assimp/assimp.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/bc7enc16/bc7enc16.Build.cs b/Source/ThirdParty/bc7enc16/bc7enc16.Build.cs index e82a028d7..83efe8696 100644 --- a/Source/ThirdParty/bc7enc16/bc7enc16.Build.cs +++ b/Source/ThirdParty/bc7enc16/bc7enc16.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/catch2/catch2.Build.cs b/Source/ThirdParty/catch2/catch2.Build.cs index 480981250..c324e22d7 100644 --- a/Source/ThirdParty/catch2/catch2.Build.cs +++ b/Source/ThirdParty/catch2/catch2.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/ThirdParty/curl/curl.Build.cs b/Source/ThirdParty/curl/curl.Build.cs index a2ce68fe8..35853f9e3 100644 --- a/Source/ThirdParty/curl/curl.Build.cs +++ b/Source/ThirdParty/curl/curl.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/detex/detex.Build.cs b/Source/ThirdParty/detex/detex.Build.cs index 40e878d87..05c6390b8 100644 --- a/Source/ThirdParty/detex/detex.Build.cs +++ b/Source/ThirdParty/detex/detex.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/enet/enet.Build.cs b/Source/ThirdParty/enet/enet.Build.cs index 1078afde9..5596278e8 100644 --- a/Source/ThirdParty/enet/enet.Build.cs +++ b/Source/ThirdParty/enet/enet.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/ThirdParty/fmt/fmt.Build.cs b/Source/ThirdParty/fmt/fmt.Build.cs index 6305415be..18cdc7287 100644 --- a/Source/ThirdParty/fmt/fmt.Build.cs +++ b/Source/ThirdParty/fmt/fmt.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/ThirdParty/freetype/freetype.Build.cs b/Source/ThirdParty/freetype/freetype.Build.cs index 86dcae0a6..32c3888f6 100644 --- a/Source/ThirdParty/freetype/freetype.Build.cs +++ b/Source/ThirdParty/freetype/freetype.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/glslang/glslang.Build.cs b/Source/ThirdParty/glslang/glslang.Build.cs index e9f236b5b..5e0c247ec 100644 --- a/Source/ThirdParty/glslang/glslang.Build.cs +++ b/Source/ThirdParty/glslang/glslang.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/meshoptimizer/meshoptimizer.Build.cs b/Source/ThirdParty/meshoptimizer/meshoptimizer.Build.cs index 08d7a681d..ade794db5 100644 --- a/Source/ThirdParty/meshoptimizer/meshoptimizer.Build.cs +++ b/Source/ThirdParty/meshoptimizer/meshoptimizer.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/minimp3/minimp3.Build.cs b/Source/ThirdParty/minimp3/minimp3.Build.cs index efe1908d5..5eef54152 100644 --- a/Source/ThirdParty/minimp3/minimp3.Build.cs +++ b/Source/ThirdParty/minimp3/minimp3.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/mono-2.0/mono.Build.cs b/Source/ThirdParty/mono-2.0/mono.Build.cs index 6e251f86f..7d7830081 100644 --- a/Source/ThirdParty/mono-2.0/mono.Build.cs +++ b/Source/ThirdParty/mono-2.0/mono.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/ThirdParty/ogg/ogg.Build.cs b/Source/ThirdParty/ogg/ogg.Build.cs index 31019b5a8..db0e0ae43 100644 --- a/Source/ThirdParty/ogg/ogg.Build.cs +++ b/Source/ThirdParty/ogg/ogg.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/pugixml/pugixml.Build.cs b/Source/ThirdParty/pugixml/pugixml.Build.cs index 2ead7f7fb..5b76abc4b 100644 --- a/Source/ThirdParty/pugixml/pugixml.Build.cs +++ b/Source/ThirdParty/pugixml/pugixml.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/rapidjson/rapidjson.Build.cs b/Source/ThirdParty/rapidjson/rapidjson.Build.cs index ab245798c..a239f919f 100644 --- a/Source/ThirdParty/rapidjson/rapidjson.Build.cs +++ b/Source/ThirdParty/rapidjson/rapidjson.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/ThirdParty/recastnavigation/recastnavigation.Build.cs b/Source/ThirdParty/recastnavigation/recastnavigation.Build.cs index d58d97fdb..d849d24b3 100644 --- a/Source/ThirdParty/recastnavigation/recastnavigation.Build.cs +++ b/Source/ThirdParty/recastnavigation/recastnavigation.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/ThirdParty/spirv-tools/spirv_tools.Build.cs b/Source/ThirdParty/spirv-tools/spirv_tools.Build.cs index 256edd529..86226f0a3 100644 --- a/Source/ThirdParty/spirv-tools/spirv_tools.Build.cs +++ b/Source/ThirdParty/spirv-tools/spirv_tools.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/stb/stb.Build.cs b/Source/ThirdParty/stb/stb.Build.cs index 8a42e0928..67ffd6013 100644 --- a/Source/ThirdParty/stb/stb.Build.cs +++ b/Source/ThirdParty/stb/stb.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; using Flax.Build.NativeCpp; diff --git a/Source/ThirdParty/tracy/tracy.Build.cs b/Source/ThirdParty/tracy/tracy.Build.cs index 0bd294b98..76d8854f6 100644 --- a/Source/ThirdParty/tracy/tracy.Build.cs +++ b/Source/ThirdParty/tracy/tracy.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/ThirdParty/volk/volk.Build.cs b/Source/ThirdParty/volk/volk.Build.cs index 21ca2a75e..b1be53231 100644 --- a/Source/ThirdParty/volk/volk.Build.cs +++ b/Source/ThirdParty/volk/volk.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/ThirdParty/vorbis/vorbis.Build.cs b/Source/ThirdParty/vorbis/vorbis.Build.cs index a2f5d06d4..394c8c218 100644 --- a/Source/ThirdParty/vorbis/vorbis.Build.cs +++ b/Source/ThirdParty/vorbis/vorbis.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.Build.cs b/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.Build.cs index 4bbfdb95e..dfb85f1a3 100644 --- a/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.Build.cs +++ b/Source/Tools/Flax.Build.Tests/Flax.Build.Tests.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Tools/Flax.Build.Tests/Properties/AssemblyInfo.cs b/Source/Tools/Flax.Build.Tests/Properties/AssemblyInfo.cs index 06ca17892..15036767c 100644 --- a/Source/Tools/Flax.Build.Tests/Properties/AssemblyInfo.cs +++ b/Source/Tools/Flax.Build.Tests/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Reflection; using System.Runtime.InteropServices; @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Wojciech Figat")] [assembly: AssemblyProduct("Flax.Build.Tests")] -[assembly: AssemblyCopyright("Copyright © 2012-2022 Wojciech Figat")] +[assembly: AssemblyCopyright("Copyright © 2012-2023 Wojciech Figat")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/Source/Tools/Flax.Build.Tests/TestCommandLine.cs b/Source/Tools/Flax.Build.Tests/TestCommandLine.cs index 20f4290b2..db530b70d 100644 --- a/Source/Tools/Flax.Build.Tests/TestCommandLine.cs +++ b/Source/Tools/Flax.Build.Tests/TestCommandLine.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/Flax.Build/Bindings/ApiTypeInfo.cs b/Source/Tools/Flax.Build/Bindings/ApiTypeInfo.cs index b09d63f09..b10561478 100644 --- a/Source/Tools/Flax.Build/Bindings/ApiTypeInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/ApiTypeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Api.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Api.cs index a5cf4e8c6..66fcf230d 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Api.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Api.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.CSharp.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.CSharp.cs index ac22fb16a..edfd0983f 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.CSharp.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.CSharp.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. //#define AUTO_DOC_TOOLTIPS diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cache.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cache.cs index ceee5c814..84ed1aed6 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cache.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cache.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs index e57449f40..e8a70b974 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Cpp.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Parsing.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Parsing.cs index 2f3bb22f1..43b72eaf9 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Parsing.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.Parsing.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.cs b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.cs index ad37850dd..b8e355d75 100644 --- a/Source/Tools/Flax.Build/Bindings/BindingsGenerator.cs +++ b/Source/Tools/Flax.Build/Bindings/BindingsGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/ClassInfo.cs b/Source/Tools/Flax.Build/Bindings/ClassInfo.cs index 486b7c50c..209c83c3f 100644 --- a/Source/Tools/Flax.Build/Bindings/ClassInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/ClassInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/ClassStructInfo.cs b/Source/Tools/Flax.Build/Bindings/ClassStructInfo.cs index bdf21b7f8..ca883eac9 100644 --- a/Source/Tools/Flax.Build/Bindings/ClassStructInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/ClassStructInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/EnumInfo.cs b/Source/Tools/Flax.Build/Bindings/EnumInfo.cs index a91936281..f18d60217 100644 --- a/Source/Tools/Flax.Build/Bindings/EnumInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/EnumInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/EventInfo.cs b/Source/Tools/Flax.Build/Bindings/EventInfo.cs index 751e28544..ee77231e6 100644 --- a/Source/Tools/Flax.Build/Bindings/EventInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/EventInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/FieldInfo.cs b/Source/Tools/Flax.Build/Bindings/FieldInfo.cs index 606c8ade4..5526608a8 100644 --- a/Source/Tools/Flax.Build/Bindings/FieldInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/FieldInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/FileInfo.cs b/Source/Tools/Flax.Build/Bindings/FileInfo.cs index b7ff1635e..242a12b02 100644 --- a/Source/Tools/Flax.Build/Bindings/FileInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/FileInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Bindings/FunctionInfo.cs b/Source/Tools/Flax.Build/Bindings/FunctionInfo.cs index e301053ac..efadd193e 100644 --- a/Source/Tools/Flax.Build/Bindings/FunctionInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/FunctionInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/InheritanceInfo.cs b/Source/Tools/Flax.Build/Bindings/InheritanceInfo.cs index 92a246a11..b66e5d3e7 100644 --- a/Source/Tools/Flax.Build/Bindings/InheritanceInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/InheritanceInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Bindings { diff --git a/Source/Tools/Flax.Build/Bindings/InjectCodeInfo.cs b/Source/Tools/Flax.Build/Bindings/InjectCodeInfo.cs index 55d2356c6..004ca6ccd 100644 --- a/Source/Tools/Flax.Build/Bindings/InjectCodeInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/InjectCodeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/InterfaceInfo.cs b/Source/Tools/Flax.Build/Bindings/InterfaceInfo.cs index 6adc775de..d9f8824bc 100644 --- a/Source/Tools/Flax.Build/Bindings/InterfaceInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/InterfaceInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Linq; diff --git a/Source/Tools/Flax.Build/Bindings/LangType.cs b/Source/Tools/Flax.Build/Bindings/LangType.cs index eb031ef2a..1ccf8439e 100644 --- a/Source/Tools/Flax.Build/Bindings/LangType.cs +++ b/Source/Tools/Flax.Build/Bindings/LangType.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Bindings/MemberInfo.cs b/Source/Tools/Flax.Build/Bindings/MemberInfo.cs index 1422e25a7..8d8019b8c 100644 --- a/Source/Tools/Flax.Build/Bindings/MemberInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/MemberInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/ModuleInfo.cs b/Source/Tools/Flax.Build/Bindings/ModuleInfo.cs index d6cd813c4..ff45c4057 100644 --- a/Source/Tools/Flax.Build/Bindings/ModuleInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/ModuleInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/PropertyInfo.cs b/Source/Tools/Flax.Build/Bindings/PropertyInfo.cs index e6a9a869a..433bd6638 100644 --- a/Source/Tools/Flax.Build/Bindings/PropertyInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/PropertyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; diff --git a/Source/Tools/Flax.Build/Bindings/StructureInfo.cs b/Source/Tools/Flax.Build/Bindings/StructureInfo.cs index 0fa157506..d9dd87215 100644 --- a/Source/Tools/Flax.Build/Bindings/StructureInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/StructureInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/TypeInfo.cs b/Source/Tools/Flax.Build/Bindings/TypeInfo.cs index a1e6bcb5d..9bbd2dc39 100644 --- a/Source/Tools/Flax.Build/Bindings/TypeInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/TypeInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Bindings/TypedefInfo.cs b/Source/Tools/Flax.Build/Bindings/TypedefInfo.cs index f664264c1..0b0a358de 100644 --- a/Source/Tools/Flax.Build/Bindings/TypedefInfo.cs +++ b/Source/Tools/Flax.Build/Bindings/TypedefInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Build/Builder.Projects.cs b/Source/Tools/Flax.Build/Build/Builder.Projects.cs index 21aa25788..e18195878 100644 --- a/Source/Tools/Flax.Build/Build/Builder.Projects.cs +++ b/Source/Tools/Flax.Build/Build/Builder.Projects.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Builder.Rules.cs b/Source/Tools/Flax.Build/Build/Builder.Rules.cs index 9470e3e19..fe8b6d1bd 100644 --- a/Source/Tools/Flax.Build/Build/Builder.Rules.cs +++ b/Source/Tools/Flax.Build/Build/Builder.Rules.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Builder.cs b/Source/Tools/Flax.Build/Build/Builder.cs index 5139ed621..1dddca5fa 100644 --- a/Source/Tools/Flax.Build/Build/Builder.cs +++ b/Source/Tools/Flax.Build/Build/Builder.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/DepsModule.cs b/Source/Tools/Flax.Build/Build/DepsModule.cs index 36f8098f9..a6b32045f 100644 --- a/Source/Tools/Flax.Build/Build/DepsModule.cs +++ b/Source/Tools/Flax.Build/Build/DepsModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build.NativeCpp; diff --git a/Source/Tools/Flax.Build/Build/DotNet/Builder.DotNet.cs b/Source/Tools/Flax.Build/Build/DotNet/Builder.DotNet.cs index bee75928c..999eeaf22 100644 --- a/Source/Tools/Flax.Build/Build/DotNet/Builder.DotNet.cs +++ b/Source/Tools/Flax.Build/Build/DotNet/Builder.DotNet.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/EditorModule.cs b/Source/Tools/Flax.Build/Build/EditorModule.cs index 5c75146ee..ed5703a16 100644 --- a/Source/Tools/Flax.Build/Build/EditorModule.cs +++ b/Source/Tools/Flax.Build/Build/EditorModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Build/EngineModule.cs b/Source/Tools/Flax.Build/Build/EngineModule.cs index 3fb411854..5d84761fb 100644 --- a/Source/Tools/Flax.Build/Build/EngineModule.cs +++ b/Source/Tools/Flax.Build/Build/EngineModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build.NativeCpp; diff --git a/Source/Tools/Flax.Build/Build/EngineTarget.cs b/Source/Tools/Flax.Build/Build/EngineTarget.cs index 98c87358f..43038943c 100644 --- a/Source/Tools/Flax.Build/Build/EngineTarget.cs +++ b/Source/Tools/Flax.Build/Build/EngineTarget.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Build/GameModule.cs b/Source/Tools/Flax.Build/Build/GameModule.cs index c03f4c8cb..df36c1d19 100644 --- a/Source/Tools/Flax.Build/Build/GameModule.cs +++ b/Source/Tools/Flax.Build/Build/GameModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build.NativeCpp; diff --git a/Source/Tools/Flax.Build/Build/GameTarget.cs b/Source/Tools/Flax.Build/Build/GameTarget.cs index 36ae0288f..6edc1576c 100644 --- a/Source/Tools/Flax.Build/Build/GameTarget.cs +++ b/Source/Tools/Flax.Build/Build/GameTarget.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Build/Graph/CompileTask.cs b/Source/Tools/Flax.Build/Build/Graph/CompileTask.cs index 6361ae1cc..de0cb8503 100644 --- a/Source/Tools/Flax.Build/Build/Graph/CompileTask.cs +++ b/Source/Tools/Flax.Build/Build/Graph/CompileTask.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Graph { diff --git a/Source/Tools/Flax.Build/Build/Graph/LinkTask.cs b/Source/Tools/Flax.Build/Build/Graph/LinkTask.cs index 99cf44d92..e45d26f66 100644 --- a/Source/Tools/Flax.Build/Build/Graph/LinkTask.cs +++ b/Source/Tools/Flax.Build/Build/Graph/LinkTask.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Graph { diff --git a/Source/Tools/Flax.Build/Build/Graph/LocalExecutor.cs b/Source/Tools/Flax.Build/Build/Graph/LocalExecutor.cs index 5bf6908e7..e2633414e 100644 --- a/Source/Tools/Flax.Build/Build/Graph/LocalExecutor.cs +++ b/Source/Tools/Flax.Build/Build/Graph/LocalExecutor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Graph/Task.cs b/Source/Tools/Flax.Build/Build/Graph/Task.cs index 363a2e40e..2ee6cee10 100644 --- a/Source/Tools/Flax.Build/Build/Graph/Task.cs +++ b/Source/Tools/Flax.Build/Build/Graph/Task.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Graph/TaskExecutor.cs b/Source/Tools/Flax.Build/Build/Graph/TaskExecutor.cs index bfe9d682c..276d2cec5 100644 --- a/Source/Tools/Flax.Build/Build/Graph/TaskExecutor.cs +++ b/Source/Tools/Flax.Build/Build/Graph/TaskExecutor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs b/Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs index 9d307cebd..e6dfbae05 100644 --- a/Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs +++ b/Source/Tools/Flax.Build/Build/Graph/TaskGraph.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/HeaderOnlyModule.cs b/Source/Tools/Flax.Build/Build/HeaderOnlyModule.cs index bf67f6506..23ff682da 100644 --- a/Source/Tools/Flax.Build/Build/HeaderOnlyModule.cs +++ b/Source/Tools/Flax.Build/Build/HeaderOnlyModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Build/InvalidArchitectureException.cs b/Source/Tools/Flax.Build/Build/InvalidArchitectureException.cs index eaf578074..e910ad194 100644 --- a/Source/Tools/Flax.Build/Build/InvalidArchitectureException.cs +++ b/Source/Tools/Flax.Build/Build/InvalidArchitectureException.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Build/InvalidPlatformException.cs b/Source/Tools/Flax.Build/Build/InvalidPlatformException.cs index ef5fed41f..3f847bcb1 100644 --- a/Source/Tools/Flax.Build/Build/InvalidPlatformException.cs +++ b/Source/Tools/Flax.Build/Build/InvalidPlatformException.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Build/Module.cs b/Source/Tools/Flax.Build/Build/Module.cs index ee67c0db0..966cf2d94 100644 --- a/Source/Tools/Flax.Build/Build/Module.cs +++ b/Source/Tools/Flax.Build/Build/Module.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/BuildOptions.cs b/Source/Tools/Flax.Build/Build/NativeCpp/BuildOptions.cs index 6cad222ba..bf06ca3d7 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/BuildOptions.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/BuildOptions.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/Builder.NativeCpp.cs b/Source/Tools/Flax.Build/Build/NativeCpp/Builder.NativeCpp.cs index 9dba593a1..6c13343bf 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/Builder.NativeCpp.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/Builder.NativeCpp.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/CompileEnvironment.cs b/Source/Tools/Flax.Build/Build/NativeCpp/CompileEnvironment.cs index 522099c62..be8dbaa9a 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/CompileEnvironment.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/CompileEnvironment.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/CompileOutput.cs b/Source/Tools/Flax.Build/Build/NativeCpp/CompileOutput.cs index 1cf6bed67..ea75fa51c 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/CompileOutput.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/CompileOutput.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/IncludesCache.cs b/Source/Tools/Flax.Build/Build/NativeCpp/IncludesCache.cs index fa4001158..934c73351 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/IncludesCache.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/IncludesCache.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/NativeCpp/LinkEnvironment.cs b/Source/Tools/Flax.Build/Build/NativeCpp/LinkEnvironment.cs index 0cd7a2056..34b7df03f 100644 --- a/Source/Tools/Flax.Build/Build/NativeCpp/LinkEnvironment.cs +++ b/Source/Tools/Flax.Build/Build/NativeCpp/LinkEnvironment.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Platform.cs b/Source/Tools/Flax.Build/Build/Platform.cs index 99edc7889..a99c2330c 100644 --- a/Source/Tools/Flax.Build/Build/Platform.cs +++ b/Source/Tools/Flax.Build/Build/Platform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Plugin.cs b/Source/Tools/Flax.Build/Build/Plugin.cs index 450182401..fdd942430 100644 --- a/Source/Tools/Flax.Build/Build/Plugin.cs +++ b/Source/Tools/Flax.Build/Build/Plugin.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Build/Plugins/VisualScriptingPlugin.cs b/Source/Tools/Flax.Build/Build/Plugins/VisualScriptingPlugin.cs index 1fa8ed4f0..76fd5ac8f 100644 --- a/Source/Tools/Flax.Build/Build/Plugins/VisualScriptingPlugin.cs +++ b/Source/Tools/Flax.Build/Build/Plugins/VisualScriptingPlugin.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Text; using Flax.Build.Bindings; diff --git a/Source/Tools/Flax.Build/Build/Profiling.cs b/Source/Tools/Flax.Build/Build/Profiling.cs index dcef4db96..ef1956379 100644 --- a/Source/Tools/Flax.Build/Build/Profiling.cs +++ b/Source/Tools/Flax.Build/Build/Profiling.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Build/ProjectTarget.cs b/Source/Tools/Flax.Build/Build/ProjectTarget.cs index d0a212d9c..5655d95b7 100644 --- a/Source/Tools/Flax.Build/Build/ProjectTarget.cs +++ b/Source/Tools/Flax.Build/Build/ProjectTarget.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Build/Sdk.cs b/Source/Tools/Flax.Build/Build/Sdk.cs index 12ef3cddb..1d819f455 100644 --- a/Source/Tools/Flax.Build/Build/Sdk.cs +++ b/Source/Tools/Flax.Build/Build/Sdk.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Target.cs b/Source/Tools/Flax.Build/Build/Target.cs index d78b6ade0..979bdda6b 100644 --- a/Source/Tools/Flax.Build/Build/Target.cs +++ b/Source/Tools/Flax.Build/Build/Target.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/ThirdPartyModule.cs b/Source/Tools/Flax.Build/Build/ThirdPartyModule.cs index f1ede3c49..9c8a77df3 100644 --- a/Source/Tools/Flax.Build/Build/ThirdPartyModule.cs +++ b/Source/Tools/Flax.Build/Build/ThirdPartyModule.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Build/Toolchain.cs b/Source/Tools/Flax.Build/Build/Toolchain.cs index 4ef77fabb..22222b6be 100644 --- a/Source/Tools/Flax.Build/Build/Toolchain.cs +++ b/Source/Tools/Flax.Build/Build/Toolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build.Graph; diff --git a/Source/Tools/Flax.Build/CommandLine.cs b/Source/Tools/Flax.Build/CommandLine.cs index 001622d3c..91b741d59 100644 --- a/Source/Tools/Flax.Build/CommandLine.cs +++ b/Source/Tools/Flax.Build/CommandLine.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/CommandLineAttribute.cs b/Source/Tools/Flax.Build/CommandLineAttribute.cs index 251923ca7..84e0a9c29 100644 --- a/Source/Tools/Flax.Build/CommandLineAttribute.cs +++ b/Source/Tools/Flax.Build/CommandLineAttribute.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Configuration.cs b/Source/Tools/Flax.Build/Configuration.cs index 4c3f63b0c..aacd90512 100644 --- a/Source/Tools/Flax.Build/Configuration.cs +++ b/Source/Tools/Flax.Build/Configuration.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deploy/Configuration.cs b/Source/Tools/Flax.Build/Deploy/Configuration.cs index 06e04d83b..aa098acf7 100644 --- a/Source/Tools/Flax.Build/Deploy/Configuration.cs +++ b/Source/Tools/Flax.Build/Deploy/Configuration.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Deps/Configuration.cs b/Source/Tools/Flax.Build/Deps/Configuration.cs index 8532899c1..1d79692ba 100644 --- a/Source/Tools/Flax.Build/Deps/Configuration.cs +++ b/Source/Tools/Flax.Build/Deps/Configuration.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/Assimp.cs b/Source/Tools/Flax.Build/Deps/Dependencies/Assimp.cs index 77ff357fc..d135a6c56 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/Assimp.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/Assimp.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/DirectXMesh.cs b/Source/Tools/Flax.Build/Deps/Dependencies/DirectXMesh.cs index f1fb14e65..2f2643ed0 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/DirectXMesh.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/DirectXMesh.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/DirectXTex.cs b/Source/Tools/Flax.Build/Deps/Dependencies/DirectXTex.cs index 8ef4aae3e..29d1668d2 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/DirectXTex.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/DirectXTex.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/NewtonsoftJson.cs b/Source/Tools/Flax.Build/Deps/Dependencies/NewtonsoftJson.cs index ada5a49a1..cb3e154b1 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/NewtonsoftJson.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/NewtonsoftJson.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/OpenAL.cs b/Source/Tools/Flax.Build/Deps/Dependencies/OpenAL.cs index 1f0f1600d..8fe11bca3 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/OpenAL.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/OpenAL.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/PhysX.cs b/Source/Tools/Flax.Build/Deps/Dependencies/PhysX.cs index 6351e12b4..7f23511b5 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/PhysX.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/PhysX.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/UVAtlas.cs b/Source/Tools/Flax.Build/Deps/Dependencies/UVAtlas.cs index 8c7da84ef..026e9f57e 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/UVAtlas.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/UVAtlas.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/curl.cs b/Source/Tools/Flax.Build/Deps/Dependencies/curl.cs index 72f66902a..cb1bcdbcb 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/curl.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/curl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/freetype.cs b/Source/Tools/Flax.Build/Deps/Dependencies/freetype.cs index 1e79f8506..5984053cb 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/freetype.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/freetype.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/glslang.cs b/Source/Tools/Flax.Build/Deps/Dependencies/glslang.cs index 07ec5ffe0..b7cccbae2 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/glslang.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/glslang.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using Flax.Build; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/mono.cs b/Source/Tools/Flax.Build/Deps/Dependencies/mono.cs index f0a570cc9..7a6e9dde9 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/mono.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/mono.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/ogg.cs b/Source/Tools/Flax.Build/Deps/Dependencies/ogg.cs index ddc918961..fd9621c25 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/ogg.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/ogg.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Dependencies/vorbis.cs b/Source/Tools/Flax.Build/Deps/Dependencies/vorbis.cs index 80a4bd1ba..ca8c6f547 100644 --- a/Source/Tools/Flax.Build/Deps/Dependencies/vorbis.cs +++ b/Source/Tools/Flax.Build/Deps/Dependencies/vorbis.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Dependency.cs b/Source/Tools/Flax.Build/Deps/Dependency.cs index ed4d4731a..e52d932c4 100644 --- a/Source/Tools/Flax.Build/Deps/Dependency.cs +++ b/Source/Tools/Flax.Build/Deps/Dependency.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deps/DepsBuilder.cs b/Source/Tools/Flax.Build/Deps/DepsBuilder.cs index f50fefbae..9c78dafe5 100644 --- a/Source/Tools/Flax.Build/Deps/DepsBuilder.cs +++ b/Source/Tools/Flax.Build/Deps/DepsBuilder.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Deps/Downloader.cs b/Source/Tools/Flax.Build/Deps/Downloader.cs index 08f445dd1..9d097b7db 100644 --- a/Source/Tools/Flax.Build/Deps/Downloader.cs +++ b/Source/Tools/Flax.Build/Deps/Downloader.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Deps/ProgressDisplay.cs b/Source/Tools/Flax.Build/Deps/ProgressDisplay.cs index 3be74c7d0..5ad6e10d3 100644 --- a/Source/Tools/Flax.Build/Deps/ProgressDisplay.cs +++ b/Source/Tools/Flax.Build/Deps/ProgressDisplay.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Flax.Build.Build.cs b/Source/Tools/Flax.Build/Flax.Build.Build.cs index b5d2b8fcd..422704654 100644 --- a/Source/Tools/Flax.Build/Flax.Build.Build.cs +++ b/Source/Tools/Flax.Build/Flax.Build.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Tools/Flax.Build/Globals.cs b/Source/Tools/Flax.Build/Globals.cs index 359d81cf0..0af22ab55 100644 --- a/Source/Tools/Flax.Build/Globals.cs +++ b/Source/Tools/Flax.Build/Globals.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build { diff --git a/Source/Tools/Flax.Build/Log.cs b/Source/Tools/Flax.Build/Log.cs index ed46d02c3..b8fc62ddd 100644 --- a/Source/Tools/Flax.Build/Log.cs +++ b/Source/Tools/Flax.Build/Log.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/LogIndentScope.cs b/Source/Tools/Flax.Build/LogIndentScope.cs index f7264879c..cdb310e4f 100644 --- a/Source/Tools/Flax.Build/LogIndentScope.cs +++ b/Source/Tools/Flax.Build/LogIndentScope.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Platforms/Android/AndroidNdk.cs b/Source/Tools/Flax.Build/Platforms/Android/AndroidNdk.cs index d13fd37a4..3d7359d93 100644 --- a/Source/Tools/Flax.Build/Platforms/Android/AndroidNdk.cs +++ b/Source/Tools/Flax.Build/Platforms/Android/AndroidNdk.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Android/AndroidPlatform.cs b/Source/Tools/Flax.Build/Platforms/Android/AndroidPlatform.cs index bafaa4492..414614500 100644 --- a/Source/Tools/Flax.Build/Platforms/Android/AndroidPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Android/AndroidPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Android/AndroidSdk.cs b/Source/Tools/Flax.Build/Platforms/Android/AndroidSdk.cs index 8c7b00fd8..5fa8eae30 100644 --- a/Source/Tools/Flax.Build/Platforms/Android/AndroidSdk.cs +++ b/Source/Tools/Flax.Build/Platforms/Android/AndroidSdk.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Android/AndroidToolchain.cs b/Source/Tools/Flax.Build/Platforms/Android/AndroidToolchain.cs index 2c8016a2a..bc5257ec7 100644 --- a/Source/Tools/Flax.Build/Platforms/Android/AndroidToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Android/AndroidToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Platforms/GDK/GDK.cs b/Source/Tools/Flax.Build/Platforms/GDK/GDK.cs index f9b238eed..62f3caa89 100644 --- a/Source/Tools/Flax.Build/Platforms/GDK/GDK.cs +++ b/Source/Tools/Flax.Build/Platforms/GDK/GDK.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/GDK/GDKPlatform.cs b/Source/Tools/Flax.Build/Platforms/GDK/GDKPlatform.cs index c32e46484..790c84c21 100644 --- a/Source/Tools/Flax.Build/Platforms/GDK/GDKPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/GDK/GDKPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using Flax.Build.Projects.VisualStudio; diff --git a/Source/Tools/Flax.Build/Platforms/GDK/GDKToolchain.cs b/Source/Tools/Flax.Build/Platforms/GDK/GDKToolchain.cs index 72dfeae28..eebae6258 100644 --- a/Source/Tools/Flax.Build/Platforms/GDK/GDKToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/GDK/GDKToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Linux/LinuxPlatform.cs b/Source/Tools/Flax.Build/Platforms/Linux/LinuxPlatform.cs index ced516a54..f7a0417b3 100644 --- a/Source/Tools/Flax.Build/Platforms/Linux/LinuxPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Linux/LinuxPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs b/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs index 2904b89a7..9bc9aab33 100644 --- a/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Linux/LinuxToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Mac/MacPlatform.cs b/Source/Tools/Flax.Build/Platforms/Mac/MacPlatform.cs index b445d2374..7b740f47f 100644 --- a/Source/Tools/Flax.Build/Platforms/Mac/MacPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Mac/MacPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs b/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs index 5c934ad0d..bc6482fff 100644 --- a/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Mac/MacToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/UWP/UWPPlatform.cs b/Source/Tools/Flax.Build/Platforms/UWP/UWPPlatform.cs index 3eb2ed123..127509e9b 100644 --- a/Source/Tools/Flax.Build/Platforms/UWP/UWPPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/UWP/UWPPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using Flax.Build.Projects.VisualStudio; diff --git a/Source/Tools/Flax.Build/Platforms/UWP/UWPToolchain.cs b/Source/Tools/Flax.Build/Platforms/UWP/UWPToolchain.cs index 3a5c63c90..546d21902 100644 --- a/Source/Tools/Flax.Build/Platforms/UWP/UWPToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/UWP/UWPToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Platforms/Unix/UnixPlatform.cs b/Source/Tools/Flax.Build/Platforms/Unix/UnixPlatform.cs index 62180306c..58931d172 100644 --- a/Source/Tools/Flax.Build/Platforms/Unix/UnixPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Unix/UnixPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Diagnostics; using Flax.Build.Projects; diff --git a/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs b/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs index 5418575c6..353500ecc 100644 --- a/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Unix/UnixToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs index c297904c1..4971af401 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using System.Linq; diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatformBase.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatformBase.cs index 2673ec817..5e8a690f8 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatformBase.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsPlatformBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. // ReSharper disable InconsistentNaming diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchain.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchain.cs index 82d302eff..e21a1ce1a 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchain.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchain.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using System.IO; diff --git a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs index 3919fcafa..e702b089c 100644 --- a/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs +++ b/Source/Tools/Flax.Build/Platforms/Windows/WindowsToolchainBase.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Program.cs b/Source/Tools/Flax.Build/Program.cs index be9d20470..a1a03d7b9 100644 --- a/Source/Tools/Flax.Build/Program.cs +++ b/Source/Tools/Flax.Build/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Diagnostics; diff --git a/Source/Tools/Flax.Build/ProjectInfo.cs b/Source/Tools/Flax.Build/ProjectInfo.cs index 803f8b5dd..fb90ebe15 100644 --- a/Source/Tools/Flax.Build/ProjectInfo.cs +++ b/Source/Tools/Flax.Build/ProjectInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Build/Projects/IProjectCustomizer.cs b/Source/Tools/Flax.Build/Projects/IProjectCustomizer.cs index 956d09f1b..5bc89205f 100644 --- a/Source/Tools/Flax.Build/Projects/IProjectCustomizer.cs +++ b/Source/Tools/Flax.Build/Projects/IProjectCustomizer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Projects { diff --git a/Source/Tools/Flax.Build/Projects/Project.cs b/Source/Tools/Flax.Build/Projects/Project.cs index c583c96c8..e8945cb7a 100644 --- a/Source/Tools/Flax.Build/Projects/Project.cs +++ b/Source/Tools/Flax.Build/Projects/Project.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using Flax.Build.NativeCpp; diff --git a/Source/Tools/Flax.Build/Projects/ProjectFormat.cs b/Source/Tools/Flax.Build/Projects/ProjectFormat.cs index 2ac3fd1ed..3448f95fb 100644 --- a/Source/Tools/Flax.Build/Projects/ProjectFormat.cs +++ b/Source/Tools/Flax.Build/Projects/ProjectFormat.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Projects { diff --git a/Source/Tools/Flax.Build/Projects/Solution.cs b/Source/Tools/Flax.Build/Projects/Solution.cs index 84b07c301..3b5ed326d 100644 --- a/Source/Tools/Flax.Build/Projects/Solution.cs +++ b/Source/Tools/Flax.Build/Projects/Solution.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Build.Projects { diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/CSProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/CSProjectGenerator.cs index 01807c098..c0fefdedc 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/CSProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/CSProjectGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/IVisualStudioProjectCustomizer.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/IVisualStudioProjectCustomizer.cs index 02a92b47b..c951bb9f7 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/IVisualStudioProjectCustomizer.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/IVisualStudioProjectCustomizer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Text; diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/VCProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/VCProjectGenerator.cs index 54d8eb6df..6ad17de65 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/VCProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/VCProjectGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProject.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProject.cs index 816155f75..505d0a36a 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProject.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProject.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; diff --git a/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProjectGenerator.cs index 35b039db2..79bd5b705 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudio/VisualStudioProjectGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs index b04eb2737..ba03670cd 100644 --- a/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/VisualStudioCode/VisualStudioCodeProjectGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Projects/XCodeProjectGenerator.cs b/Source/Tools/Flax.Build/Projects/XCodeProjectGenerator.cs index fdb9b4012..48ba9c0f0 100644 --- a/Source/Tools/Flax.Build/Projects/XCodeProjectGenerator.cs +++ b/Source/Tools/Flax.Build/Projects/XCodeProjectGenerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Properties/AssemblyInfo.cs b/Source/Tools/Flax.Build/Properties/AssemblyInfo.cs index 48e41e772..b494fa966 100644 --- a/Source/Tools/Flax.Build/Properties/AssemblyInfo.cs +++ b/Source/Tools/Flax.Build/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Reflection; using System.Runtime.InteropServices; @@ -8,7 +8,7 @@ using System.Runtime.InteropServices; [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Wojciech Figat")] [assembly: AssemblyProduct("Flax.Build")] -[assembly: AssemblyCopyright("Copyright © 2012-2022 Wojciech Figat")] +[assembly: AssemblyCopyright("Copyright © 2012-2023 Wojciech Figat")] [assembly: AssemblyTrademark("")] [assembly: AssemblyCulture("")] [assembly: ComVisible(false)] diff --git a/Source/Tools/Flax.Build/Utilities/StringWriterWithEncoding.cs b/Source/Tools/Flax.Build/Utilities/StringWriterWithEncoding.cs index 2797f42aa..e0b4a2bad 100644 --- a/Source/Tools/Flax.Build/Utilities/StringWriterWithEncoding.cs +++ b/Source/Tools/Flax.Build/Utilities/StringWriterWithEncoding.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.IO; using System.Text; diff --git a/Source/Tools/Flax.Build/Utilities/Tokenizer.cs b/Source/Tools/Flax.Build/Utilities/Tokenizer.cs index 8e43cac0b..afc147bf9 100644 --- a/Source/Tools/Flax.Build/Utilities/Tokenizer.cs +++ b/Source/Tools/Flax.Build/Utilities/Tokenizer.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Utilities/TwoWayEnumerator.cs b/Source/Tools/Flax.Build/Utilities/TwoWayEnumerator.cs index a47da86e1..dd9e79cf1 100644 --- a/Source/Tools/Flax.Build/Utilities/TwoWayEnumerator.cs +++ b/Source/Tools/Flax.Build/Utilities/TwoWayEnumerator.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Utilities/Utilities.cs b/Source/Tools/Flax.Build/Utilities/Utilities.cs index a9a97bac0..8c18a3d19 100644 --- a/Source/Tools/Flax.Build/Utilities/Utilities.cs +++ b/Source/Tools/Flax.Build/Utilities/Utilities.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Build/Utilities/WinAPI.cs b/Source/Tools/Flax.Build/Utilities/WinAPI.cs index c4ffcbcf6..f684745b2 100644 --- a/Source/Tools/Flax.Build/Utilities/WinAPI.cs +++ b/Source/Tools/Flax.Build/Utilities/WinAPI.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Runtime.InteropServices; diff --git a/Source/Tools/Flax.Stats/CodeFrame.cs b/Source/Tools/Flax.Stats/CodeFrame.cs index e35a0a62e..0371e4361 100644 --- a/Source/Tools/Flax.Stats/CodeFrame.cs +++ b/Source/Tools/Flax.Stats/CodeFrame.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/Flax.Stats/CodeFrameNode.cs b/Source/Tools/Flax.Stats/CodeFrameNode.cs index 6f053262d..94d248fec 100644 --- a/Source/Tools/Flax.Stats/CodeFrameNode.cs +++ b/Source/Tools/Flax.Stats/CodeFrameNode.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Stats/Flax.Stats.Build.cs b/Source/Tools/Flax.Stats/Flax.Stats.Build.cs index 9028ce71f..3fe141b53 100644 --- a/Source/Tools/Flax.Stats/Flax.Stats.Build.cs +++ b/Source/Tools/Flax.Stats/Flax.Stats.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Tools/Flax.Stats/Languages.cs b/Source/Tools/Flax.Stats/Languages.cs index 5127fffca..9a8471a7e 100644 --- a/Source/Tools/Flax.Stats/Languages.cs +++ b/Source/Tools/Flax.Stats/Languages.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Stats { diff --git a/Source/Tools/Flax.Stats/Program.cs b/Source/Tools/Flax.Stats/Program.cs index 305d64522..719a7bde7 100644 --- a/Source/Tools/Flax.Stats/Program.cs +++ b/Source/Tools/Flax.Stats/Program.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/Flax.Stats/TaskType.cs b/Source/Tools/Flax.Stats/TaskType.cs index d1f5e2842..b2a74ca32 100644 --- a/Source/Tools/Flax.Stats/TaskType.cs +++ b/Source/Tools/Flax.Stats/TaskType.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. namespace Flax.Stats { diff --git a/Source/Tools/Flax.Stats/Tools.cs b/Source/Tools/Flax.Stats/Tools.cs index f1fc8a6d0..e486f2a8d 100644 --- a/Source/Tools/Flax.Stats/Tools.cs +++ b/Source/Tools/Flax.Stats/Tools.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.IO; diff --git a/Source/Tools/FlaxEngine.Tests/CircularBufferTests.cs b/Source/Tools/FlaxEngine.Tests/CircularBufferTests.cs index 67c877d5a..4f0deda1d 100644 --- a/Source/Tools/FlaxEngine.Tests/CircularBufferTests.cs +++ b/Source/Tools/FlaxEngine.Tests/CircularBufferTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections; diff --git a/Source/Tools/FlaxEngine.Tests/FlaxEngine.Tests.Build.cs b/Source/Tools/FlaxEngine.Tests/FlaxEngine.Tests.Build.cs index c9b309592..a4df40935 100644 --- a/Source/Tools/FlaxEngine.Tests/FlaxEngine.Tests.Build.cs +++ b/Source/Tools/FlaxEngine.Tests/FlaxEngine.Tests.Build.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using Flax.Build; diff --git a/Source/Tools/FlaxEngine.Tests/HistoryStackTests.cs b/Source/Tools/FlaxEngine.Tests/HistoryStackTests.cs index 8d67e5199..8f2b35d66 100644 --- a/Source/Tools/FlaxEngine.Tests/HistoryStackTests.cs +++ b/Source/Tools/FlaxEngine.Tests/HistoryStackTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEditor.History; diff --git a/Source/Tools/FlaxEngine.Tests/Properties/AssemblyInfo.cs b/Source/Tools/FlaxEngine.Tests/Properties/AssemblyInfo.cs index bd19c61ff..50dc8479c 100644 --- a/Source/Tools/FlaxEngine.Tests/Properties/AssemblyInfo.cs +++ b/Source/Tools/FlaxEngine.Tests/Properties/AssemblyInfo.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Reflection; using System.Runtime.InteropServices; diff --git a/Source/Tools/FlaxEngine.Tests/TestColor.cs b/Source/Tools/FlaxEngine.Tests/TestColor.cs index eff82c853..e952eb596 100644 --- a/Source/Tools/FlaxEngine.Tests/TestColor.cs +++ b/Source/Tools/FlaxEngine.Tests/TestColor.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestContainerControl.cs b/Source/Tools/FlaxEngine.Tests/TestContainerControl.cs index f40f856cc..bfb479359 100644 --- a/Source/Tools/FlaxEngine.Tests/TestContainerControl.cs +++ b/Source/Tools/FlaxEngine.Tests/TestContainerControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestEditorStates.cs b/Source/Tools/FlaxEngine.Tests/TestEditorStates.cs index 94bbf5949..4236dc45b 100644 --- a/Source/Tools/FlaxEngine.Tests/TestEditorStates.cs +++ b/Source/Tools/FlaxEngine.Tests/TestEditorStates.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.States; using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs b/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs index 5ff507e34..e9aa777cd 100644 --- a/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs +++ b/Source/Tools/FlaxEngine.Tests/TestEditorUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestFloatR10G10B10A2.cs b/Source/Tools/FlaxEngine.Tests/TestFloatR10G10B10A2.cs index e83fc0cd5..f44848e0f 100644 --- a/Source/Tools/FlaxEngine.Tests/TestFloatR10G10B10A2.cs +++ b/Source/Tools/FlaxEngine.Tests/TestFloatR10G10B10A2.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestFloatR11G11B10.cs b/Source/Tools/FlaxEngine.Tests/TestFloatR11G11B10.cs index 3bebc230d..f7761d134 100644 --- a/Source/Tools/FlaxEngine.Tests/TestFloatR11G11B10.cs +++ b/Source/Tools/FlaxEngine.Tests/TestFloatR11G11B10.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestHtmlParser.cs b/Source/Tools/FlaxEngine.Tests/TestHtmlParser.cs index 8ed81478a..147d07a42 100644 --- a/Source/Tools/FlaxEngine.Tests/TestHtmlParser.cs +++ b/Source/Tools/FlaxEngine.Tests/TestHtmlParser.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Collections.Generic; using FlaxEngine.Utilities; diff --git a/Source/Tools/FlaxEngine.Tests/TestPropertyNameUI.cs b/Source/Tools/FlaxEngine.Tests/TestPropertyNameUI.cs index 0b7644190..ef7ecaa41 100644 --- a/Source/Tools/FlaxEngine.Tests/TestPropertyNameUI.cs +++ b/Source/Tools/FlaxEngine.Tests/TestPropertyNameUI.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Utilities; using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestQuaternion.cs b/Source/Tools/FlaxEngine.Tests/TestQuaternion.cs index 02637b0ff..41e784afe 100644 --- a/Source/Tools/FlaxEngine.Tests/TestQuaternion.cs +++ b/Source/Tools/FlaxEngine.Tests/TestQuaternion.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestQueryFilterHelper.cs b/Source/Tools/FlaxEngine.Tests/TestQueryFilterHelper.cs index 35b3353ec..fe5ac15e2 100644 --- a/Source/Tools/FlaxEngine.Tests/TestQueryFilterHelper.cs +++ b/Source/Tools/FlaxEngine.Tests/TestQueryFilterHelper.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEditor.Utilities; using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestSceneGraph.cs b/Source/Tools/FlaxEngine.Tests/TestSceneGraph.cs index dd7c8a851..0484901ce 100644 --- a/Source/Tools/FlaxEngine.Tests/TestSceneGraph.cs +++ b/Source/Tools/FlaxEngine.Tests/TestSceneGraph.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using System.Collections.Generic; diff --git a/Source/Tools/FlaxEngine.Tests/TestSerialization.cs b/Source/Tools/FlaxEngine.Tests/TestSerialization.cs index f3f47534f..3c57c6888 100644 --- a/Source/Tools/FlaxEngine.Tests/TestSerialization.cs +++ b/Source/Tools/FlaxEngine.Tests/TestSerialization.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.Json; diff --git a/Source/Tools/FlaxEngine.Tests/TestStringUtils.cs b/Source/Tools/FlaxEngine.Tests/TestStringUtils.cs index 452dac54a..e423fabc9 100644 --- a/Source/Tools/FlaxEngine.Tests/TestStringUtils.cs +++ b/Source/Tools/FlaxEngine.Tests/TestStringUtils.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/TestSurface.cs b/Source/Tools/FlaxEngine.Tests/TestSurface.cs index fd436e914..ed4e269c8 100644 --- a/Source/Tools/FlaxEngine.Tests/TestSurface.cs +++ b/Source/Tools/FlaxEngine.Tests/TestSurface.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System.Linq; using FlaxEditor.Surface; diff --git a/Source/Tools/FlaxEngine.Tests/TestTransform.cs b/Source/Tools/FlaxEngine.Tests/TestTransform.cs index 55ced982c..b4d20023c 100644 --- a/Source/Tools/FlaxEngine.Tests/TestTransform.cs +++ b/Source/Tools/FlaxEngine.Tests/TestTransform.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using FlaxEngine.Utilities; diff --git a/Source/Tools/FlaxEngine.Tests/TextControl.cs b/Source/Tools/FlaxEngine.Tests/TextControl.cs index fb1b2aa31..144ddd76c 100644 --- a/Source/Tools/FlaxEngine.Tests/TextControl.cs +++ b/Source/Tools/FlaxEngine.Tests/TextControl.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using FlaxEngine.GUI; using NUnit.Framework; diff --git a/Source/Tools/FlaxEngine.Tests/UndoTests.cs b/Source/Tools/FlaxEngine.Tests/UndoTests.cs index 216e5c59f..7e7239f26 100644 --- a/Source/Tools/FlaxEngine.Tests/UndoTests.cs +++ b/Source/Tools/FlaxEngine.Tests/UndoTests.cs @@ -1,4 +1,4 @@ -// Copyright (c) 2012-2022 Wojciech Figat. All rights reserved. +// Copyright (c) 2012-2023 Wojciech Figat. All rights reserved. using System; using NUnit.Framework;