#include "voxelman_library.h" Ref VoxelmanLibrary::get_material() const { return _material; } void VoxelmanLibrary::set_material(Ref mat) { _material = mat; } Ref VoxelmanLibrary::get_prop_material() const { return _prop_material; } void VoxelmanLibrary::set_prop_material(Ref mat) { _prop_material = mat; } Ref VoxelmanLibrary::get_liquid_material() const { return _liquid_material; } void VoxelmanLibrary::set_liquid_material(Ref mat) { _liquid_material = mat; } Ref VoxelmanLibrary::get_clutter_material() const { return _clutter_material; } void VoxelmanLibrary::set_clutter_material(Ref mat) { _clutter_material = mat; } //Surfaces Ref VoxelmanLibrary::get_voxel_surface(int index) const { return Ref(); } void VoxelmanLibrary::add_voxel_surface(Ref value) { } void VoxelmanLibrary::set_voxel_surface(int index, Ref value) { } void VoxelmanLibrary::remove_surface(int index) { } int VoxelmanLibrary::get_num_surfaces() { return 0; } void VoxelmanLibrary::clear_surfaces() { } //Liquids Ref VoxelmanLibrary::get_liquid_voxel_surface(int index) const { return Ref(); } void VoxelmanLibrary::add_liquid_voxel_surface(Ref value) { } void VoxelmanLibrary::set_liquid_voxel_surface(int index, Ref value) { } void VoxelmanLibrary::remove_liquid_surface(int index) { } int VoxelmanLibrary::get_liquid_num_surfaces() { return 0; } void VoxelmanLibrary::clear_liquid_surfaces() { } //Rects void VoxelmanLibrary::refresh_rects() { } VoxelmanLibrary::VoxelmanLibrary() { } VoxelmanLibrary::~VoxelmanLibrary() { _material.unref(); _prop_material.unref(); _liquid_material.unref(); _clutter_material.unref(); } void VoxelmanLibrary::_bind_methods() { ClassDB::bind_method(D_METHOD("get_material"), &VoxelmanLibrary::get_material); ClassDB::bind_method(D_METHOD("set_material", "value"), &VoxelmanLibrary::set_material); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "material", PROPERTY_HINT_RESOURCE_TYPE, "Material"), "set_material", "get_material"); ClassDB::bind_method(D_METHOD("get_prop_material"), &VoxelmanLibrary::get_prop_material); ClassDB::bind_method(D_METHOD("set_prop_material", "value"), &VoxelmanLibrary::set_prop_material); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "prop_material", PROPERTY_HINT_RESOURCE_TYPE, "Material"), "set_prop_material", "get_prop_material"); ClassDB::bind_method(D_METHOD("get_liquid_material"), &VoxelmanLibrary::get_liquid_material); ClassDB::bind_method(D_METHOD("set_liquid_material", "value"), &VoxelmanLibrary::set_liquid_material); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "liquid_material", PROPERTY_HINT_RESOURCE_TYPE, "Material"), "set_liquid_material", "get_liquid_material"); ClassDB::bind_method(D_METHOD("get_clutter_material"), &VoxelmanLibrary::get_clutter_material); ClassDB::bind_method(D_METHOD("set_clutter_material", "value"), &VoxelmanLibrary::set_clutter_material); ADD_PROPERTY(PropertyInfo(Variant::OBJECT, "clutter_material", PROPERTY_HINT_RESOURCE_TYPE, "Material"), "set_clutter_material", "get_clutter_material"); ClassDB::bind_method(D_METHOD("get_voxel_surface", "index"), &VoxelmanLibrary::get_voxel_surface); ClassDB::bind_method(D_METHOD("set_voxel_surface", "index", "surface"), &VoxelmanLibrary::set_voxel_surface); ClassDB::bind_method(D_METHOD("remove_surface", "index"), &VoxelmanLibrary::remove_surface); ClassDB::bind_method(D_METHOD("get_num_surfaces"), &VoxelmanLibrary::get_num_surfaces); ClassDB::bind_method(D_METHOD("clear_surfaces"), &VoxelmanLibrary::clear_surfaces); ClassDB::bind_method(D_METHOD("get_liquid_voxel_surface", "index"), &VoxelmanLibrary::get_liquid_voxel_surface); ClassDB::bind_method(D_METHOD("set_liquid_voxel_surface", "index", "surface"), &VoxelmanLibrary::set_liquid_voxel_surface); ClassDB::bind_method(D_METHOD("remove_liquid_surface", "index"), &VoxelmanLibrary::remove_liquid_surface); ClassDB::bind_method(D_METHOD("get_liquid_num_surfaces"), &VoxelmanLibrary::get_liquid_num_surfaces); ClassDB::bind_method(D_METHOD("clear_liquid_surfaces"), &VoxelmanLibrary::clear_liquid_surfaces); ClassDB::bind_method(D_METHOD("refresh_rects"), &VoxelmanLibrary::refresh_rects); }