- Joined
- Jul 22, 2018
- Messages
- 183
- Reaction score
- 37
- First Language
- Italian
- Primarily Uses
- RMMV
hello, someone could direct me trough the creation of a list with row and column where I can move freely with mouse and keyboard?
I do not want the plugin, nor the complete script code, I want to learn.
just suggest right approach
this serve as a card album with card icons and #number of cards, at selection this show the card details.
this is the base card list approach( part of the original script made by raizen, triple triad)
// Function : initialize_cardList_windows - initiates the card list Window
scene_album_TT.prototype.initialize_cardList_windows = function () {
this._cardListWindow = new Window_TripleTriad_CardList(0, 0, 800, Graphics.height);
for (var n = 0; n < this.card_list.length; n++)
this._cardListWindow.setHandler(JSON.parse(this.card_list[n])['Name'], this.addCard.bind(this));
this.addWindow(this._cardListWindow);
if (!this.use_window)
this._cardListWindow.opacity = 255;
I do not want the plugin, nor the complete script code, I want to learn.
just suggest right approach
this serve as a card album with card icons and #number of cards, at selection this show the card details.
this is the base card list approach( part of the original script made by raizen, triple triad)
// Function : initialize_cardList_windows - initiates the card list Window
scene_album_TT.prototype.initialize_cardList_windows = function () {
this._cardListWindow = new Window_TripleTriad_CardList(0, 0, 800, Graphics.height);
for (var n = 0; n < this.card_list.length; n++)
this._cardListWindow.setHandler(JSON.parse(this.card_list[n])['Name'], this.addCard.bind(this));
this.addWindow(this._cardListWindow);
if (!this.use_window)
this._cardListWindow.opacity = 255;


