목록걷기 (1)
응애맘마조
걷기 모션
사람 모형을 만들어서 걷는 모션을 만드는 것이 과제였습니다. 저는 구르기가 되었습니다. //Cubeman.h pragma once class Cubeman : public Actor { public: static Cubeman* Create(string name = "Cubeman"); bool rotationturn; bool rotationturn2; bool rotationturn3; bool rotationturn4; private: Cubeman(); virtual ~Cubeman(); public: void Update() override; void Release() override; }; //Cubeman.cpp #include "stdafx.h" #include "Cubeman.h" Cub..
공부/3D과제
2023. 5. 16. 21:02