first correct no clip version

This commit is contained in:
Clément Le Bihan
2021-06-18 16:25:20 +02:00
parent 5dd68ded0b
commit cdba078231
5 changed files with 114 additions and 2 deletions

View File

@@ -0,0 +1,20 @@
//
// Created by cbihan on 18/06/2021.
//
#include "AlphaCtxShaderComponent.hpp"
namespace BBM
{
AlphaVarShaderComponent::AlphaVarShaderComponent(WAL::Entity &entity) :
WAL::Component(entity)
{
}
WAL::Component *AlphaVarShaderComponent::clone(WAL::Entity &entity) const
{
return new AlphaVarShaderComponent(this->_entity);
}
}