mirror of
https://github.com/Relintai/pandemonium_engine.git
synced 2024-12-18 18:06:56 +01:00
121 lines
3.1 KiB
XML
121 lines
3.1 KiB
XML
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<class name="ProfileManager" inherits="Object" version="3.5">
|
|
<brief_description>
|
|
Stores, saves, loads per class profile data.
|
|
Should be added as an autoload, or at least is should be in the scene before spawning entities.
|
|
</brief_description>
|
|
<description>
|
|
</description>
|
|
<tutorials>
|
|
</tutorials>
|
|
<methods>
|
|
<method name="_load" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="_save" qualifiers="virtual">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="adds_player_profile">
|
|
<return type="void" />
|
|
<argument index="0" name="profile" type="PlayerProfile" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="clears_player_profiles">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="from_dict">
|
|
<return type="void" />
|
|
<argument index="0" name="dict" type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="getc_player_profile">
|
|
<return type="PlayerProfile" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gets_player_profile_count" qualifiers="const">
|
|
<return type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="gets_player_profile_index">
|
|
<return type="PlayerProfile" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="load">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="load_defaults">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="load_profile">
|
|
<return type="void" />
|
|
<argument index="0" name="name" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="on_keybinds_changed">
|
|
<return type="void" />
|
|
<argument index="0" name="class_path" type="StringName" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="removes_player_profile">
|
|
<return type="void" />
|
|
<argument index="0" name="index" type="int" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="save">
|
|
<return type="void" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="save_profile">
|
|
<return type="void" />
|
|
<argument index="0" name="name" type="String" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
<method name="to_dict" qualifiers="const">
|
|
<return type="Dictionary" />
|
|
<description>
|
|
</description>
|
|
</method>
|
|
</methods>
|
|
<members>
|
|
<member name="automatic_load" type="bool" setter="set_automatic_load" getter="get_automatic_load" default="false">
|
|
</member>
|
|
<member name="automatic_save" type="bool" setter="set_automatic_save" getter="get_automatic_save" default="false">
|
|
</member>
|
|
<member name="set_save_file" type="String" setter="set_save_file" getter="get_save_file" default=""user://profile.save"">
|
|
</member>
|
|
</members>
|
|
<signals>
|
|
<signal name="changed">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
<signal name="keybinds_changed">
|
|
<description>
|
|
</description>
|
|
</signal>
|
|
</signals>
|
|
<constants>
|
|
</constants>
|
|
</class>
|