- Home /
Would this be possible to do with unity
I am about to begin making a game. It will be online in the future but for now I was wondering. Would it be possible for me to make a program with microsoft visual C# express that basicly works as a database. A never ending list, a player makes an account in the game, the game calls upon the program made with MS express, adds the players info. The player tries to login to the game, calls upon the program and retrieves the information. Basicly importing/exporting data between unity and the program.
Would this type of system work?
Answer by Nidre · Apr 15, 2013 at 05:54 AM
Well it can work.You can Export data with JSON from your C# app and then you can read this file from Unity(or contrary) side with miniJSON or something similar.
We have created a game that was working in a similar way with php and Unity working together.
Oh okay. I tried something with php but I couldn't find a free website service that supported php uploads to the server.
Free ones usually have a lot for restrictions.What i was doing was creating a JSON of the current status of the objects in server then reading int in Unity and compare results to understand if the user cheated or not.
Your answer
Follow this Question
Related Questions
Loading data from a txt file - C# 3 Answers
Trouble creating a text file 4 Answers
Saving/Loading Vertices Efficiently 2 Answers
Find SceneIndex out C# 1 Answer
Serialization/Deserialization Problems 0 Answers