Search found 2 matches

by deniska
Fri Apr 16, 2010 12:12 pm
Forum: ID Tech
Topic: Disable misc_portal_camera's movement.
Replies: 6
Views: 3778

Re: Disable misc_portal_camera's movement.

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.
by deniska
Thu Apr 15, 2010 10:02 pm
Forum: ID Tech
Topic: Disable misc_portal_camera's movement.
Replies: 6
Views: 3778

Disable misc_portal_camera's movement.

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