diff options
Diffstat (limited to 'src/assets.c')
-rw-r--r-- | src/assets.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/assets.c b/src/assets.c index 3eb0a8a..68f59f8 100644 --- a/src/assets.c +++ b/src/assets.c @@ -6,7 +6,10 @@ const char textureAssetPaths[TEXTURE_ASSET_COUNT][FT_NAMEMAX] = { "tree.png", "bush.png", "flower.png", - "Samantha.png" + "Samantha1.png", + "Samantha2.png", + "Samantha3.png", + "Samantha4.png" }; const char imageAssetPaths[IMAGE_ASSET_COUNT][FT_NAMEMAX] = { @@ -37,8 +40,7 @@ void initShaderAssets(Shader shaders[SHADER_ASSET_COUNT]) void initModelAssets(Assets* assets) { - assets->models[SAMANTHA_MODEL].materials[0] - .maps[MATERIAL_MAP_DIFFUSE].texture = assets->textures[SAMANTHA_TEXTURE]; + } void initAssets(Assets* assets) |