Skip to content

Commit

Permalink
2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
ehsankamrani committed Jul 12, 2023
1 parent 48429d0 commit 5ddafde
Show file tree
Hide file tree
Showing 30 changed files with 1,990 additions and 38 deletions.
Binary file not shown.
Binary file modified Vanda Engine Editor/Debug/Assets/Engine/Publish/publish.exe
Binary file not shown.
2 changes: 1 addition & 1 deletion Vanda Engine Editor/Debug/Readme.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Vanda Engine 2.4.8
Vanda Engine 2.5.0
Copyright (C) 2023 Ehsan Kamrani

www.vanda3d.org
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ void CEditProjectProperties::OnOK()
}

CChar temp[256];
sprintf(temp, "%s%s%s%s%s", "Vanda Engine 2.4.8 (", newProjectName, " - ", m_currentVSceneNameWithoutDot, ")");
sprintf(temp, "%s%s%s%s%s", "Vanda Engine 2.5.0 (", newProjectName, " - ", m_currentVSceneNameWithoutDot, ")");
ex_pVandaEngineDlg->SetWindowTextA(temp);

//save changes to projects.dat
Expand Down Expand Up @@ -230,7 +230,7 @@ void CEditProjectProperties::OnOK()
}

CChar temp[256];
sprintf(temp, "%s%s%s%s%s", "Vanda Engine 2.4.8 (", newProject->m_name, " - ", m_currentVSceneNameWithoutDot, ")");
sprintf(temp, "%s%s%s%s%s", "Vanda Engine 2.5.0 (", newProject->m_name, " - ", m_currentVSceneNameWithoutDot, ")");
ex_pVandaEngineDlg->SetWindowTextA(temp);

//create new directory
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ CVec3f CInstanceLight::GetPosition()

CLight::CLight()
{
m_instanceLight = NULL;
m_color = CColor4f( 0.5f, 0.5f, 0.5f, 1.0f ); //default color
m_spotCutoff = 180.0f;
m_spotExponent = 0.0f;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ class CLight : public CBase
CLightType GetType();
CVoid SetType(CLightType type);
CColor4f GetColor();
CInstanceLight* m_instanceLight;
public:
CVoid Update( CInt light );

Expand Down
Loading

0 comments on commit 5ddafde

Please sign in to comment.