Skip to content

Instantly share code, notes, and snippets.

View cgerchenhp's full-sized avatar

ChenHP cgerchenhp

View GitHub Profile
@cgerchenhp
cgerchenhp / USomeBPLib.cpp
Created September 19, 2022 15:29
Apply color to nested array property rows. BlueprintCallable / Python Version
void RecursivelyFindChildrenWidgetsOfType(TSharedPtr<SWidget> Widget, FString WidgetType, TArray<TSharedPtr<SWidget>>& OutFindedChildrenWidgets)
{
if (!Widget.IsValid())
{
return;
}
FChildren* Children = Widget->GetChildren();
if (Children)
{