Files
jak-project/goal_src/engine/gfx/shadow/shadow-cpu.gc
T
water111 a66eef6034 more small fixes (#1094)
* more small fixes

* better bones fix

* type fix
2022-01-19 19:39:36 -05:00

22 lines
527 B
Common Lisp

;;-*-Lisp-*-
(in-package goal)
;; name: shadow-cpu.gc
;; name in dgo: shadow-cpu
;; dgos: GAME, ENGINE
;; TODO - for video
(define-extern *shadow-data* shadow-data)
;; todo
(define *shadow-data* (new 'static 'shadow-data))
(defmethod dummy-14 shadow-control ((obj shadow-control))
(let ((v1-1 (-> *time-of-day-context* current-shadow)))
(set! (-> obj settings shadow-dir x) (-> v1-1 x))
(set! (-> obj settings shadow-dir y) (-> v1-1 y))
(set! (-> obj settings shadow-dir z) (-> v1-1 z))
)
0
(none)
)