| name | parity-checker |
| description | Ensure API parity between GDScript and C#. Use when adding new methods, signals, or features to the plugin bridge to verify that Mono users have identical functionality. |
👯 AdMob API Parity Checker
Ensure that GDScript and C# implementations remain synchronized and consistent.
⚖️ The Parity Standard
1. Method Naming
- GDScript:
snake_case (e.g., load_ad)
- C#:
PascalCase (e.g., LoadAd)
- Note: Internal
_plugin.Call("method_name") must always use the EXACT string defined in the native bridge (usually snake_case).
2. Implementation Check
For every new feature in admob.gd:
3. Sample Sync
🛠️ Verification Command
- Run
grep -r "_get_plugin" . and grep -r "GetPlugin" . to compare list of initialized modules.