Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .clang-format
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,10 @@ BreakBeforeBraces: Custom
BreakBeforeTernaryOperators: false
BreakConstructorInitializers: AfterColon
BreakStringLiterals: false
ColumnLimit: 120
# Kept at 0 to match the Cpp section: some tools (e.g. CLion's ClangFormat
# integration) misclassify C++ .h files as ObjC and would otherwise re-wrap
# lines at the column limit.
ColumnLimit: 0

Copy link
Copy Markdown
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This has been spun out into their own PR and ill be merging it in and this should get removed once you updated latest on main when that other PR is in

CompactNamespaces: false
ConstructorInitializerAllOnOneLineOrOnePerLine: true
ConstructorInitializerIndentWidth: 4
Expand Down
4 changes: 4 additions & 0 deletions trinity/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -569,6 +569,9 @@ set(_SOURCES
Eve/SpaceObject/Children/EveChildSpherePin_Blue.cpp
Eve/SpaceObject/Children/EveChildTransform.cpp
Eve/SpaceObject/Children/EveChildTransform.cpp
Eve/SpaceObject/Children/EveChildTurret.cpp
Eve/SpaceObject/Children/EveChildTurret.h
Eve/SpaceObject/Children/EveChildTurret_Blue.cpp
Eve/SpaceObject/Children/EveCloudEditableVolume.cpp
Eve/SpaceObject/Children/EveCloudEditableVolume.h
Eve/SpaceObject/Children/EveCloudEditableVolume_Blue.cpp
Expand Down Expand Up @@ -839,6 +842,7 @@ set(_SOURCES
Include/ITr2InstanceData.h
Include/ITr2Interior.h
Include/ITr2MultiPassScene.h
Include/ITr2PoseModifier.h
Include/ITr2Scene.h
Include/ITr2Updateable.h
Include/ITr2ValueBinding.h
Expand Down
6 changes: 3 additions & 3 deletions trinity/Eve/SpaceObject/Children/EveChildMesh.h
Original file line number Diff line number Diff line change
Expand Up @@ -84,8 +84,8 @@ BLUE_CLASS( EveChildMesh ) :
void UpdateVisibility( const EveUpdateContext& updateContext, const Matrix& parentTransform, Tr2Lod parentLod );
void GetRenderables( std::vector<ITr2Renderable*> & renderables );
bool GetBoundingSphere( Vector4 & sphere, BoundingSphereQuery query = EVE_BOUNDS_NORMAL ) const;
void UpdateSyncronous( const EveUpdateContext& updateContext, const EveChildUpdateParams& params );
void UpdateAsyncronous( const EveUpdateContext& updateContext, const EveChildUpdateParams& params );
void UpdateSyncronous( const EveUpdateContext& updateContext, const EveChildUpdateParams& params ) override;
void UpdateAsyncronous( const EveUpdateContext& updateContext, const EveChildUpdateParams& params ) override;
void GetLocalToWorldTransform( Matrix & transform ) const;
void ChangeLOD( Tr2Lod lod ) override;
virtual void Setup( const Vector3* scale, const Quaternion* rotation, const Vector3* translation, Tr2Lod lowestLodVisible );
Expand Down Expand Up @@ -193,7 +193,7 @@ BLUE_CLASS( EveChildMesh ) :
virtual void ReleaseResources( TriStorage s );
virtual bool OnPrepareResources();

void InitializeAnimation();
virtual void InitializeAnimation();
bool ShouldReflect() const;

bool DisplayDecals() const;
Expand Down
Loading