LEAP Documentation 40220
Documentation for the LEAP project
BISSkeletalMeshComponent.h
Go to the documentation of this file.
1// Copyright Blue Isle Studios Inc 2021. All Rights Reserved.
2
3#pragma once
4
5#include "CoreMinimal.h"
6#include "SkeletalMeshComponentBudgeted.h"
7#include "BISSkeletalMeshComponent.generated.h"
8
9UCLASS()
10class PROJECTX_API UBISSkeletalMeshComponent : public USkeletalMeshComponentBudgeted
11{
12 GENERATED_BODY()
13
14public:
15 virtual void BeginPlay() override;
16 virtual void EndPlay(EEndPlayReason::Type EndplayReason) override;
17
18 virtual void UnRegister();
19 virtual void Register();
20
21 UFUNCTION()
22 virtual void MenuToggled(class UAdvancedUserWidget* Widget, bool bToggle);
23protected:
24 UPROPERTY(EditDefaultsOnly)
25 bool bDisableTickOnDeploy = true;
26};
Definition: AdvancedUserWidget.h:30
Definition: BISSkeletalMeshComponent.h:11