CUstom UI?
CUstom UI?
how do u make custom ui? i found a tutorial on making the buttons and stuff like that, but i need to no how to make the background of it, not just a pic either, a moving one like the original ui
-
- Posts: 365
- Joined: Wed Apr 20, 2005 8:17 am
![]() |
Making a UI is no different than making any kind of map. Just make sure you set the map type to "ui" in the scenario tag.
The UI's movement is scripts. Check my cutscene wiki for info on scripting camera movements.
Here is the basics, taken out of context of the original tutorial to better suit your needs.
For more info on HaloScript functions and scripting in general, check the HaloScript Bible.
The UI's movement is scripts. Check my cutscene wiki for info on scripting camera movements.
Here is the basics, taken out of context of the original tutorial to better suit your needs.
Go into sapien's camera mode...Position the camera as needed, and hit the spacebar to save the camera's position. Name it "cam1"...Find a good spot...(name it "cam2"), get another one...(name it "cam3")...Find your camera point and save it (as "cam4").
Add as many camera points as you need, and tweak the sleep times and camera movement times as needed to get the effect you want. The above script will cut to each camera point every second.(script startup cutscene
(camera_control 1)
(camera_set cam1 0)
(sleep 30)
(camera_set cam2 0)
(sleep 30)
(camera_set cam3 0)
(sleep 30)
(camera_set cam4 0)
(sleep 30)
)
For more info on HaloScript functions and scripting in general, check the HaloScript Bible.
-
- Posts: 5426
- Joined: Sat Jul 24, 2004 12:12 pm
- Location: I'm a Paranoid
- Contact:
![]() |
![]() |
-
- Posts: 365
- Joined: Wed Apr 20, 2005 8:17 am
![]() |
-
- Posts: 231
- Joined: Sat Jan 17, 2004 9:41 pm
scenery dosnt cut it cause i wanted to have a camera on top of the poa on d40 terrain, and a helicopter is seen rising up from the edge and just opens fire on a group of mc's on top of the poa, a few of them get into jets and fly off, then a huge group of helicopters and other jets come and this huge airbattle brakes out
-
- Posts: 308
- Joined: Sat Jun 18, 2005 6:53 am
- Location: Newark, DE
- Contact:
![]() |
I don't know about you, but if my main menu didn something like that, I don't think I'd ever get to actually playing the game.ledhedgn wrote:scenery dosnt cut it cause i wanted to have a camera on top of the poa on d40 terrain, and a helicopter is seen rising up from the edge and just opens fire on a group of mc's on top of the poa, a few of them get into jets and fly off, then a huge group of helicopters and other jets come and this huge airbattle brakes out

-
- Posts: 5426
- Joined: Sat Jul 24, 2004 12:12 pm
- Location: I'm a Paranoid
- Contact:
![]() |
![]() |