mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-06 13:47:48 +00:00
GEEKING
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/* Copyright 2003-2005 ROBLOX Corporation, All Rights Reserved */
|
||||
#include "stdafx.h"
|
||||
|
||||
#include "Humanoid/Flying.h"
|
||||
|
||||
#include "Humanoid/Humanoid.h"
|
||||
//#include "V8World/Controller.h"
|
||||
#include "V8Kernel/Body.h"
|
||||
|
||||
namespace RBX {
|
||||
|
||||
namespace HUMAN {
|
||||
|
||||
|
||||
const char* const sFlying = "Flying";
|
||||
|
||||
Flying::Flying(Humanoid* humanoid, StateType priorState)
|
||||
:Named<Balancing, sFlying>(humanoid, priorState)
|
||||
{
|
||||
setBalanceP(5000.0f);
|
||||
}
|
||||
|
||||
|
||||
void Flying::onSimulatorStepImpl(float stepDt)
|
||||
{
|
||||
// to implement
|
||||
}
|
||||
|
||||
void Flying::onComputeForceImpl()
|
||||
{
|
||||
// to implement
|
||||
}
|
||||
|
||||
} // HUMAN
|
||||
} // namespace
|
||||
Reference in New Issue
Block a user