Attention: Here be dragons
This is the latest
(unstable) version of this documentation, which may document features
not available in or compatible with released stable versions of Godot.
Checking the stable version of the documentation...
GD0105:被匯出的屬性為索引子(indexer)
規則 ID |
GD0105 |
分類 |
用法 |
修正是否會破壞相容性 |
非破壞性 |
預設啟用 |
是 |
原因
索引子被標註為 [Export]。索引子無法被匯出。
規則說明
Godot 不允許匯出索引子屬性。
private int[] _backingField;
// Indexers can't be exported.
[Export]
public int this[int index]
{
get => _backingField[index];
set => _backingField[index] = value;
}
修正方式
要修正此規則的違規情形,請移除 [Export] 屬性。
什麼時候應該忽略警告
請勿忽略此規則的警告。索引子無法被匯出,Godot 會忽略該成員,造成執行階段錯誤。