mirror of
				https://github.com/DarkflameUniverse/DarkflameServer.git
				synced 2025-11-03 22:21:59 +00:00 
			
		
		
		
	Fix death planes (#733)
* Correct death plane size The death plane file size is not in units but is actually in 4x2 tiles. * Make it a bit bigger for now
This commit is contained in:
		@@ -162,7 +162,8 @@ PhantomPhysicsComponent::PhantomPhysicsComponent(Entity* parent) : Component(par
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
			dpWorld::Instance().AddEntity(m_dpEntity);
 | 
								dpWorld::Instance().AddEntity(m_dpEntity);
 | 
				
			||||||
		} else if (info->physicsAsset == "miscellaneous\\misc_phys_640x640.hkx") {
 | 
							} else if (info->physicsAsset == "miscellaneous\\misc_phys_640x640.hkx") {
 | 
				
			||||||
			m_dpEntity = new dpEntity(m_Parent->GetObjectID(), 640.0f, 20.0f, 640.0f);
 | 
								// TODO Fix physics simulation to do simulation at high velocities due to bullet through paper problem...
 | 
				
			||||||
 | 
								m_dpEntity = new dpEntity(m_Parent->GetObjectID(), 1638.4f, 13.521004f * 2.0f, 1638.4f);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
			m_dpEntity->SetScale(m_Scale);
 | 
								m_dpEntity->SetScale(m_Scale);
 | 
				
			||||||
			m_dpEntity->SetRotation(m_Rotation);
 | 
								m_dpEntity->SetRotation(m_Rotation);
 | 
				
			||||||
 
 | 
				
			|||||||
		Reference in New Issue
	
	Block a user