mirror of
https://github.com/billsonnn/nitro-react.git
synced 2024-11-23 14:40:50 +01:00
commit
82b9e783dd
@ -16,11 +16,6 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&.theme-dark {
|
|
||||||
background-color: #3d5f6e !important;
|
|
||||||
color: #fff;
|
|
||||||
}
|
|
||||||
|
|
||||||
.bg-tertiary-split {
|
.bg-tertiary-split {
|
||||||
position: relative;
|
position: relative;
|
||||||
border-bottom: 2px solid darken($quaternary, 5);
|
border-bottom: 2px solid darken($quaternary, 5);
|
||||||
|
@ -2,6 +2,15 @@
|
|||||||
width: $chat-history-width;
|
width: $chat-history-width;
|
||||||
height: $chat-history-height;
|
height: $chat-history-height;
|
||||||
|
|
||||||
|
background-color: #1C323F;
|
||||||
|
border: 2px solid rgba(255, 255, 255, 0.5);
|
||||||
|
border-radius: 0.25rem;
|
||||||
|
|
||||||
|
.nitro-card-header-container {
|
||||||
|
background-color: #3d5f6e;
|
||||||
|
color: #fff;
|
||||||
|
}
|
||||||
|
|
||||||
.chat-history-content {
|
.chat-history-content {
|
||||||
.chat-history-container {
|
.chat-history-container {
|
||||||
min-height: 200px;
|
min-height: 200px;
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
height: 300px;
|
height: 300px;
|
||||||
min-height: 300px;
|
min-height: 300px;
|
||||||
overflow-x: scroll;
|
overflow: scroll;
|
||||||
}
|
}
|
||||||
|
|
||||||
.color {
|
.color {
|
||||||
|
@ -43,7 +43,7 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
this._width = 0;
|
this._width = 0;
|
||||||
this._height = 0;
|
this._height = 0;
|
||||||
this._isHolding = false;
|
this._isHolding = false;
|
||||||
this._lastUsedTile = new NitroPoint(-1,-1);
|
this._lastUsedTile = new NitroPoint(-1, -1);
|
||||||
this._actionSettings = new ActionSettings();
|
this._actionSettings = new ActionSettings();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -127,9 +127,8 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
const bufIndex = j + bufSize;
|
const bufIndex = j + bufSize;
|
||||||
const data = buffer.slice(j, bufIndex);
|
const data = buffer.slice(j, bufIndex);
|
||||||
|
|
||||||
const width = data[4];
|
const width = TILE_SIZE;
|
||||||
const height = data[5];
|
const height = TILE_SIZE / 2;
|
||||||
|
|
||||||
|
|
||||||
const mousePositionX = Math.floor(tempPoint.x);
|
const mousePositionX = Math.floor(tempPoint.x);
|
||||||
const mousePositionY = Math.floor(tempPoint.y);
|
const mousePositionY = Math.floor(tempPoint.y);
|
||||||
@ -137,12 +136,11 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
const tileStartX = data[2];
|
const tileStartX = data[2];
|
||||||
const tileStartY = data[3];
|
const tileStartY = data[3];
|
||||||
|
|
||||||
|
|
||||||
const centreX = tileStartX + (width / 2);
|
const centreX = tileStartX + (width / 2);
|
||||||
const centreY = tileStartY + (height / 2);
|
const centreY = tileStartY + (height / 2);
|
||||||
|
|
||||||
const dx = Math.abs(mousePositionX - centreX - 2);
|
const dx = Math.abs(mousePositionX - centreX);
|
||||||
const dy = Math.abs(mousePositionY - centreY - 2);
|
const dy = Math.abs(mousePositionY - centreY);
|
||||||
|
|
||||||
const solution = (dx / (width * 0.5) + dy / (height * 0.5) <= 1);//todo: improve this
|
const solution = (dx / (width * 0.5) + dy / (height * 0.5) <= 1);//todo: improve this
|
||||||
if(solution)
|
if(solution)
|
||||||
@ -171,7 +169,6 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
private onClick(x: number, y: number): void
|
private onClick(x: number, y: number): void
|
||||||
{
|
{
|
||||||
const tile = this._tilemap[y][x];
|
const tile = this._tilemap[y][x];
|
||||||
@ -212,7 +209,7 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
{
|
{
|
||||||
if((x + 1) > this._width) this._width = x + 1;
|
if((x + 1) > this._width) this._width = x + 1;
|
||||||
|
|
||||||
if( (y + 1) > this._height) this._height = y + 1;
|
if((y + 1) > this._height) this._height = y + 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
const newHeight = HEIGHT_SCHEME[futureHeightIndex];
|
const newHeight = HEIGHT_SCHEME[futureHeightIndex];
|
||||||
@ -243,7 +240,7 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
if(tile.isBlocked) assetName = FloorplanEditor.TILE_BLOCKED;
|
if(tile.isBlocked) assetName = FloorplanEditor.TILE_BLOCKED;
|
||||||
|
|
||||||
//if((tile.height === 'x') || tile.height === 'X') continue;
|
//if((tile.height === 'x') || tile.height === 'X') continue;
|
||||||
const [positionX, positionY ] = getScreenPositionForTile(x, y);
|
const [positionX, positionY] = getScreenPositionForTile(x, y);
|
||||||
this._tilemapRenderer.tile(`${assetName}.png`, positionX, positionY);
|
this._tilemapRenderer.tile(`${assetName}.png`, positionX, positionY);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -337,10 +334,10 @@ export class FloorplanEditor extends PixiApplicationProxy
|
|||||||
|
|
||||||
if(tile.height !== 'x')
|
if(tile.height !== 'x')
|
||||||
{
|
{
|
||||||
if( (x + 1) > this._width)
|
if((x + 1) > this._width)
|
||||||
this._width = x + 1;
|
this._width = x + 1;
|
||||||
|
|
||||||
if( (y + 1) > this._height)
|
if((y + 1) > this._height)
|
||||||
this._height = y + 1;
|
this._height = y + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -25,7 +25,7 @@ export const RelationshipsContainerView: FC<RelationshipsContainerViewProps> = p
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div className="relationship-container d-flex flex-row align-items-center w-100">
|
<div className="relationship-container d-flex flex-row align-items-center w-100">
|
||||||
<i className={`icon icon-relationship-${relationshipName} flex-shrink-0 align-self-baseline mt-2`} />
|
<i className={`nitro-friends-spritesheet icon-${relationshipName} flex-shrink-0 align-self-baseline mt-2`} />
|
||||||
<div className="w-100 d-flex flex-column">
|
<div className="w-100 d-flex flex-column">
|
||||||
<span className={'relationship mx-2' + (!simple ? ' advanced' : '')}>
|
<span className={'relationship mx-2' + (!simple ? ' advanced' : '')}>
|
||||||
<span className="cursor-pointer relationship-text" onClick={ event => OnUserClick(relationshipInfo)}>
|
<span className="cursor-pointer relationship-text" onClick={ event => OnUserClick(relationshipInfo)}>
|
||||||
|
Loading…
Reference in New Issue
Block a user