Layout_Idioms.ts 476 B

12345678910111213141516171819
  1. import { _decorator, Component, Node, Prefab, ScrollView } from 'cc';
  2. import { UI_Idiom } from './UI_Idiom';
  3. import { Container_Manager } from '../../../Scripts/Container_Manager';
  4. const { ccclass, property } = _decorator;
  5. @ccclass('Layout_Idioms')
  6. export class Layout_Idioms extends Component {
  7. @property(Prefab)
  8. idiom_prefab: Prefab;
  9. @property(ScrollView)
  10. scrollView: ScrollView;
  11. @property(Node)
  12. content:Node;
  13. Container:Container_Manager;
  14. }