mirror of
https://github.com/open-goal/jak-project
synced 2026-06-18 15:36:25 -04:00
3afd99a8e3
* temp * some decomp * tfrag dma setup * fix negative label bug * tfrag dma setup * tfrag, with pipeline tricks * kinda works * cleanup before trying some color stuff * time of day works * clean up * temp before render changes * a few more fixes * fix up tests * clean up * fix * fix alignment * one more cleanup
15 lines
372 B
Common Lisp
15 lines
372 B
Common Lisp
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; name: drawable-tree.gc
|
|
;; name in dgo: drawable-tree
|
|
;; dgos: GAME, ENGINE
|
|
|
|
;; todo
|
|
(defmethod debug-draw drawable-tree-array ((obj drawable-tree-array) (arg0 drawable) (arg1 display-frame))
|
|
(dotimes (s3-0 (-> obj length))
|
|
(debug-draw (-> obj trees s3-0) (-> (the-as drawable-tree-array arg0) trees s3-0) arg1)
|
|
)
|
|
0
|
|
(none)
|
|
) |