mirror of
https://github.com/zeldaret/oot
synced 2026-09-01 09:43:06 -04:00
Commit objects 2: object_spot15_obj, object_spot16_obj, object_spot17_obj, object_syokudai, object_ta, object_timeblock (#2645)
* commit object_timeblock * commit object_ta * commit object_syokudai * commit object_spot17_obj * format * commit object_spot16_obj * fixup * commit object_spot15_obj
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
#include "object_timeblock.h"
|
||||
#include "array_count.h"
|
||||
#include "camera.h"
|
||||
#include "z_math.h"
|
||||
|
||||
BgCamInfo gSongOfTimeBlockBgCamList[] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockBgCamList.inc.c"
|
||||
};
|
||||
|
||||
SurfaceType gSongOfTimeBlockSurfaceTypes[] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockSurfaceTypes.inc.c"
|
||||
};
|
||||
|
||||
CollisionPoly gSongOfTimeBlockPolyList[] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockPolyList.inc.c"
|
||||
};
|
||||
|
||||
Vec3s gSongOfTimeBlockVtxList[] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockVtxList.inc.c"
|
||||
};
|
||||
|
||||
CollisionHeader gSongOfTimeBlockCol = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockCol.inc.c"
|
||||
};
|
||||
@@ -0,0 +1,17 @@
|
||||
#include "object_timeblock.h"
|
||||
#include "gfx.h"
|
||||
#include "tex_len.h"
|
||||
|
||||
#define gSongOfTimeBlockTex_WIDTH 64
|
||||
#define gSongOfTimeBlockTex_HEIGHT 64
|
||||
u64 gSongOfTimeBlockTex[TEX_LEN(u64, gSongOfTimeBlockTex_WIDTH, gSongOfTimeBlockTex_HEIGHT, 4)] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockTex.i4.inc.c"
|
||||
};
|
||||
|
||||
Vtx gSongOfTimeBlockVtx[] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockVtx.inc.c"
|
||||
};
|
||||
|
||||
Gfx gSongOfTimeBlockDL[22] = {
|
||||
#include "assets/objects/object_timeblock/gSongOfTimeBlockDL.inc.c"
|
||||
};
|
||||
@@ -0,0 +1,10 @@
|
||||
#ifndef OBJECT_TIMEBLOCK_H
|
||||
#define OBJECT_TIMEBLOCK_H
|
||||
|
||||
#include "ultra64.h"
|
||||
#include "bgcheck.h"
|
||||
|
||||
extern Gfx gSongOfTimeBlockDL[22];
|
||||
extern CollisionHeader gSongOfTimeBlockCol;
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user