Posts by Bits of Bytes • 67 points
7 posts
-
1
votes2
answers1187
viewsA: What is the purpose of the Assets directory?
It stores everything you want to put inside the game, like: I downloaded a 3D house for my game, so to make Unity recognize this object, you have to put it inside that folder and everything you…
-
0
votes1
answer1243
viewsQ: Java Webview how to use
How do I use the webview when I use: public void site(){ WebView browser = new WebView(); WebEngine webEngine = browser.getEngine(); webEngine.load("http://mySite.com"); } I have the error:…
-
1
votes1
answer182
viewsQ: String for Array/List
I got the following String: [{"Monstro":"Lobo","HP":100,"Level":2},{"Level":"1","HP":"100","Monstro":"Bruxa"}] And I need to put her inside a Array ou List to take the values of each monster. How do…
-
2
votes1
answer144
viewsQ: jsonarray adding and overwriting
I’m creating a game and I’m in the monster part and I need a json file to save the monsters but when I create a new monster it writes on top of what already exists as I arrange to just add a new…
-
-2
votes1
answer145
viewsQ: Java and JSON API
I wonder if anyone knows a good API and tutorials to create, edit, write and read JSON files in Java. I’ve been researching for some time and so far I haven’t found.
-
1
votes1
answer661
viewsQ: Close window by clicking Jbutton
It is possible by clicking a button and the JFrame be closed as if you had clicked on the window X? If possible, how do I create it? From what I’ve studied is using ActionListener but I can’t find…
-
1
votes1
answer108
viewsQ: Apache poi Spreadsheet
My code when generating a spreadsheet inside an excel file it erases all the others, as I do for it to create the spreadsheet in 2° without it deleting the others? My code: import java.io.*; import…