FoolsParadise Posted March 9, 2003 Share Posted March 9, 2003 I've followed Kengos tutorials and I seem to have them working apart from one thing- camera angles. They always are at an upside down, 45 degree angle- whether I point them at an info_null or not. Any ideas? Link to comment Share on other sites More sharing options...
lassev Posted March 10, 2003 Share Posted March 10, 2003 I guess you have used the PAN command for you camera angles in your script? And by pointing, I trust you mean targeting. And I always use info_notnull (if it makes any difference, I do not know...). Link to comment Share on other sites More sharing options...
FoolsParadise Posted March 10, 2003 Author Share Posted March 10, 2003 Good idea lassev, but yes I'm using the pan command in the following syntax- in fact, here's the whole script: ------------- //Generated by BehavEd rem ( "comment" ); camera ( /*@CAMERA_COMMANDS*/ ENABLE ); camera ( /*@CAMERA_COMMANDS*/ MOVE, $tag( "cam1", ORIGIN)$, 0 ); camera ( /*@CAMERA_COMMANDS*/ PAN, $tag( "cam1", ORIGIN)$, < 0.000 0.000 0.000 >, 0 ); wait ( 4000.000 ); camera ( /*@CAMERA_COMMANDS*/ MOVE, $tag( "cam2", ORIGIN)$, 0 ); camera ( /*@CAMERA_COMMANDS*/ PAN, $tag( "cam2", ORIGIN)$, < 0.000 0.000 0.000 >, 0 ); wait ( 8000.000 ); camera ( /*@CAMERA_COMMANDS*/ MOVE, $tag( "cam3", ORIGIN)$, 0 ); camera ( /*@CAMERA_COMMANDS*/ PAN, $tag( "cam3", ORIGIN)$, < 0.000 0.000 0.000 >, 0 ); wait ( 8000.000 ); camera ( /*@CAMERA_COMMANDS*/ DISABLE ); ----------- It's very basic- I'm just trying to get the fundamentals working and have hit a snag with the camera angles bit. I've tried rotating the ref_tag and the info_null to no avail. I've also tried info_notnull. In fact, it doesn't seem to matter where I position my info_nulls, the view is always upside down straight ahead at 45 degrees. They are linked by Ctrl-K, but the engine just isnt obeying any attempt of mine to point the camera. Gah. The script does, however, find cams 1, 2, and 3 and move between them. Link to comment Share on other sites More sharing options...
AKPiggott Posted March 10, 2003 Share Posted March 10, 2003 Just a guess, but what I think has happened here is you've placed one camera entity, accidenlty flipped it upside down and copied and pasted it for the other two cameras. Try deleting all your cameras and placing new ones. I can verify that there is nothing wrong with your script. Link to comment Share on other sites More sharing options...
Leslie Judge Posted March 10, 2003 Share Posted March 10, 2003 I think, the problem is that you use $tag( "camX", ORIGIN)$ in the PAN command too. Use $tag( "camX", ANGLES)$ instead. "camX" represents the cam1..3 ref_tags. Link to comment Share on other sites More sharing options...
FoolsParadise Posted March 10, 2003 Author Share Posted March 10, 2003 Readme cred to Leslie- many thanks. Using the angles command did it. Truly bizarre though- every tutorial and cutscene I've looked at uses the origin tag but hey- it works so I'm not complaining. Thanks also to Ant for his contribution- you've already got readme cred for cutscene_test anyway, mate. I might play around with changing the origin values on the ref tags later and discover what the difference actually is. There must be a solution. Now onto changing Kyle into Desann (or Tavion...whatever that chick Jedi Kyle fights is) for SP and reskinning her. If thats even possible. Link to comment Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.