Added Cutout to doorwall to test door opening

This commit is contained in:
MARCEL HARA 2023-11-20 14:58:09 +00:00
parent bbcf052b04
commit 14c1874c53
6 changed files with 21 additions and 5 deletions

View File

@ -1,3 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:185519beac036cd87f1e6c3eca083f0f4e369c2370400598ad8547cda299b5c8
size 42979
oid sha256:e2f1074b45a94221f63a446c72d393090ed47a8c08ea3f146768e03595937c21
size 43976

Binary file not shown.

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:162297ec59b7e47b42f34b19c64b0cbca86fcf80168764e5047cc45910cfe7da
size 4366

View File

@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:bc292d8f45c5187522d0333e3854a43a00a1ae233a8eedc97cdfc032f925c0ce
size 5476

View File

@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:72dff7deac9313b375261db497609576184aff35f38e491dcc72a3d264d0d5a4
size 5148

View File

@ -29,6 +29,16 @@ void ADoorClass::Interact()
{
if (!IsValid(this)) return;
GLog->Log("Door has been interacted");
bool bIsDoorOpen = false;
if (!bIsDoorOpen)
{
bIsDoorOpen = true;
}
else
{
bIsDoorOpen = false;
}
}
void ADoorClass::InteractPrompt()