mirror of
https://github.com/XProger/OpenLara.git
synced 2025-02-23 23:14:47 +01:00
fix CUT_4 scion rendering
This commit is contained in:
parent
1067386e65
commit
1602cb29db
@ -1324,7 +1324,9 @@ struct Controller {
|
||||
}
|
||||
|
||||
mat4 getMatrix() {
|
||||
if (level->isCutsceneLevel() && (getEntity().isActor() || getEntity().isLara()))
|
||||
const TR::Entity &e = getEntity();
|
||||
|
||||
if (level->isCutsceneLevel() && (e.isActor() || e.isLara()) && e.type != TR::Entity::CUT_4)
|
||||
return level->cutMatrix;
|
||||
|
||||
if (!lockMatrix) {
|
||||
|
@ -122,7 +122,7 @@
|
||||
#include "utils.h"
|
||||
|
||||
// muse be equal with base shader
|
||||
#define SHADOW_TEX_SIZE 1024
|
||||
#define SHADOW_TEX_SIZE 2048
|
||||
|
||||
extern void* osMutexInit ();
|
||||
extern void osMutexFree (void *obj);
|
||||
|
@ -1993,7 +1993,7 @@ namespace TR {
|
||||
&& type != ENEMY_MUMMY
|
||||
&& type != ENEMY_NATLA)
|
||||
opaque = true;
|
||||
if (type == SWITCH || type == SWITCH_WATER)
|
||||
if (type == SWITCH || type == SWITCH_WATER || type == CUT_1)
|
||||
opaque = true;
|
||||
if ((type >= PUZZLE_HOLE_1 && type <= PUZZLE_HOLE_4) || type == LIGHTNING)
|
||||
opaque = false;
|
||||
@ -3793,7 +3793,7 @@ namespace TR {
|
||||
if (isCutsceneLevel()) {
|
||||
for (int i = 0; i < entitiesBaseCount; i++) {
|
||||
Entity &e = entities[i];
|
||||
if ((((version & VER_TR1)) && e.isActor()) ||
|
||||
if ((((version & VER_TR1)) && e.type == Entity::CUT_1) ||
|
||||
(((version & (VER_TR2 | VER_TR3))) && e.isLara())) {
|
||||
cutEntity = i;
|
||||
break;
|
||||
|
@ -1949,7 +1949,7 @@ struct Level : IGame {
|
||||
if (isModel) { // model
|
||||
ASSERT(controller->intensity >= 0.0f);
|
||||
|
||||
setMainLight(controller);
|
||||
setMainLight(level.isCutsceneLevel() ? player : controller);
|
||||
setRoomParams(roomIndex, type, 1.0f, controller->intensity, controller->specular, 1.0f, mesh->transparent == 1);
|
||||
|
||||
vec3 pos = controller->getPos();
|
||||
|
Loading…
x
Reference in New Issue
Block a user