# reload_outdated_references()

OUTDATED(최신 파일 아님) 상태의 레퍼런스만 골라서 다시 로드합니다. v2 신규 메서드입니다.

### 시그니처
```python
api.reload_outdated_references() -> dict
```

### 반환값
```python
{
    "success": bool,
    "message": str,
    "success_count": int,
    "failed_count": int,
    "skipped_count": int,
}
```
OUTDATED 레퍼런스가 없으면 즉시 완료 메시지를 반환합니다.

### 예제
```python
from os_fast_ref.api import FastRefAPI

api = FastRefAPI()
result = api.reload_outdated_references()

print(result['message'])
# e.g. "Reload complete: 2 succeeded, 0 failed, 0 skipped"
```
> **참고:** `reload_all_references()`는 모든 레퍼런스를 대상으로 하고, 이 메서드는 OUTDATED인 것만 골라 리로드합니다. 대형 씬에서 불필요한 재로드를 줄이고 싶을 때 사용합니다.

---