Skip to main content

Node Reference

NameParametersDescription
Open Config FileIN: String for relative or absolute path to config file. Boolean indicating if path is relative/absolute. OUT: Configuration File object for getting/setting parameters. FileOpen enum indicating the permission level (ReadWrite, ReadOnly, NoPermissions)“Opens” up a configuration file (does all the permission checking and creates a file if needed; Actual open/read done by get/set parameter nodes)
Get Input.ini LocationIN: Boolean indicating if you want the absolute or relative path. OUT: Relative/absolute path to the Input.ini configuration fileReturns the relative or absolute path of the Input.ini configuration file.
Get Scalability.ini LocationIN: Boolean indicating if you want the absolute or relative path. OUT: Relative/absolute path to the Scalability.ini configuration file.Returns the relative or absolute path of the Scalability.ini configuration file.
Get Game.ini LocationIN: Boolean indicating if you want the absolute or relative path. OUT: Relative/absolute path to the Game.ini configuration file.Returns the relative or absolute path of the Game.ini configuration file.
Get GameUserSettings.ini LocationIN: Boolean indicating if you want the absolute or relative path. OUT: Relative/absolute path to the GameUserSettings.ini configuration file.Returns the relative or absolute path of the GameUserSettings.ini configuration file.
Get Engine.ini LocationIN: Boolean indicating if you want the absolute or relative path. OUT: Relative/absolute path to the Engine.ini configuration file.Returns the relative or absolute path of the Engine.ini configuration file.
Get Parameter As A VectorIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a vector OUT: Boolean indicating whether or not the read was successful. The vector value read from the configuration file (set to (0, 0, 0) if read wasn't successful).Attempts to read a vector from a configuration file. Please allow for (float) imprecision that can occur while serializing to a string and storing it in a file)
Get Parameter As An IntegerIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as an integer OUT: Boolean indicating whether or not the read was successful. The integer value read from the configuration file (set to 0 if read wasn’’t successful)Attempts to read an integer from a configuration file.
Get Parameter As A FloatIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a float OUT: Boolean indicating whether or not the read was successful. The floating point value read from the configuration file (set to 0.0 if the read was successful).Attempts to read a floating point value from a configuration file.
Get Parameter As A DoubleIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a double. OUT: Boolean indicating whether or not the read was successful. The read double precision number converted to a float for use in blueprints.Attempts to read a double precision float from a configuration file. Converts this double to a float due to lack of blueprint support for doubles.
Get Parameter As TextIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as text. OUT: Boolean indicating whether or not the read was successful.Attempts to read a unicode text value from the configuration file.
Get Parameter As A StringIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a string. OUT: Boolean indicating whether or not the read was successful. The string it read from the configuration file (set to “” if the read was unsuccessful)Attempts to read a string from the configuration file. Please keep in mind that strings don’t support all characters, if this is required please use “Get Parameter As Text”.
Get Parameter As A ColorIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a color. OUT: Boolean indicating whether or not the read was successful. The color read from the file (set to (0, 0, 0) AKA black if the read was unsuccessful.Attempts to read a color from the configuration file.
Get Parameter As A BooleanIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a boolean. OUT: Boolean indicating whether or not the read was successful. The boolean value read from the configuration file (set to false if the read was unsuccessful)Attempts to read a boolean from the configuration file.
Get Parameter As A 2D VectorIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a 2D vector. OUT: Boolean indicating whether or not the read was successful. The 2D Vector read from the configuration file (set to (0, 0) if the read was unsuccessful)Attempts to read a 2D vector from the configuration file. See “Read Parameter As A Vector” for reading a 3D Vector.
Get Parameter As A TransformIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a transform. OUT: Boolean indicating whether or not the read was successful. The transform read from the configuration file (set to 0’s for scale, transform & rotation if the read was unsuccessful)Attempts to read a transform from the configuration file. Get’s stored as “key_R” for rotation, “key_T” for transform & “key_S” for scale. Please allow any float imprecision that may occur.
Get Parameter As A RotatorIN: FileObject created by opening a configuration file. Section string indicating the section to read from. Key string indicating the key to read as a rotator. OUT: Boolean indicating whether or not the read was successful. The rotator read from the configuration file (set to (0, 0, 0) if the read was unsuccessful)Attempts to read a rotator from the configuration file. Please allow for any float imprecision that may occur during serialization.