-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add starfield bg, adjust collection/grid views, fix fonts
Note: fonts do not seem to load reliably on windows, defaulting to Pegasus defaults for now :-(
- Loading branch information
1 parent
790af41
commit c72e08e
Showing
14 changed files
with
153 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,76 @@ | ||
import QtQuick 2.8 | ||
import QtQuick.Particles 2.8 | ||
import QtGraphicalEffects 1.12 | ||
|
||
|
||
Item { | ||
id: starFieldAF | ||
width: vpx(1280) | ||
height: vpx(720) | ||
|
||
ParticleSystem { | ||
id: particlesystemSmall | ||
anchors.fill: starFieldAF | ||
|
||
ImageParticle { | ||
id: stars | ||
source: "assets/starfield/star.png" | ||
groups: ["stars"] | ||
opacity: 0.3 | ||
scale: 1 | ||
} | ||
|
||
Emitter { | ||
id: starsemitter | ||
anchors.fill: parent | ||
emitRate: 100 // parent.width / 10 | ||
lifeSpan: 20000 | ||
group: "stars" | ||
endSize: vpx(10) | ||
} | ||
} | ||
|
||
ParticleSystem { | ||
id: particlesystemBig | ||
anchors.fill: parent | ||
|
||
ImageParticle { | ||
id: starsBig | ||
source: "assets/starfield/star.png" | ||
groups: ["starsBig"] | ||
opacity: 0.8 | ||
scale: 1 | ||
} | ||
|
||
Emitter { | ||
id: starsemitterBig | ||
anchors.fill: parent | ||
emitRate: 5 | ||
lifeSpan: 35000 | ||
group: "starsBig" | ||
endSize: vpx(15) | ||
} | ||
} | ||
|
||
ParticleSystem { | ||
id: particlesystemBigger | ||
anchors.fill: parent | ||
|
||
ImageParticle { | ||
id: starsBigger | ||
source: "assets/starfield/star.png" | ||
groups: ["starsBigger"] | ||
opacity: 1 | ||
scale: 1 | ||
} | ||
|
||
Emitter { | ||
id: starsemitterBigger | ||
anchors.fill: parent | ||
emitRate: 0.2 | ||
lifeSpan: 50000 | ||
group: "starsBigger" | ||
endSize: vpx(30) | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,5 @@ | ||
name: Homage | ||
author: asdfgasfhsn | ||
version: 0.1 | ||
summary: A theme paying a modern Homage to great console and game box art | ||
homepage: https://github.com/asdfgasfhsn/pegasus-theme-homage/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters