#Mr.alkmasha Posted June 9, 2015 Share Posted June 9, 2015 Hello how Mark Hama Function repeated smoothMoveCamera Link to comment
Tomas Posted June 9, 2015 Share Posted June 9, 2015 You must use it in a render. addEventHandler("onClientRender", root, function ( ) smoothMoveCamera ( ... ) end ) Link to comment
#Mr.alkmasha Posted June 9, 2015 Author Share Posted June 9, 2015 You must use it in a render. addEventHandler("onClientRender", root, function ( ) smoothMoveCamera ( ... ) end ) I do not want her stop motion I want her to repeat movement Link to comment
#Mr.alkmasha Posted June 9, 2015 Author Share Posted June 9, 2015 Could you post your code? ok setTimer ( function() CamSpawn = smoothMoveCamera (2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938,2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938) end, 500, 1 ) Link to comment
Tomas Posted June 9, 2015 Share Posted June 9, 2015 Could you post your code? ok setTimer ( function() CamSpawn = smoothMoveCamera (2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938,2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938) end, 500, 1 ) And what do you want to do? Link to comment
#Mr.alkmasha Posted June 9, 2015 Author Share Posted June 9, 2015 Could you post your code? ok setTimer ( function() CamSpawn = smoothMoveCamera (2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938,2235.99365,1673.45593,1009.05938,2235.99365,1673.45593,1009.05938,2235.99365,1678.45593,1008.35938) end, 500, 1 ) And what do you want to do? Thanx I Fixed It Give me Anim For Cam smoothMoveCamera Link to comment
#Mr.alkmasha Posted June 9, 2015 Author Share Posted June 9, 2015 and how to Remove Cam on Press "Enter" Link to comment
Tomas Posted June 9, 2015 Share Posted June 9, 2015 What kind of animation are you looking for? Post your full cude. Link to comment
#Mr.alkmasha Posted June 9, 2015 Author Share Posted June 9, 2015 What kind of animation are you looking for? Post your full cude. I want to movements of Camera Link to comment
Addlibs Posted June 10, 2015 Share Posted June 10, 2015 Just set an indefinite timer that will execute the command statement over and over again (until the timer is killed) Link to comment
Walid Posted June 10, 2015 Share Posted June 10, 2015 I want to movements of Camera Try this it should work local sm = {} sm.moov = 0 sm.object1,sm.object2 = nil,nil local function removeCamHandler() if(sm.moov == 1)then sm.moov = 0 end end local function camRender() if (sm.moov == 1) then local x1,y1,z1 = getElementPosition(sm.object1) local x2,y2,z2 = getElementPosition(sm.object2) setCameraMatrix(x1,y1,z1,x2,y2,z2) end end addEventHandler("onClientPreRender",root,camRender) function smoothMoveCamera(x1,y1,z1,x1t,y1t,z1t,x2,y2,z2,x2t,y2t,z2t,time) if(sm.moov == 1)then return false end sm.object1 = createObject(1337,x1,y1,z1) sm.object2 = createObject(1337,x1t,y1t,z1t) setElementAlpha(sm.object1,0) setElementAlpha(sm.object2,0) setObjectScale(sm.object1,0.01) setObjectScale(sm.object2,0.01) moveObject(sm.object1,time,x2,y2,z2,0,0,0,"InOutQuad") moveObject(sm.object2,time,x2t,y2t,z2t,0,0,0,"InOutQuad") sm.moov = 1 setTimer(removeCamHandler,time,1) setTimer(destroyElement,time,1,sm.object1) setTimer(destroyElement,time,1,sm.object2) return true end Link to comment
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now