Disable misc_portal_camera's movement.

Discussion for Level editing, modeling, programming, or any of the other technical aspects of Quake
Post Reply
deniska
Posts: 2
Joined: Sun Apr 11, 2010 4:57 pm

Disable misc_portal_camera's movement.

Post by deniska »

I'm trying to connect 2 rooms with fake window using misc_portal_camera. But picture is wiggling. How to get it static?

Two screens:

Image

Image
^misantropia^
Posts: 4022
Joined: Sat Mar 12, 2005 6:24 pm

Re: Disable misc_portal_camera's movement.

Post by ^misantropia^ »

Moved from Q3D to LEM.
deniska
Posts: 2
Joined: Sun Apr 11, 2010 4:57 pm

Re: Disable misc_portal_camera's movement.

Post by deniska »

Opensource rules! In code/game/g_misc.c:

Code: Select all

	// swing camera ?
	if ( owner->spawnflags & 4 ) {
		// set to 0 for no rotation at all
		ent->s.powerups = 0;
	}
	else {
		ent->s.powerups = 1;
	}
It's not moving with spawnflag = 4.
skinNCNmaster
Posts: 344
Joined: Wed Jan 29, 2003 8:00 am

Re: Disable misc_portal_camera's movement.

Post by skinNCNmaster »

can i have a copy of that map file.. im so rusty.. i need a look at it so i can relearn how to do it too..
Bliccer
Posts: 341
Joined: Thu Nov 26, 2009 4:27 pm

Re: Disable misc_portal_camera's movement.

Post by Bliccer »

For tutorials check out the level design section of q3a.ath.cx:

http://q3a.ath.cx/?editing=radiant_tutorials

At the moment Pan is converting my huge sound tutorial and levelshot tut into xhtml.
User avatar
seremtan
Posts: 36017
Joined: Wed Nov 19, 2003 8:00 am

Re: Disable misc_portal_camera's movement.

Post by seremtan »

skinNCNmaster wrote:can i have a copy of that map file.. im so rusty.. i need a look at it so i can relearn how to do it too..
whoa

haven't seen you around in a while there mr skin
skinNCNmaster
Posts: 344
Joined: Wed Jan 29, 2003 8:00 am

Re: Disable misc_portal_camera's movement.

Post by skinNCNmaster »

hiya seremtan :D long time bud. :D
Post Reply