# HG changeset patch # User jasoka@33b003aa-7bff-0310-803a-e67f0ece8222 # Date 1215780985 0 # Node ID 1e3b68c260a632d6520738927f68f8310f88b2e4 # Parent 788cb9525b2f8642140f604f35454a78a472dc60 fix for instance facing location on actions + KDevelop project file upgrade diff -r 788cb9525b2f -r 1e3b68c260a6 build/linux/KDevelop/FIFE.kdevelop --- a/build/linux/KDevelop/FIFE.kdevelop Fri Jul 11 11:57:48 2008 +0000 +++ b/build/linux/KDevelop/FIFE.kdevelop Fri Jul 11 12:56:25 2008 +0000 @@ -48,6 +48,23 @@ + + *.java + *.h + *.H + *.hh + *.hxx + *.hpp + *.c + *.C + *.cc + *.cpp + *.c++ + *.cxx + Makefile + CMakeLists.txt + + @@ -149,6 +166,8 @@ true false .; + false + false false diff -r 788cb9525b2f -r 1e3b68c260a6 engine/core/view/camera.cpp --- a/engine/core/view/camera.cpp Fri Jul 11 11:57:48 2008 +0000 +++ b/engine/core/view/camera.cpp Fri Jul 11 12:56:25 2008 +0000 @@ -508,7 +508,7 @@ // use cached values if there is no need to do full recalculation ScreenPoint drawpt; int angle = 0; - if (m_updated && (!m_iswarped) && (!(instance->getChangeInfo() & (ICHANGE_LOC | ICHANGE_ROTATION))) && (vc.image)) { + if (m_updated && (!m_iswarped) && (!(instance->getChangeInfo() & (ICHANGE_LOC | ICHANGE_ROTATION | ICHANGE_FACING_LOC))) && (vc.image)) { int pos_estimate_x = vc.screenpoint.x - cammove.x; int pos_estimate_y = vc.screenpoint.y - cammove.y; int pos_estimate_z = vc.screenpoint.z - cammove.z;