Skip to main content

f8-editor-componentbind-workflow

Use when working with ComponentBind editor tools — auto-generating component reference code from UI hierarchies in F8Framework.

الانتقال إلى التثبيت

معلومات المصدر

المستودع
TippingGame/F8Framework
آخر نشاط في المصدر
١ أبريل ٢٠٢٦ في ١١:٠٠
لغة SKILL.md المكتشفة
الإنجليزية
النجوم
٨٨٤
التفرعات
١٤١

خيارات التثبيت

يُحدَّد Prompt الذي يراجع المصدر أولًا بشكل افتراضي. يمكنك التبديل إلى أمر مباشر أو تنزيل نسخة محلية.

مراجعة ملفات المصدر

اقرأ SKILL.md وأي ملفات مرافقة يعرضها SkillsMP قبل أن تقرر التثبيت.

مستكشف الملفات
2 ملفات

عرض SKILL.md

SKILL.md
تعليمات المصدر · معاينة للقراءة فقط
name
f8-editor-componentbind-workflow
description
Use when working with ComponentBind editor tools — auto-generating component reference code from UI hierarchies in F8Framework.
# ComponentBind Editor Workflow ## Use this skill when - The task involves auto-binding UI component references in code. - The user asks about component naming conventions for auto-generation. - Troubleshooting null component references or binding code issues. ## Path resolution 1. Editor code: Assets/F8Framework/Editor/ComponentBind 2. Runtime config: Assets/F8Framework/Runtime/ComponentBind/DefaultCodeBindNameTypeConfig.cs ## Sources of truth - Runtime module: Assets/F8Framework/Runtime/ComponentBind - Editor module: Assets/F8Framework/Editor/ComponentBind ## Naming conventions Component references are auto-generated based on child GameObject naming: | Format | Example | Generated Field | |--------|---------|----------------| | `SimpleName_ComponentType` | `Title_Text` | `Text Title_Text` | | `Name_ComboType` | `Btn_Button_Image` | `Button Btn_Button; Image Btn_Image` | | `Name_Type[index]` | `Item_Image[0]` | Array of Image components | ### Rules - Only allows: letters, digits, underscores, and Chinese characters - First character cannot be a digit - Final format: `SimplifiedName_ComponentType` - Combo types separated by underscore: `Button_Image` - Arrays supported: `Image[0]`, `Image[1]` - May need to click generate button twice ## Workflow 1. Create UI hierarchy with properly named child GameObjects. 2. Attach BaseView script to root GameObject. 3. Click the component bind generation button in Inspector. 4. Generated code appears between auto-generated markers in BaseView. 5. Add new type mappings in `DefaultCodeBindNameTypeConfig.cs` if needed. ## Common error handling | Error | Cause | Solution | |-------|-------|----------| | Field not generated | Naming convention wrong | Check name format: `Name_Type` | | Null reference at runtime | Hierarchy changed after generation | Regenerate bindings | | Custom type not recognized | Not in DefaultCodeBindNameTypeConfig | Add type mapping | ## Cross-module dependencies - **UI**: Works with BaseView UI panel system. ## Output checklist - Child objects named with correct convention. - Binding code generated. - References validated at runtime.
عرض على GitHub