mirror of
https://github.com/open-goal/jak-project
synced 2026-08-12 11:53:26 -04:00
80d0137dba
* sparticle-launcher * d/jak2: large amount of `sparticle-launcher` done * d/jak2: finish the majority of `sparticle` * decomp: improve format code ignoring * d/jak2: make bits unique in `sp-cpuinfo-flag` * d/jak1: revert config change
24 lines
503 B
Common Lisp
24 lines
503 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: cam-interface-h.gc
|
|
;; name in dgo: cam-interface-h
|
|
;; dgos: ENGINE, GAME
|
|
|
|
(define-extern camera-pos (function vector))
|
|
|
|
;; NOTE - for sparticle-launcher
|
|
(define-extern math-camera-matrix
|
|
"Returns [[*math-camera*]]'s `inv-camera-rot`"
|
|
(function matrix))
|
|
|
|
;; DECOMP BEGINS
|
|
|
|
(define-perm *camera-init-mat* matrix #f)
|
|
|
|
(define-perm *camera* camera-master #f)
|
|
|
|
(define-perm *camera-combiner* camera-combiner #f)
|
|
|
|
(define-extern math-camera-pos (function vector))
|