Jump to content

[HELP!] Read CFG files?


Recommended Posts

I wanna import data from a config file and have it instanced as a class object, but I don't know how.

 

C# Code:

public class MyClass
{
	public int MyInt;
	public bool MyBool;
}

var myClass = iDontKnowHow<MyClass>.ReadFromConfigFile(fileName);

 

CFG File:

MYCLASS {
	MyBool = false
	MyInt = 1337
}
Link to comment
Share on other sites

  1. Have MyClass inherit from MonoBehaviour
  2. Apply the [Persistent] attribute to the properties you want to have set
  3. Call ConfigNode.Load to get a ConfigNode object from the file path
  4. Call ConfigNode.LoadObjectFromConfig to set that object's properties to your object

Example:

Edited by HebaruSan
Use pre-Websterian spelling
Link to comment
Share on other sites

This thread is quite old. Please consider starting a new thread rather than reviving this one.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...