This commit is contained in:
2025-08-02 12:09:34 +08:00
commit e70b01cdca
2785 changed files with 575579 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
# FullyExpand
- **使用位置:** UPROPERTY
- **元数据类型:** bool
- **关联项:** [ShowInnerProperties](ShowInnerProperties/ShowInnerProperties.md)
但是没有发现该Meta被使用的原理代码。
在源码中搜索发现有多处应用,但实际上没有原理代码。
```cpp
/** The options that are available on the node. */
UPROPERTY(EditAnywhere, Instanced, Category = "Options", meta=(ShowInnerProperties, FullyExpand="true"))
TObjectPtr<UMovieGraphValueContainer> SelectOptions;
/** The currently selected option. */
UPROPERTY(EditAnywhere, Instanced, Category = "Options", meta=(ShowInnerProperties, FullyExpand="true"))
TObjectPtr<UMovieGraphValueContainer> SelectedOption;
```