mirror of
https://github.com/godotengine/godot.git
synced 2024-11-27 09:16:35 +08:00
1bea8e1eac
-Added LocalVector (needed it) -Added stb_rect_pack (It's pretty cool, we could probably use it for other stuff too) -Fixes and changes all around the place -Added library for 128 bits fixed point (required for Delaunay3D)
13 lines
209 B
C++
13 lines
209 B
C++
#ifndef LIGHTMAP_PROBE_H
|
|
#define LIGHTMAP_PROBE_H
|
|
|
|
#include "scene/3d/node_3d.h"
|
|
|
|
class LightmapProbe : public Node3D {
|
|
GDCLASS(LightmapProbe, Node3D)
|
|
public:
|
|
LightmapProbe();
|
|
};
|
|
|
|
#endif // LIGHTMAP_PROBE_H
|