When I try to build for windows (full build) from with in VS Code I get the following errors. I have VS 2019 installed, and this is new behavior.
1>C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\Sources\src\kha\SystemImpl.cpp(852,35): error C2039: 'waitingForLogin': is not a member of 'Kore::System' [C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\New-Project.vcxproj]
1>C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\Sources\src\kha\graphics4\PipelineState.cpp(356,34): error C2039: 'colorAttachmentCount': is not a member of
'Kore::Graphics4::PipelineState' [C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\New-Project.vcxproj]
1>C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\Sources\src\kha\graphics4\PipelineState.cpp(358,29): error C2039: 'colorAttachment': is not a member of 'Kore::Graphics4::PipelineState' [C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\New-Project.vcxproj]
1>C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\Sources\src\kha\graphics4\PipelineState.cpp(361,33): error C2039: 'depthAttachmentBits': is not a member of 'Kore::Graphics4::PipelineState' [C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\New-Project.vcxproj]
1>C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\Sources\src\kha\graphics4\PipelineState.cpp(362,35): error C2039: 'stencilAttachmentBits': is not a member of 'Kore::Graphics4::PipelineState' [C:\Users\Ron\Documents\Kha\Projects\PartTest\build\windows-build\New-Project.vcxproj]
Build time: 0m 6s
Compilation failed.
The terminal process terminated with exit code: 1
Code from Project.hx:
package;
import kha.Framebuffer;
import kha.Color;
import kha.Assets;
import kha.graphics1.Graphics;
class Project
{
public function new()
{
}
public function update():Void
{
}
public function render(frames: Array<Framebuffer>): Void
{
}
}
Thanks for the help,
Ron