Godot Version
Godot 4.2.2
Question
I’m working on a personal project creating a filtering system. I have one main viewport showing a model. I have multiple models, and each model has a csv file that has features. When typing a certain feature in the line edit, it filters down the models with those features. My models are being loaded in a 3d node and that 3d node is a child of a sub viewport in a 2d node.
Right now I’m only showing one model each. I want to have multiple viewports on the side of the main viewport(Almost like little thumbnails) showing the rest of the models with that certain feature.
Is this possible in Godot 4?
Thank you.