Testing mixing styles

This commit is contained in:
2023-06-17 08:29:29 -07:00
parent 07c4484186
commit 17f2953e4d
2 changed files with 4 additions and 5 deletions

View File

@ -25,9 +25,10 @@ void VNTextboxScroller::onStart() {
this->label->quadCount = 0; this->label->quadCount = 0;
this->readyToClose = false; this->readyToClose = false;
}; };
x();
useEvent(x, this->label->eventTextChanged); useEvent(x, this->label->eventTextChanged);
useEffect(x, visibleLines)(); useEffect(x, visibleLines);
useEvent([&](float_t delta){ useEvent([&](float_t delta){
auto game = this->getGame(); auto game = this->getGame();

View File

@ -16,13 +16,11 @@ UIBorder::UIBorder(SceneItem *item) :
} }
float_t UIBorder::getContentWidth() { float_t UIBorder::getContentWidth() {
if(this->texture != nullptr) return this->texture->getWidth(); return this->width - this->borderSize._realValue.x * 2.0f;
return this->width;
} }
float_t UIBorder::getContentHeight() { float_t UIBorder::getContentHeight() {
if(this->texture != nullptr) return this->texture->getHeight(); return this->height - this->borderSize._realValue.y * 2.0f;
return this->height;
} }
float_t UIBorder::getChildOffsetX() { float_t UIBorder::getChildOffsetX() {