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: 내보낸 속성은 인덱서입니다.
규칙 ID |
GD0105 |
카테고리 |
사용례 |
수정 내용이 중단되거나 중단되지 않음 |
굽기 |
기본적으로 활성화됨 |
es |
원인
인덱서에는 [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에서 무시되어 런타임 오류가 발생합니다.