Думаю каждый, кто пытался создать FPS В 3D RAD сталкивался с проблемой, когда скин мэш крутился по ходу движения игрока. И я решил рассказать как с этим справиться.
ШАГ 1: Создаете Начальную сцену.(SkyBox, Terrain, G-Force, Cam1StPerson) ШАГ 2: Добавьте ShkinMesh (Это будут наши руки) и Script. ВНИМАНИЕ!!! НЕ ПЕРЕДВИГАЙТЕ ShkinMesh НИКУДА, А ТО ПОЯВЯТСЯ ПРОБЛЕМЫ!!! ШАГ 3: Соедините все надлежащим образом. ШАГ 4: В скрипте пишем
//This script keeps a SkinMesh object locked //at a given offset from the camera.
//This technique can be used in a FPS game, to //render view-locked 3d props, like a carried gun.
//Link this script object to the CamChase object //and the SkinMesh object.
//Do NOT link the CamChase and the SkinMesh in the Object List!
//In this script, make sure that: // OBJ_0 is the CamChase object // OBJ_3 is the SkinMesh object