mirror of
https://github.com/open-goal/jak-project
synced 2026-08-14 20:43:54 -04:00
30 lines
946 B
Common Lisp
Vendored
Generated
30 lines
946 B
Common Lisp
Vendored
Generated
;;-*-Lisp-*-
|
|
(in-package goal)
|
|
|
|
;; definition for symbol *stadiumb-energy-wall-anim-array*, type (texture-anim-array texture-anim)
|
|
(define *stadiumb-energy-wall-anim-array*
|
|
(the-as (texture-anim-array texture-anim)
|
|
(new 'static 'texture-anim-array :type texture-anim
|
|
(new 'static 'texture-anim
|
|
:num-layers #x2
|
|
:func #f
|
|
:init-func #f
|
|
:tex #f
|
|
:tex-name "stdmb-energy-wall-01-dest"
|
|
:color (new 'static 'rgba :a #x80)
|
|
:frame-delta 300.0
|
|
:frame-mod 300.0
|
|
:test (new 'static 'gs-test :ate #x1 :afail #x1 :zte #x1 :ztst (gs-ztest always))
|
|
:alpha (new 'static 'gs-alpha :b #x1 :d #x1)
|
|
)
|
|
)
|
|
)
|
|
)
|
|
|
|
;; definition for function set-stadiumb-energy-wall!
|
|
;; WARN: Return type mismatch float vs none.
|
|
(defun set-stadiumb-energy-wall! ((arg0 float))
|
|
(set! (-> *stadiumb-energy-wall-anim-array* array-data 0 data 0 end-st-offset y) arg0)
|
|
(none)
|
|
)
|