Smart Assist AI
Stop guessing what belongs in that empty slot. Smart Assist uses intelligent heuristics to suggest the most likely candidates for missing references.
How It Works
When a reference is missing, the Smart Assist engine:
- Analyzes the Variable Name: It reads the variable name (e.g.,
_playerHealth,spawnPoint,explosionSFX). - Nicifies the Text: It converts
m_EnemyTargetto “Enemy Target”. - Searches the Database: It queries the
AssetDatabasefor assets that match this name. - Type Matching: It filters results to ensure you don’t try to assign an Audio Clip to a Transform field (Coming Soon).
Usage
- Click the Suggest button next to a yellow (Warning) issue.
- A context menu will appear with the top 5 matches found in your project.
- Select an option, and the tool will automatically assign it.
[!TIP] Pro Tip: Use clear naming conventions in your code (e.g.,
playerPrefabinstead ofobj). The better your naming, the smarter the suggestions!