Skip to content

Commit

Permalink
expose all blueprint variables
Browse files Browse the repository at this point in the history
  • Loading branch information
Roberto De Ioris committed Jan 4, 2018
1 parent 400a204 commit e8d3be4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Plugins/MaRLEnE/Source/MaRLEnE/Private/MLObserver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,8 @@ ECheckBoxState FMLObservedPropertyDetails::GetSelectedPropEnabled() const
bool FMLObservedPropertyDetails::ObservableProp(UProperty *Prop)
{



if (Prop->GetName() == "RelativeLocation")
{

Expand Down Expand Up @@ -106,6 +108,11 @@ bool FMLObservedPropertyDetails::ObservableProp(UProperty *Prop)
}
}

if (!Prop->HasAllPropertyFlags(CPF_DisableEditOnInstance))
{
return true;
}

/*
if (UArrayProperty *PArray = Cast<UArrayProperty>(Prop))
{
Expand Down

0 comments on commit e8d3be4

Please sign in to comment.