mirror of
https://github.com/Relintai/props.git
synced 2025-02-04 16:05:54 +01:00
Removed PropDataEntity.
This commit is contained in:
parent
f9d94ee635
commit
415c49b2b8
1
SCsub
1
SCsub
@ -15,7 +15,6 @@ sources = [
|
|||||||
"register_types.cpp",
|
"register_types.cpp",
|
||||||
|
|
||||||
"props/prop_data.cpp",
|
"props/prop_data.cpp",
|
||||||
"props/prop_data_entry.cpp",
|
|
||||||
"props/prop_data_scene.cpp",
|
"props/prop_data_scene.cpp",
|
||||||
"props/prop_data_light.cpp",
|
"props/prop_data_light.cpp",
|
||||||
"props/prop_data_prop.cpp",
|
"props/prop_data_prop.cpp",
|
||||||
|
@ -10,7 +10,6 @@ def configure(env):
|
|||||||
|
|
||||||
def get_doc_classes():
|
def get_doc_classes():
|
||||||
return [
|
return [
|
||||||
"PropDataEntity",
|
|
||||||
"PropDataEntry",
|
"PropDataEntry",
|
||||||
"PropDataLight",
|
"PropDataLight",
|
||||||
"PropDataProp",
|
"PropDataProp",
|
||||||
|
@ -1,54 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright (c) 2019-2020 Péter Magyar
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#include "prop_data_entity.h"
|
|
||||||
|
|
||||||
int PropDataEntity::get_entity_data_id() const {
|
|
||||||
return _entity_data_id;
|
|
||||||
}
|
|
||||||
void PropDataEntity::set_entity_data_id(const int value) {
|
|
||||||
_entity_data_id = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
int PropDataEntity::get_level() const {
|
|
||||||
return _level;
|
|
||||||
}
|
|
||||||
void PropDataEntity::set_level(const int value) {
|
|
||||||
_level = value;
|
|
||||||
}
|
|
||||||
|
|
||||||
PropDataEntity::PropDataEntity() {
|
|
||||||
_entity_data_id = 0;
|
|
||||||
_level = 1;
|
|
||||||
}
|
|
||||||
PropDataEntity::~PropDataEntity() {
|
|
||||||
}
|
|
||||||
|
|
||||||
void PropDataEntity::_bind_methods() {
|
|
||||||
ClassDB::bind_method(D_METHOD("get_entity_data_id"), &PropDataEntity::get_entity_data_id);
|
|
||||||
ClassDB::bind_method(D_METHOD("set_entity_data_id", "value"), &PropDataEntity::set_entity_data_id);
|
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "entity_data_id"), "set_entity_data_id", "get_entity_data_id");
|
|
||||||
|
|
||||||
ClassDB::bind_method(D_METHOD("get_level"), &PropDataEntity::get_level);
|
|
||||||
ClassDB::bind_method(D_METHOD("set_level", "value"), &PropDataEntity::set_level);
|
|
||||||
ADD_PROPERTY(PropertyInfo(Variant::INT, "level"), "set_level", "get_level");
|
|
||||||
}
|
|
@ -1,49 +0,0 @@
|
|||||||
/*
|
|
||||||
Copyright (c) 2019-2020 Péter Magyar
|
|
||||||
|
|
||||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
||||||
of this software and associated documentation files (the "Software"), to deal
|
|
||||||
in the Software without restriction, including without limitation the rights
|
|
||||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
||||||
copies of the Software, and to permit persons to whom the Software is
|
|
||||||
furnished to do so, subject to the following conditions:
|
|
||||||
|
|
||||||
The above copyright notice and this permission notice shall be included in all
|
|
||||||
copies or substantial portions of the Software.
|
|
||||||
|
|
||||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
||||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
||||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
||||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
||||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
||||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
||||||
SOFTWARE.
|
|
||||||
*/
|
|
||||||
|
|
||||||
#ifndef PROP_DATA_ENTITY_H
|
|
||||||
#define PROP_DATA_ENTITY_H
|
|
||||||
|
|
||||||
#include "prop_data_entry.h"
|
|
||||||
|
|
||||||
class PropDataEntity : public PropDataEntry {
|
|
||||||
GDCLASS(PropDataEntity, PropDataEntry);
|
|
||||||
|
|
||||||
public:
|
|
||||||
int get_entity_data_id() const;
|
|
||||||
void set_entity_data_id(const int value);
|
|
||||||
|
|
||||||
int get_level() const;
|
|
||||||
void set_level(const int value);
|
|
||||||
|
|
||||||
PropDataEntity();
|
|
||||||
~PropDataEntity();
|
|
||||||
|
|
||||||
protected:
|
|
||||||
static void _bind_methods();
|
|
||||||
|
|
||||||
private:
|
|
||||||
int _level;
|
|
||||||
int _entity_data_id;
|
|
||||||
};
|
|
||||||
|
|
||||||
#endif
|
|
@ -23,7 +23,6 @@ SOFTWARE.
|
|||||||
#include "register_types.h"
|
#include "register_types.h"
|
||||||
|
|
||||||
#include "props/prop_data.h"
|
#include "props/prop_data.h"
|
||||||
#include "props/prop_data_entity.h"
|
|
||||||
#include "props/prop_data_entry.h"
|
#include "props/prop_data_entry.h"
|
||||||
#include "props/prop_data_light.h"
|
#include "props/prop_data_light.h"
|
||||||
#include "props/prop_data_prop.h"
|
#include "props/prop_data_prop.h"
|
||||||
@ -52,7 +51,6 @@ void register_props_types() {
|
|||||||
ClassDB::register_class<PropDataScene>();
|
ClassDB::register_class<PropDataScene>();
|
||||||
ClassDB::register_class<PropDataLight>();
|
ClassDB::register_class<PropDataLight>();
|
||||||
ClassDB::register_class<PropDataProp>();
|
ClassDB::register_class<PropDataProp>();
|
||||||
ClassDB::register_class<PropDataEntity>();
|
|
||||||
|
|
||||||
ClassDB::register_class<GroundClutter>();
|
ClassDB::register_class<GroundClutter>();
|
||||||
ClassDB::register_class<GroundClutterFoliage>();
|
ClassDB::register_class<GroundClutterFoliage>();
|
||||||
|
Loading…
Reference in New Issue
Block a user