vault backup: 2024-10-12 17:19:45

This commit is contained in:
2024-10-12 17:19:46 +08:00
parent ff94ddca61
commit 244c0c52f6
960 changed files with 31348 additions and 10 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;
```