luacameractrl.h
来自「这是整套横扫千军3D版游戏的源码」· C头文件 代码 · 共 40 行
H
40 行
#ifndef __LUA_CONTROLLER_H__
#define __LUA_CONTROLLER_H__
#include "CameraController.h"
class CLuaCameraCtrl : public CCameraController {
public:
CLuaCameraCtrl(int num);
const std::string GetName() const { return "lua"; }
void KeyMove(float3 move);
void MouseMove(float3 move);
void ScreenEdgeMove(float3 move);
void MouseWheelMove(float move);
void Update();
float3 GetPos();
float3 GetDir();
void SetPos(const float3& newPos);
void SetTrackingInfo(const float3& pos, float radius);
bool DisableTrackingByKey();
float3 SwitchFrom() const; // return pos that to send to new controllers SetPos
void SwitchTo(bool showText);
void GetState(std::vector<float>& fv) const;
bool SetState(const std::vector<float>& fv);
private:
float3 dir;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?