From f4d5774e693175711049938c8329477b6f3f973e Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 22 Apr 2013 13:55:59 -0700 Subject: [PATCH] change eve's orientation and hand position --- eve/src/main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/eve/src/main.cpp b/eve/src/main.cpp index a6fb867af2..1478f3d1b2 100644 --- a/eve/src/main.cpp +++ b/eve/src/main.cpp @@ -76,6 +76,14 @@ int main(int argc, char* argv[]) { // move eve away from the origin eve.setBodyPosition(glm::vec3(3, 0, -3)); + // turn her back towards the origin + eve.setBodyYaw(-45); + + // put her hand out so somebody can shake it + eve.setHandPosition(glm::vec3(eve.getBodyPosition()[0] - 0.2, + 0.25, + eve.getBodyPosition()[2] + 0.1)); + unsigned char broadcastPacket[MAX_PACKET_SIZE]; broadcastPacket[0] = PACKET_HEADER_HEAD_DATA;