taisei/src/camcontrol.h
Andrei Alexeyev 0055de4245
camcontrol: add cleanup
This is mostly to fix an annoying assertion failure that pops up when
quitting the game or restarting the stage.
2021-10-08 19:06:14 +03:00

26 lines
979 B
C

/*
* This software is licensed under the terms of the MIT License.
* See COPYING for further information.
* ---
* Copyright (c) 2011-2019, Lukas Weber <laochailan@web.de>.
* Copyright (c) 2012-2019, Andrei Alexeyev <akari@taisei-project.org>.
*/
#pragma once
#include "taisei.h"
#include "stageutils.h"
/*
* NOTE: This is a stage background debugging facility that provides FPS-like keyboard-and-mouse
* fly-mode camera control. This code is not linked into non-developer builds, and usually is not
* referenced anywhere — it is expected to be used transiently while working on backgrounds.
*
* To use it, simply call `camcontrol_init` in your background animation setup code instead of
* invoking normal animation code. For best results, disable anything that can alter the camera
* state directly. Or you can allocate a secondary camera for this purpose.
*
* See camcontrol.c for controls and adjustable parameters.
*/
void camcontrol_init(Camera3D *cam);