mirror of
https://github.com/zeldaret/oot.git
synced 2025-08-21 14:31:17 +00:00
Commit objects 1: tp
, triforce_spot
, umajump
, vase
, yukabyun
, zg
(#2634)
* commit object_zg * commit object_yukabyun * commit object_vase * commit object_umajump * commit object_triforce_spot * commit object_tp * fixup1 * format
This commit is contained in:
parent
affb39624f
commit
6234d7f2aa
17 changed files with 357 additions and 10 deletions
30
assets/objects/object_triforce_spot/object_triforce_spot.c
Normal file
30
assets/objects/object_triforce_spot/object_triforce_spot.c
Normal file
|
@ -0,0 +1,30 @@
|
|||
#include "object_triforce_spot.h"
|
||||
#include "gfx.h"
|
||||
|
||||
Vtx gTriforceVtx[] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceVtx.inc.c"
|
||||
};
|
||||
|
||||
Vtx gTriforceLightColumnVtx[] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceLightColumnVtx.inc.c"
|
||||
};
|
||||
|
||||
Gfx gTriforceDL[72] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceDL.inc.c"
|
||||
};
|
||||
|
||||
Gfx gTriforceLightColumnDL[26] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceLightColumnDL.inc.c"
|
||||
};
|
||||
|
||||
u64 gTriforceTex[TEX_LEN(u64, gTriforceTex_WIDTH, gTriforceTex_HEIGHT, 8)] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceTex.i8.inc.c"
|
||||
};
|
||||
|
||||
u64 gTriforceColumnSide1Tex[TEX_LEN(u64, gTriforceColumnSide1Tex_WIDTH, gTriforceColumnSide1Tex_HEIGHT, 8)] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceColumnSide1Tex.i8.inc.c"
|
||||
};
|
||||
|
||||
u64 gTriforceColumnSide2Tex[TEX_LEN(u64, gTriforceColumnSide2Tex_WIDTH, gTriforceColumnSide2Tex_HEIGHT, 8)] = {
|
||||
#include "assets/objects/object_triforce_spot/gTriforceColumnSide2Tex.i8.inc.c"
|
||||
};
|
24
assets/objects/object_triforce_spot/object_triforce_spot.h
Normal file
24
assets/objects/object_triforce_spot/object_triforce_spot.h
Normal file
|
@ -0,0 +1,24 @@
|
|||
#ifndef OBJECT_TRIFORCE_SPOT_H
|
||||
#define OBJECT_TRIFORCE_SPOT_H
|
||||
|
||||
#include "ultra64.h"
|
||||
#include "tex_len.h"
|
||||
|
||||
extern Vtx gTriforceVtx[];
|
||||
extern Gfx gTriforceDL[72];
|
||||
|
||||
extern Gfx gTriforceLightColumnDL[26];
|
||||
|
||||
#define gTriforceTex_WIDTH 64
|
||||
#define gTriforceTex_HEIGHT 64
|
||||
extern u64 gTriforceTex[TEX_LEN(u64, gTriforceTex_WIDTH, gTriforceTex_HEIGHT, 8)];
|
||||
|
||||
#define gTriforceColumnSide1Tex_WIDTH 64
|
||||
#define gTriforceColumnSide1Tex_HEIGHT 32
|
||||
extern u64 gTriforceColumnSide1Tex[TEX_LEN(u64, gTriforceColumnSide1Tex_WIDTH, gTriforceColumnSide1Tex_HEIGHT, 8)];
|
||||
|
||||
#define gTriforceColumnSide2Tex_WIDTH 64
|
||||
#define gTriforceColumnSide2Tex_HEIGHT 32
|
||||
extern u64 gTriforceColumnSide2Tex[TEX_LEN(u64, gTriforceColumnSide2Tex_WIDTH, gTriforceColumnSide2Tex_HEIGHT, 8)];
|
||||
|
||||
#endif
|
Loading…
Add table
Add a link
Reference in a new issue