Exemple #1
0
 public QMenuItem(string title, MenuItemArguments mia)
     : base(title) {
     if(mia != null) {
         path = mia.Path;
         this.mia = mia;
         menuTarget = mia.Target;
         menuGenre = mia.Genre;
     }
 }
Exemple #2
0
 public QMenuItem(string title, QTTabBarLib.MenuItemArguments mia)
     : base(title) {
     if(mia != null) {
         this.path = mia.Path;
         this.mia = mia;
         this.menuTarget = mia.Target;
         this.menuGenre = mia.Genre;
     }
 }
Exemple #3
0
 public QMenuItem(string title, MenuItemArguments mia)
     : base(title)
 {
     if (mia != null)
     {
         path       = mia.Path;
         this.mia   = mia;
         menuTarget = mia.Target;
         menuGenre  = mia.Genre;
     }
 }
Exemple #4
0
 public QMenuItem(string title, QTTabBarLib.MenuItemArguments mia)
     : base(title)
 {
     if (mia != null)
     {
         this.path       = mia.Path;
         this.mia        = mia;
         this.menuTarget = mia.Target;
         this.menuGenre  = mia.Genre;
     }
 }
    private void Awake()
    {
        if (menu == null || target == null)
        {
            return;
        }

        if (popMenuClick)
        {
            MenuTarget mt = target.AddComponent <MenuTarget>();
            mt.ms = this;
        }
    }
 public MenuItemArguments(string path, MenuTarget target, MenuGenre genre) {
     Path = path;
     Genre = genre;
     Target = target;
 }
Exemple #7
0
 public QMenuItem(string title, MenuTarget menuTarget, MenuGenre menuGenre)
     : base(title) {
     this.menuTarget = menuTarget;
     this.menuGenre = menuGenre;
 }
 public MenuItemArguments(string path, MenuTarget target, MenuGenre genre)
 {
     Path   = path;
     Genre  = genre;
     Target = target;
 }
 public MenuItemArguments(string path, MenuTarget target, MenuGenre genre) {
     this.Path = path;
     this.Genre = genre;
     this.Target = target;
 }
Exemple #10
0
 public MenuItemArguments(string path, MenuTarget target, MenuGenre genre)
 {
     this.Path   = path;
     this.Genre  = genre;
     this.Target = target;
 }
Exemple #11
0
 public QMenuItem(string title, MenuTarget menuTarget, MenuGenre menuGenre)
     : base(title)
 {
     this.menuTarget = menuTarget;
     this.menuGenre  = menuGenre;
 }