Add Capsule collider

This commit is contained in:
2023-03-29 20:57:01 -07:00
parent 2e708bcc1d
commit 033a8864c1
3 changed files with 44 additions and 0 deletions

View File

@ -8,5 +8,6 @@ target_sources(${DAWN_TARGET_NAME}
PRIVATE
MeshRenderer.cpp
CubeMeshHost.cpp
CapsuleMeshHost.cpp
MeshHost.cpp
)

View File

@ -0,0 +1,21 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#include "CapsuleMeshHost.hpp"
using namespace Dawn;
CapsuleMeshHost::CapsuleMeshHost(SceneItem *item) :
MeshHost(item),
radius(0.5f),
height(1.0f)
{
}
void CapsuleMeshHost::onStart() {
useEffect([&]{
CapsuleMesh::create(&this->mesh, radius, height);
}, { &this->radius, &this->height })();
}

View File

@ -0,0 +1,22 @@
// Copyright (c) 2023 Dominic Masters
//
// This software is released under the MIT License.
// https://opensource.org/licenses/MIT
#pragma once
#include "MeshHost.hpp"
#include "display/mesh/CapsuleMesh.hpp"
namespace Dawn {
class CapsuleMeshHost : public MeshHost {
public:
// @optional
StateProperty<float> radius;
// @optional
StateProperty<float> height;
CapsuleMeshHost(SceneItem *item);
void onStart() override;
};
}