* Update * Add: [Get/Set]AngularDaming for standardization * Fix: Name error * Add: [Get/Set][AngularDamping/MomentOfInertia] in PhysicsComponent2D * Forgot in last commit * Add: param coordSys in [PhysicsComponent2D/RigidBody2D]::SetMassCenter * Add: Some forgotten inline * Fix little error * Fix: Indentation before case * Move and Change GetCenterOfGravity * Rename m_world into m_physWorld * Rename GetWorld int GetPhysWorld * Update: PhysicsSystem2D became an interface of PhysWorld2D * Update Collison/PhysicsComponent because GetWorld was renamed * Update tests * Update: Make the interface usable with Entity instead of PhysicsComponent * Update: Make GetPhysWorld private * Update PhysicsSystem2D.hpp * Update: indent * Remove: useless blank line * update order(?) * Update PhysicsSystem2D.hpp * Add calls to GetPhysWorld to attempt a nullptr value * update include * little fix * add some missing inline * Fix * Make all component inherits of HandledObject * fix: compilation error * Add Handle alias for all Components * forgot in last commit
36 lines
894 B
C++
36 lines
894 B
C++
// Copyright (C) 2017 Jérôme Leclercq
|
|
// This file is part of the "Nazara Development Kit"
|
|
// For conditions of distribution and use, see copyright notice in Prerequisites.hpp
|
|
|
|
#pragma once
|
|
|
|
#ifndef NDK_COMPONENTS_VELOCITYCOMPONENT_HPP
|
|
#define NDK_COMPONENTS_VELOCITYCOMPONENT_HPP
|
|
|
|
#include <Nazara/Math/Vector3.hpp>
|
|
#include <NDK/Component.hpp>
|
|
|
|
namespace Ndk
|
|
{
|
|
class VelocityComponent;
|
|
|
|
using VelocityComponentHandle = Nz::ObjectHandle<VelocityComponent>;
|
|
|
|
class NDK_API VelocityComponent : public Component<VelocityComponent>
|
|
{
|
|
public:
|
|
VelocityComponent(const Nz::Vector3f& velocity = Nz::Vector3f::Zero());
|
|
~VelocityComponent() = default;
|
|
|
|
Nz::Vector3f linearVelocity;
|
|
|
|
VelocityComponent& operator=(const Nz::Vector3f& vel);
|
|
|
|
static ComponentIndex componentIndex;
|
|
};
|
|
}
|
|
|
|
#include <NDK/Components/VelocityComponent.inl>
|
|
|
|
#endif // NDK_COMPONENTS_VELOCITYCOMPONENT_HPP
|