mirror of
https://github.com/Relintai/voxelman.git
synced 2025-01-25 15:09:18 +01:00
Moved PropVoxelmanLight here from the props module, and renamed it VoxelmanLight.
This commit is contained in:
parent
be4876c2f1
commit
7bd5592d2e
1
SCsub
1
SCsub
@ -22,6 +22,7 @@ sources = [
|
|||||||
"library/voxelman_library.cpp",
|
"library/voxelman_library.cpp",
|
||||||
"library/voxelman_library_simple.cpp",
|
"library/voxelman_library_simple.cpp",
|
||||||
|
|
||||||
|
"nodes/voxelman_light.cpp",
|
||||||
|
|
||||||
"library/voxel_surface.cpp",
|
"library/voxel_surface.cpp",
|
||||||
"library/voxel_surface_simple.cpp",
|
"library/voxel_surface_simple.cpp",
|
||||||
|
@ -13,6 +13,7 @@ def get_doc_classes():
|
|||||||
"WorldArea",
|
"WorldArea",
|
||||||
|
|
||||||
"VoxelLight",
|
"VoxelLight",
|
||||||
|
"VoxelmanLight",
|
||||||
|
|
||||||
"VoxelmanLevelGenerator",
|
"VoxelmanLevelGenerator",
|
||||||
"VoxelmanLevelGeneratorFlat",
|
"VoxelmanLevelGeneratorFlat",
|
||||||
|
9
nodes/voxelman_light.cpp
Normal file
9
nodes/voxelman_light.cpp
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#include "voxelman_light.h"
|
||||||
|
|
||||||
|
VoxelmanLight::VoxelmanLight() {
|
||||||
|
}
|
||||||
|
VoxelmanLight::~VoxelmanLight() {
|
||||||
|
}
|
||||||
|
|
||||||
|
void VoxelmanLight::_bind_methods() {
|
||||||
|
}
|
54
nodes/voxelman_light.h
Normal file
54
nodes/voxelman_light.h
Normal file
@ -0,0 +1,54 @@
|
|||||||
|
/*
|
||||||
|
Copyright (c) 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 VOXELMAN_LIGHT_H
|
||||||
|
#define VOXELMAN_LIGHT_H
|
||||||
|
|
||||||
|
#include "core/version.h"
|
||||||
|
|
||||||
|
#if VERSION_MAJOR < 4
|
||||||
|
#include "scene/3d/spatial.h"
|
||||||
|
#else
|
||||||
|
#include "scene/3d/node_3d.h"
|
||||||
|
|
||||||
|
#define Spatial Node3D
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include "core/math/vector3.h"
|
||||||
|
|
||||||
|
class VoxelmanLight : public Spatial {
|
||||||
|
GDCLASS(VoxelmanLight, Spatial);
|
||||||
|
OBJ_CATEGORY("Props");
|
||||||
|
|
||||||
|
public:
|
||||||
|
//make it turn into a normal light if voxelman isn't present?
|
||||||
|
|
||||||
|
VoxelmanLight();
|
||||||
|
~VoxelmanLight();
|
||||||
|
|
||||||
|
protected:
|
||||||
|
static void _bind_methods();
|
||||||
|
|
||||||
|
private:
|
||||||
|
};
|
||||||
|
|
||||||
|
#endif
|
@ -71,6 +71,8 @@ SOFTWARE.
|
|||||||
#include "world/marching_cubes/voxel_chunk_marching_cubes.h"
|
#include "world/marching_cubes/voxel_chunk_marching_cubes.h"
|
||||||
#include "world/marching_cubes/voxel_world_marching_cubes.h"
|
#include "world/marching_cubes/voxel_world_marching_cubes.h"
|
||||||
|
|
||||||
|
#include "nodes/voxelman_light.h"
|
||||||
|
|
||||||
void register_voxelman_types() {
|
void register_voxelman_types() {
|
||||||
ClassDB::register_class<VoxelMesher>();
|
ClassDB::register_class<VoxelMesher>();
|
||||||
ClassDB::register_class<VoxelMesherDefault>();
|
ClassDB::register_class<VoxelMesherDefault>();
|
||||||
@ -90,6 +92,7 @@ void register_voxelman_types() {
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
ClassDB::register_class<VoxelLight>();
|
ClassDB::register_class<VoxelLight>();
|
||||||
|
ClassDB::register_class<VoxelmanLight>();
|
||||||
|
|
||||||
ClassDB::register_class<VoxelWorld>();
|
ClassDB::register_class<VoxelWorld>();
|
||||||
ClassDB::register_class<VoxelChunk>();
|
ClassDB::register_class<VoxelChunk>();
|
||||||
|
Loading…
Reference in New Issue
Block a user