Initial source commit
63
.gitattributes
vendored
Normal file
|
@ -0,0 +1,63 @@
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior to automatically normalize line endings.
|
||||||
|
###############################################################################
|
||||||
|
* text=auto
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set default behavior for command prompt diff.
|
||||||
|
#
|
||||||
|
# This is need for earlier builds of msysgit that does not have it on by
|
||||||
|
# default for csharp files.
|
||||||
|
# Note: This is only used by command line
|
||||||
|
###############################################################################
|
||||||
|
#*.cs diff=csharp
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# Set the merge driver for project and solution files
|
||||||
|
#
|
||||||
|
# Merging from the command prompt will add diff markers to the files if there
|
||||||
|
# are conflicts (Merging from VS is not affected by the settings below, in VS
|
||||||
|
# the diff markers are never inserted). Diff markers may cause the following
|
||||||
|
# file extensions to fail to load in VS. An alternative would be to treat
|
||||||
|
# these files as binary and thus will always conflict and require user
|
||||||
|
# intervention with every merge. To do so, just uncomment the entries below
|
||||||
|
###############################################################################
|
||||||
|
#*.sln merge=binary
|
||||||
|
#*.csproj merge=binary
|
||||||
|
#*.vbproj merge=binary
|
||||||
|
#*.vcxproj merge=binary
|
||||||
|
#*.vcproj merge=binary
|
||||||
|
#*.dbproj merge=binary
|
||||||
|
#*.fsproj merge=binary
|
||||||
|
#*.lsproj merge=binary
|
||||||
|
#*.wixproj merge=binary
|
||||||
|
#*.modelproj merge=binary
|
||||||
|
#*.sqlproj merge=binary
|
||||||
|
#*.wwaproj merge=binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# behavior for image files
|
||||||
|
#
|
||||||
|
# image files are treated as binary by default.
|
||||||
|
###############################################################################
|
||||||
|
#*.jpg binary
|
||||||
|
#*.png binary
|
||||||
|
#*.gif binary
|
||||||
|
|
||||||
|
###############################################################################
|
||||||
|
# diff behavior for common document formats
|
||||||
|
#
|
||||||
|
# Convert binary document formats to text before diffing them. This feature
|
||||||
|
# is only available from the command line. Turn it on by uncommenting the
|
||||||
|
# entries below.
|
||||||
|
###############################################################################
|
||||||
|
#*.doc diff=astextplain
|
||||||
|
#*.DOC diff=astextplain
|
||||||
|
#*.docx diff=astextplain
|
||||||
|
#*.DOCX diff=astextplain
|
||||||
|
#*.dot diff=astextplain
|
||||||
|
#*.DOT diff=astextplain
|
||||||
|
#*.pdf diff=astextplain
|
||||||
|
#*.PDF diff=astextplain
|
||||||
|
#*.rtf diff=astextplain
|
||||||
|
#*.RTF diff=astextplain
|
106
.gitignore
vendored
Normal file
|
@ -0,0 +1,106 @@
|
||||||
|
### Audio ###
|
||||||
|
|
||||||
|
*.wav
|
||||||
|
*.ogg
|
||||||
|
|
||||||
|
# Created by https://www.gitignore.io/api/linux,godot,macos,backup,windows,visualstudiocode
|
||||||
|
# Edit at https://www.gitignore.io/?templates=linux,godot,macos,backup,windows,visualstudiocode
|
||||||
|
|
||||||
|
### Backup ###
|
||||||
|
*.bak
|
||||||
|
*.gho
|
||||||
|
*.ori
|
||||||
|
*.orig
|
||||||
|
*.tmp
|
||||||
|
|
||||||
|
### Godot ###
|
||||||
|
|
||||||
|
# Godot-specific ignores
|
||||||
|
.import/
|
||||||
|
export.cfg
|
||||||
|
export_presets.cfg
|
||||||
|
|
||||||
|
# Mono-specific ignores
|
||||||
|
.mono/
|
||||||
|
|
||||||
|
### Linux ###
|
||||||
|
*~
|
||||||
|
|
||||||
|
# temporary files which can be created if a process still has a handle open of a deleted file
|
||||||
|
.fuse_hidden*
|
||||||
|
|
||||||
|
# KDE directory preferences
|
||||||
|
.directory
|
||||||
|
|
||||||
|
# Linux trash folder which might appear on any partition or disk
|
||||||
|
.Trash-*
|
||||||
|
|
||||||
|
# .nfs files are created when an open file is removed but is still being accessed
|
||||||
|
.nfs*
|
||||||
|
|
||||||
|
### macOS ###
|
||||||
|
# General
|
||||||
|
.DS_Store
|
||||||
|
.AppleDouble
|
||||||
|
.LSOverride
|
||||||
|
|
||||||
|
# Icon must end with two \r
|
||||||
|
Icon
|
||||||
|
|
||||||
|
# Thumbnails
|
||||||
|
._*
|
||||||
|
|
||||||
|
# Files that might appear in the root of a volume
|
||||||
|
.DocumentRevisions-V100
|
||||||
|
.fseventsd
|
||||||
|
.Spotlight-V100
|
||||||
|
.TemporaryItems
|
||||||
|
.Trashes
|
||||||
|
.VolumeIcon.icns
|
||||||
|
.com.apple.timemachine.donotpresent
|
||||||
|
|
||||||
|
# Directories potentially created on remote AFP share
|
||||||
|
.AppleDB
|
||||||
|
.AppleDesktop
|
||||||
|
Network Trash Folder
|
||||||
|
Temporary Items
|
||||||
|
.apdisk
|
||||||
|
|
||||||
|
### VisualStudioCode ###
|
||||||
|
.vscode/*
|
||||||
|
!.vscode/settings.json
|
||||||
|
!.vscode/tasks.json
|
||||||
|
!.vscode/launch.json
|
||||||
|
!.vscode/extensions.json
|
||||||
|
|
||||||
|
### VisualStudioCode Patch ###
|
||||||
|
# Ignore all local history of files
|
||||||
|
.history
|
||||||
|
|
||||||
|
### Windows ###
|
||||||
|
# Windows thumbnail cache files
|
||||||
|
Thumbs.db
|
||||||
|
Thumbs.db:encryptable
|
||||||
|
ehthumbs.db
|
||||||
|
ehthumbs_vista.db
|
||||||
|
|
||||||
|
# Dump file
|
||||||
|
*.stackdump
|
||||||
|
|
||||||
|
# Folder config file
|
||||||
|
[Dd]esktop.ini
|
||||||
|
|
||||||
|
# Recycle Bin used on file shares
|
||||||
|
$RECYCLE.BIN/
|
||||||
|
|
||||||
|
# Windows Installer files
|
||||||
|
*.cab
|
||||||
|
*.msi
|
||||||
|
*.msix
|
||||||
|
*.msm
|
||||||
|
*.msp
|
||||||
|
|
||||||
|
# Windows shortcuts
|
||||||
|
*.lnk
|
||||||
|
|
||||||
|
# End of https://www.gitignore.io/api/linux,godot,macos,backup,windows,visualstudiocode
|
394
CC-BY
Normal file
|
@ -0,0 +1,394 @@
|
||||||
|
Attribution 4.0 International
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons Corporation ("Creative Commons") is not a law firm and
|
||||||
|
does not provide legal services or legal advice. Distribution of
|
||||||
|
Creative Commons public licenses does not create a lawyer-client or
|
||||||
|
other relationship. Creative Commons makes its licenses and related
|
||||||
|
information available on an "as-is" basis. Creative Commons gives no
|
||||||
|
warranties regarding its licenses, any material licensed under their
|
||||||
|
terms and conditions, or any related information. Creative Commons
|
||||||
|
disclaims all liability for damages resulting from their use to the
|
||||||
|
fullest extent possible.
|
||||||
|
|
||||||
|
Using Creative Commons Public Licenses
|
||||||
|
|
||||||
|
Creative Commons public licenses provide a standard set of terms and
|
||||||
|
conditions that creators and other rights holders may use to share
|
||||||
|
original works of authorship and other material subject to copyright
|
||||||
|
and certain other rights specified in the public license below. The
|
||||||
|
following considerations are for informational purposes only, are not
|
||||||
|
exhaustive, and do not form part of our licenses.
|
||||||
|
|
||||||
|
Considerations for licensors: Our public licenses are
|
||||||
|
intended for use by those authorized to give the public
|
||||||
|
permission to use material in ways otherwise restricted by
|
||||||
|
copyright and certain other rights. Our licenses are
|
||||||
|
irrevocable. Licensors should read and understand the terms
|
||||||
|
and conditions of the license they choose before applying it.
|
||||||
|
Licensors should also secure all rights necessary before
|
||||||
|
applying our licenses so that the public can reuse the
|
||||||
|
material as expected. Licensors should clearly mark any
|
||||||
|
material not subject to the license. This includes other CC-
|
||||||
|
licensed material, or material used under an exception or
|
||||||
|
limitation to copyright. More considerations for licensors:
|
||||||
|
wiki.creativecommons.org/Considerations_for_licensors
|
||||||
|
|
||||||
|
Considerations for the public: By using one of our public
|
||||||
|
licenses, a licensor grants the public permission to use the
|
||||||
|
licensed material under specified terms and conditions. If
|
||||||
|
the licensor's permission is not necessary for any reason--for
|
||||||
|
example, because of any applicable exception or limitation to
|
||||||
|
copyright--then that use is not regulated by the license. Our
|
||||||
|
licenses grant only permissions under copyright and certain
|
||||||
|
other rights that a licensor has authority to grant. Use of
|
||||||
|
the licensed material may still be restricted for other
|
||||||
|
reasons, including because others have copyright or other
|
||||||
|
rights in the material. A licensor may make special requests,
|
||||||
|
such as asking that all changes be marked or described.
|
||||||
|
Although not required by our licenses, you are encouraged to
|
||||||
|
respect those requests where reasonable. More_considerations
|
||||||
|
for the public:
|
||||||
|
wiki.creativecommons.org/Considerations_for_licensees
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons Attribution 4.0 International Public License
|
||||||
|
|
||||||
|
By exercising the Licensed Rights (defined below), You accept and agree
|
||||||
|
to be bound by the terms and conditions of this Creative Commons
|
||||||
|
Attribution 4.0 International Public License ("Public License"). To the
|
||||||
|
extent this Public License may be interpreted as a contract, You are
|
||||||
|
granted the Licensed Rights in consideration of Your acceptance of
|
||||||
|
these terms and conditions, and the Licensor grants You such rights in
|
||||||
|
consideration of benefits the Licensor receives from making the
|
||||||
|
Licensed Material available under these terms and conditions.
|
||||||
|
|
||||||
|
|
||||||
|
Section 1 -- Definitions.
|
||||||
|
|
||||||
|
a. Adapted Material means material subject to Copyright and Similar
|
||||||
|
Rights that is derived from or based upon the Licensed Material
|
||||||
|
and in which the Licensed Material is translated, altered,
|
||||||
|
arranged, transformed, or otherwise modified in a manner requiring
|
||||||
|
permission under the Copyright and Similar Rights held by the
|
||||||
|
Licensor. For purposes of this Public License, where the Licensed
|
||||||
|
Material is a musical work, performance, or sound recording,
|
||||||
|
Adapted Material is always produced where the Licensed Material is
|
||||||
|
synched in timed relation with a moving image.
|
||||||
|
|
||||||
|
b. Adapter's License means the license You apply to Your Copyright
|
||||||
|
and Similar Rights in Your contributions to Adapted Material in
|
||||||
|
accordance with the terms and conditions of this Public License.
|
||||||
|
|
||||||
|
c. Copyright and Similar Rights means copyright and/or similar rights
|
||||||
|
closely related to copyright including, without limitation,
|
||||||
|
performance, broadcast, sound recording, and Sui Generis Database
|
||||||
|
Rights, without regard to how the rights are labeled or
|
||||||
|
categorized. For purposes of this Public License, the rights
|
||||||
|
specified in Section 2(b)(1)-(2) are not Copyright and Similar
|
||||||
|
Rights.
|
||||||
|
|
||||||
|
d. Effective Technological Measures means those measures that, in the
|
||||||
|
absence of proper authority, may not be circumvented under laws
|
||||||
|
fulfilling obligations under Article 11 of the WIPO Copyright
|
||||||
|
Treaty adopted on December 20, 1996, and/or similar international
|
||||||
|
agreements.
|
||||||
|
|
||||||
|
e. Exceptions and Limitations means fair use, fair dealing, and/or
|
||||||
|
any other exception or limitation to Copyright and Similar Rights
|
||||||
|
that applies to Your use of the Licensed Material.
|
||||||
|
|
||||||
|
f. Licensed Material means the artistic or literary work, database,
|
||||||
|
or other material to which the Licensor applied this Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
g. Licensed Rights means the rights granted to You subject to the
|
||||||
|
terms and conditions of this Public License, which are limited to
|
||||||
|
all Copyright and Similar Rights that apply to Your use of the
|
||||||
|
Licensed Material and that the Licensor has authority to license.
|
||||||
|
|
||||||
|
h. Licensor means the individual(s) or entity(ies) granting rights
|
||||||
|
under this Public License.
|
||||||
|
|
||||||
|
i. Share means to provide material to the public by any means or
|
||||||
|
process that requires permission under the Licensed Rights, such
|
||||||
|
as reproduction, public display, public performance, distribution,
|
||||||
|
dissemination, communication, or importation, and to make material
|
||||||
|
available to the public including in ways that members of the
|
||||||
|
public may access the material from a place and at a time
|
||||||
|
individually chosen by them.
|
||||||
|
|
||||||
|
j. Sui Generis Database Rights means rights other than copyright
|
||||||
|
resulting from Directive 96/9/EC of the European Parliament and of
|
||||||
|
the Council of 11 March 1996 on the legal protection of databases,
|
||||||
|
as amended and/or succeeded, as well as other essentially
|
||||||
|
equivalent rights anywhere in the world.
|
||||||
|
|
||||||
|
k. You means the individual or entity exercising the Licensed Rights
|
||||||
|
under this Public License. Your has a corresponding meaning.
|
||||||
|
|
||||||
|
|
||||||
|
Section 2 -- Scope.
|
||||||
|
|
||||||
|
a. License grant.
|
||||||
|
|
||||||
|
1. Subject to the terms and conditions of this Public License,
|
||||||
|
the Licensor hereby grants You a worldwide, royalty-free,
|
||||||
|
non-sublicensable, non-exclusive, irrevocable license to
|
||||||
|
exercise the Licensed Rights in the Licensed Material to:
|
||||||
|
|
||||||
|
a. reproduce and Share the Licensed Material, in whole or
|
||||||
|
in part; and
|
||||||
|
|
||||||
|
b. produce, reproduce, and Share Adapted Material.
|
||||||
|
|
||||||
|
2. Exceptions and Limitations. For the avoidance of doubt, where
|
||||||
|
Exceptions and Limitations apply to Your use, this Public
|
||||||
|
License does not apply, and You do not need to comply with
|
||||||
|
its terms and conditions.
|
||||||
|
|
||||||
|
3. Term. The term of this Public License is specified in Section
|
||||||
|
6(a).
|
||||||
|
|
||||||
|
4. Media and formats; technical modifications allowed. The
|
||||||
|
Licensor authorizes You to exercise the Licensed Rights in
|
||||||
|
all media and formats whether now known or hereafter created,
|
||||||
|
and to make technical modifications necessary to do so. The
|
||||||
|
Licensor waives and/or agrees not to assert any right or
|
||||||
|
authority to forbid You from making technical modifications
|
||||||
|
necessary to exercise the Licensed Rights, including
|
||||||
|
technical modifications necessary to circumvent Effective
|
||||||
|
Technological Measures. For purposes of this Public License,
|
||||||
|
simply making modifications authorized by this Section 2(a)
|
||||||
|
(4) never produces Adapted Material.
|
||||||
|
|
||||||
|
5. Downstream recipients.
|
||||||
|
|
||||||
|
a. Offer from the Licensor -- Licensed Material. Every
|
||||||
|
recipient of the Licensed Material automatically
|
||||||
|
receives an offer from the Licensor to exercise the
|
||||||
|
Licensed Rights under the terms and conditions of this
|
||||||
|
Public License.
|
||||||
|
|
||||||
|
b. No downstream restrictions. You may not offer or impose
|
||||||
|
any additional or different terms or conditions on, or
|
||||||
|
apply any Effective Technological Measures to, the
|
||||||
|
Licensed Material if doing so restricts exercise of the
|
||||||
|
Licensed Rights by any recipient of the Licensed
|
||||||
|
Material.
|
||||||
|
|
||||||
|
6. No endorsement. Nothing in this Public License constitutes or
|
||||||
|
may be construed as permission to assert or imply that You
|
||||||
|
are, or that Your use of the Licensed Material is, connected
|
||||||
|
with, or sponsored, endorsed, or granted official status by,
|
||||||
|
the Licensor or others designated to receive attribution as
|
||||||
|
provided in Section 3(a)(1)(A)(i).
|
||||||
|
|
||||||
|
b. Other rights.
|
||||||
|
|
||||||
|
1. Moral rights, such as the right of integrity, are not
|
||||||
|
licensed under this Public License, nor are publicity,
|
||||||
|
privacy, and/or other similar personality rights; however, to
|
||||||
|
the extent possible, the Licensor waives and/or agrees not to
|
||||||
|
assert any such rights held by the Licensor to the limited
|
||||||
|
extent necessary to allow You to exercise the Licensed
|
||||||
|
Rights, but not otherwise.
|
||||||
|
|
||||||
|
2. Patent and trademark rights are not licensed under this
|
||||||
|
Public License.
|
||||||
|
|
||||||
|
3. To the extent possible, the Licensor waives any right to
|
||||||
|
collect royalties from You for the exercise of the Licensed
|
||||||
|
Rights, whether directly or through a collecting society
|
||||||
|
under any voluntary or waivable statutory or compulsory
|
||||||
|
licensing scheme. In all other cases the Licensor expressly
|
||||||
|
reserves any right to collect such royalties.
|
||||||
|
|
||||||
|
|
||||||
|
Section 3 -- License Conditions.
|
||||||
|
|
||||||
|
Your exercise of the Licensed Rights is expressly made subject to the
|
||||||
|
following conditions.
|
||||||
|
|
||||||
|
a. Attribution.
|
||||||
|
|
||||||
|
1. If You Share the Licensed Material (including in modified
|
||||||
|
form), You must:
|
||||||
|
|
||||||
|
a. retain the following if it is supplied by the Licensor
|
||||||
|
with the Licensed Material:
|
||||||
|
|
||||||
|
i. identification of the creator(s) of the Licensed
|
||||||
|
Material and any others designated to receive
|
||||||
|
attribution, in any reasonable manner requested by
|
||||||
|
the Licensor (including by pseudonym if
|
||||||
|
designated);
|
||||||
|
|
||||||
|
ii. a copyright notice;
|
||||||
|
|
||||||
|
iii. a notice that refers to this Public License;
|
||||||
|
|
||||||
|
iv. a notice that refers to the disclaimer of
|
||||||
|
warranties;
|
||||||
|
|
||||||
|
v. a URI or hyperlink to the Licensed Material to the
|
||||||
|
extent reasonably practicable;
|
||||||
|
|
||||||
|
b. indicate if You modified the Licensed Material and
|
||||||
|
retain an indication of any previous modifications; and
|
||||||
|
|
||||||
|
c. indicate the Licensed Material is licensed under this
|
||||||
|
Public License, and include the text of, or the URI or
|
||||||
|
hyperlink to, this Public License.
|
||||||
|
|
||||||
|
2. You may satisfy the conditions in Section 3(a)(1) in any
|
||||||
|
reasonable manner based on the medium, means, and context in
|
||||||
|
which You Share the Licensed Material. For example, it may be
|
||||||
|
reasonable to satisfy the conditions by providing a URI or
|
||||||
|
hyperlink to a resource that includes the required
|
||||||
|
information.
|
||||||
|
|
||||||
|
3. If requested by the Licensor, You must remove any of the
|
||||||
|
information required by Section 3(a)(1)(A) to the extent
|
||||||
|
reasonably practicable.
|
||||||
|
|
||||||
|
4. If You Share Adapted Material You produce, the Adapter's
|
||||||
|
License You apply must not prevent recipients of the Adapted
|
||||||
|
Material from complying with this Public License.
|
||||||
|
|
||||||
|
|
||||||
|
Section 4 -- Sui Generis Database Rights.
|
||||||
|
|
||||||
|
Where the Licensed Rights include Sui Generis Database Rights that
|
||||||
|
apply to Your use of the Licensed Material:
|
||||||
|
|
||||||
|
a. for the avoidance of doubt, Section 2(a)(1) grants You the right
|
||||||
|
to extract, reuse, reproduce, and Share all or a substantial
|
||||||
|
portion of the contents of the database;
|
||||||
|
|
||||||
|
b. if You include all or a substantial portion of the database
|
||||||
|
contents in a database in which You have Sui Generis Database
|
||||||
|
Rights, then the database in which You have Sui Generis Database
|
||||||
|
Rights (but not its individual contents) is Adapted Material; and
|
||||||
|
|
||||||
|
c. You must comply with the conditions in Section 3(a) if You Share
|
||||||
|
all or a substantial portion of the contents of the database.
|
||||||
|
|
||||||
|
For the avoidance of doubt, this Section 4 supplements and does not
|
||||||
|
replace Your obligations under this Public License where the Licensed
|
||||||
|
Rights include other Copyright and Similar Rights.
|
||||||
|
|
||||||
|
|
||||||
|
Section 5 -- Disclaimer of Warranties and Limitation of Liability.
|
||||||
|
|
||||||
|
a. UNLESS OTHERWISE SEPARATELY UNDERTAKEN BY THE LICENSOR, TO THE
|
||||||
|
EXTENT POSSIBLE, THE LICENSOR OFFERS THE LICENSED MATERIAL AS-IS
|
||||||
|
AND AS-AVAILABLE, AND MAKES NO REPRESENTATIONS OR WARRANTIES OF
|
||||||
|
ANY KIND CONCERNING THE LICENSED MATERIAL, WHETHER EXPRESS,
|
||||||
|
IMPLIED, STATUTORY, OR OTHER. THIS INCLUDES, WITHOUT LIMITATION,
|
||||||
|
WARRANTIES OF TITLE, MERCHANTABILITY, FITNESS FOR A PARTICULAR
|
||||||
|
PURPOSE, NON-INFRINGEMENT, ABSENCE OF LATENT OR OTHER DEFECTS,
|
||||||
|
ACCURACY, OR THE PRESENCE OR ABSENCE OF ERRORS, WHETHER OR NOT
|
||||||
|
KNOWN OR DISCOVERABLE. WHERE DISCLAIMERS OF WARRANTIES ARE NOT
|
||||||
|
ALLOWED IN FULL OR IN PART, THIS DISCLAIMER MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
b. TO THE EXTENT POSSIBLE, IN NO EVENT WILL THE LICENSOR BE LIABLE
|
||||||
|
TO YOU ON ANY LEGAL THEORY (INCLUDING, WITHOUT LIMITATION,
|
||||||
|
NEGLIGENCE) OR OTHERWISE FOR ANY DIRECT, SPECIAL, INDIRECT,
|
||||||
|
INCIDENTAL, CONSEQUENTIAL, PUNITIVE, EXEMPLARY, OR OTHER LOSSES,
|
||||||
|
COSTS, EXPENSES, OR DAMAGES ARISING OUT OF THIS PUBLIC LICENSE OR
|
||||||
|
USE OF THE LICENSED MATERIAL, EVEN IF THE LICENSOR HAS BEEN
|
||||||
|
ADVISED OF THE POSSIBILITY OF SUCH LOSSES, COSTS, EXPENSES, OR
|
||||||
|
DAMAGES. WHERE A LIMITATION OF LIABILITY IS NOT ALLOWED IN FULL OR
|
||||||
|
IN PART, THIS LIMITATION MAY NOT APPLY TO YOU.
|
||||||
|
|
||||||
|
c. The disclaimer of warranties and limitation of liability provided
|
||||||
|
above shall be interpreted in a manner that, to the extent
|
||||||
|
possible, most closely approximates an absolute disclaimer and
|
||||||
|
waiver of all liability.
|
||||||
|
|
||||||
|
|
||||||
|
Section 6 -- Term and Termination.
|
||||||
|
|
||||||
|
a. This Public License applies for the term of the Copyright and
|
||||||
|
Similar Rights licensed here. However, if You fail to comply with
|
||||||
|
this Public License, then Your rights under this Public License
|
||||||
|
terminate automatically.
|
||||||
|
|
||||||
|
b. Where Your right to use the Licensed Material has terminated under
|
||||||
|
Section 6(a), it reinstates:
|
||||||
|
|
||||||
|
1. automatically as of the date the violation is cured, provided
|
||||||
|
it is cured within 30 days of Your discovery of the
|
||||||
|
violation; or
|
||||||
|
|
||||||
|
2. upon express reinstatement by the Licensor.
|
||||||
|
|
||||||
|
For the avoidance of doubt, this Section 6(b) does not affect any
|
||||||
|
right the Licensor may have to seek remedies for Your violations
|
||||||
|
of this Public License.
|
||||||
|
|
||||||
|
c. For the avoidance of doubt, the Licensor may also offer the
|
||||||
|
Licensed Material under separate terms or conditions or stop
|
||||||
|
distributing the Licensed Material at any time; however, doing so
|
||||||
|
will not terminate this Public License.
|
||||||
|
|
||||||
|
d. Sections 1, 5, 6, 7, and 8 survive termination of this Public
|
||||||
|
License.
|
||||||
|
|
||||||
|
|
||||||
|
Section 7 -- Other Terms and Conditions.
|
||||||
|
|
||||||
|
a. The Licensor shall not be bound by any additional or different
|
||||||
|
terms or conditions communicated by You unless expressly agreed.
|
||||||
|
|
||||||
|
b. Any arrangements, understandings, or agreements regarding the
|
||||||
|
Licensed Material not stated herein are separate from and
|
||||||
|
independent of the terms and conditions of this Public License.
|
||||||
|
|
||||||
|
|
||||||
|
Section 8 -- Interpretation.
|
||||||
|
|
||||||
|
a. For the avoidance of doubt, this Public License does not, and
|
||||||
|
shall not be interpreted to, reduce, limit, restrict, or impose
|
||||||
|
conditions on any use of the Licensed Material that could lawfully
|
||||||
|
be made without permission under this Public License.
|
||||||
|
|
||||||
|
b. To the extent possible, if any provision of this Public License is
|
||||||
|
deemed unenforceable, it shall be automatically reformed to the
|
||||||
|
minimum extent necessary to make it enforceable. If the provision
|
||||||
|
cannot be reformed, it shall be severed from this Public License
|
||||||
|
without affecting the enforceability of the remaining terms and
|
||||||
|
conditions.
|
||||||
|
|
||||||
|
c. No term or condition of this Public License will be waived and no
|
||||||
|
failure to comply consented to unless expressly agreed to by the
|
||||||
|
Licensor.
|
||||||
|
|
||||||
|
d. Nothing in this Public License constitutes or may be interpreted
|
||||||
|
as a limitation upon, or waiver of, any privileges and immunities
|
||||||
|
that apply to the Licensor or You, including from the legal
|
||||||
|
processes of any jurisdiction or authority.
|
||||||
|
|
||||||
|
|
||||||
|
=======================================================================
|
||||||
|
|
||||||
|
Creative Commons is not a party to its public licenses.
|
||||||
|
Notwithstanding, Creative Commons may elect to apply one of its public
|
||||||
|
licenses to material it publishes and in those instances will be
|
||||||
|
considered the "Licensor." Except for the limited purpose of indicating
|
||||||
|
that material is shared under a Creative Commons public license or as
|
||||||
|
otherwise permitted by the Creative Commons policies published at
|
||||||
|
creativecommons.org/policies, Creative Commons does not authorize the
|
||||||
|
use of the trademark "Creative Commons" or any other trademark or logo
|
||||||
|
of Creative Commons without its prior written consent including,
|
||||||
|
without limitation, in connection with any unauthorized modifications
|
||||||
|
to any of its public licenses or any other arrangements,
|
||||||
|
understandings, or agreements concerning use of licensed material. For
|
||||||
|
the avoidance of doubt, this paragraph does not form part of the public
|
||||||
|
licenses.
|
||||||
|
|
||||||
|
Creative Commons may be contacted at creativecommons.org.
|
||||||
|
|
373
LICENSE
Normal file
|
@ -0,0 +1,373 @@
|
||||||
|
Mozilla Public License Version 2.0
|
||||||
|
==================================
|
||||||
|
|
||||||
|
1. Definitions
|
||||||
|
--------------
|
||||||
|
|
||||||
|
1.1. "Contributor"
|
||||||
|
means each individual or legal entity that creates, contributes to
|
||||||
|
the creation of, or owns Covered Software.
|
||||||
|
|
||||||
|
1.2. "Contributor Version"
|
||||||
|
means the combination of the Contributions of others (if any) used
|
||||||
|
by a Contributor and that particular Contributor's Contribution.
|
||||||
|
|
||||||
|
1.3. "Contribution"
|
||||||
|
means Covered Software of a particular Contributor.
|
||||||
|
|
||||||
|
1.4. "Covered Software"
|
||||||
|
means Source Code Form to which the initial Contributor has attached
|
||||||
|
the notice in Exhibit A, the Executable Form of such Source Code
|
||||||
|
Form, and Modifications of such Source Code Form, in each case
|
||||||
|
including portions thereof.
|
||||||
|
|
||||||
|
1.5. "Incompatible With Secondary Licenses"
|
||||||
|
means
|
||||||
|
|
||||||
|
(a) that the initial Contributor has attached the notice described
|
||||||
|
in Exhibit B to the Covered Software; or
|
||||||
|
|
||||||
|
(b) that the Covered Software was made available under the terms of
|
||||||
|
version 1.1 or earlier of the License, but not also under the
|
||||||
|
terms of a Secondary License.
|
||||||
|
|
||||||
|
1.6. "Executable Form"
|
||||||
|
means any form of the work other than Source Code Form.
|
||||||
|
|
||||||
|
1.7. "Larger Work"
|
||||||
|
means a work that combines Covered Software with other material, in
|
||||||
|
a separate file or files, that is not Covered Software.
|
||||||
|
|
||||||
|
1.8. "License"
|
||||||
|
means this document.
|
||||||
|
|
||||||
|
1.9. "Licensable"
|
||||||
|
means having the right to grant, to the maximum extent possible,
|
||||||
|
whether at the time of the initial grant or subsequently, any and
|
||||||
|
all of the rights conveyed by this License.
|
||||||
|
|
||||||
|
1.10. "Modifications"
|
||||||
|
means any of the following:
|
||||||
|
|
||||||
|
(a) any file in Source Code Form that results from an addition to,
|
||||||
|
deletion from, or modification of the contents of Covered
|
||||||
|
Software; or
|
||||||
|
|
||||||
|
(b) any new file in Source Code Form that contains any Covered
|
||||||
|
Software.
|
||||||
|
|
||||||
|
1.11. "Patent Claims" of a Contributor
|
||||||
|
means any patent claim(s), including without limitation, method,
|
||||||
|
process, and apparatus claims, in any patent Licensable by such
|
||||||
|
Contributor that would be infringed, but for the grant of the
|
||||||
|
License, by the making, using, selling, offering for sale, having
|
||||||
|
made, import, or transfer of either its Contributions or its
|
||||||
|
Contributor Version.
|
||||||
|
|
||||||
|
1.12. "Secondary License"
|
||||||
|
means either the GNU General Public License, Version 2.0, the GNU
|
||||||
|
Lesser General Public License, Version 2.1, the GNU Affero General
|
||||||
|
Public License, Version 3.0, or any later versions of those
|
||||||
|
licenses.
|
||||||
|
|
||||||
|
1.13. "Source Code Form"
|
||||||
|
means the form of the work preferred for making modifications.
|
||||||
|
|
||||||
|
1.14. "You" (or "Your")
|
||||||
|
means an individual or a legal entity exercising rights under this
|
||||||
|
License. For legal entities, "You" includes any entity that
|
||||||
|
controls, is controlled by, or is under common control with You. For
|
||||||
|
purposes of this definition, "control" means (a) the power, direct
|
||||||
|
or indirect, to cause the direction or management of such entity,
|
||||||
|
whether by contract or otherwise, or (b) ownership of more than
|
||||||
|
fifty percent (50%) of the outstanding shares or beneficial
|
||||||
|
ownership of such entity.
|
||||||
|
|
||||||
|
2. License Grants and Conditions
|
||||||
|
--------------------------------
|
||||||
|
|
||||||
|
2.1. Grants
|
||||||
|
|
||||||
|
Each Contributor hereby grants You a world-wide, royalty-free,
|
||||||
|
non-exclusive license:
|
||||||
|
|
||||||
|
(a) under intellectual property rights (other than patent or trademark)
|
||||||
|
Licensable by such Contributor to use, reproduce, make available,
|
||||||
|
modify, display, perform, distribute, and otherwise exploit its
|
||||||
|
Contributions, either on an unmodified basis, with Modifications, or
|
||||||
|
as part of a Larger Work; and
|
||||||
|
|
||||||
|
(b) under Patent Claims of such Contributor to make, use, sell, offer
|
||||||
|
for sale, have made, import, and otherwise transfer either its
|
||||||
|
Contributions or its Contributor Version.
|
||||||
|
|
||||||
|
2.2. Effective Date
|
||||||
|
|
||||||
|
The licenses granted in Section 2.1 with respect to any Contribution
|
||||||
|
become effective for each Contribution on the date the Contributor first
|
||||||
|
distributes such Contribution.
|
||||||
|
|
||||||
|
2.3. Limitations on Grant Scope
|
||||||
|
|
||||||
|
The licenses granted in this Section 2 are the only rights granted under
|
||||||
|
this License. No additional rights or licenses will be implied from the
|
||||||
|
distribution or licensing of Covered Software under this License.
|
||||||
|
Notwithstanding Section 2.1(b) above, no patent license is granted by a
|
||||||
|
Contributor:
|
||||||
|
|
||||||
|
(a) for any code that a Contributor has removed from Covered Software;
|
||||||
|
or
|
||||||
|
|
||||||
|
(b) for infringements caused by: (i) Your and any other third party's
|
||||||
|
modifications of Covered Software, or (ii) the combination of its
|
||||||
|
Contributions with other software (except as part of its Contributor
|
||||||
|
Version); or
|
||||||
|
|
||||||
|
(c) under Patent Claims infringed by Covered Software in the absence of
|
||||||
|
its Contributions.
|
||||||
|
|
||||||
|
This License does not grant any rights in the trademarks, service marks,
|
||||||
|
or logos of any Contributor (except as may be necessary to comply with
|
||||||
|
the notice requirements in Section 3.4).
|
||||||
|
|
||||||
|
2.4. Subsequent Licenses
|
||||||
|
|
||||||
|
No Contributor makes additional grants as a result of Your choice to
|
||||||
|
distribute the Covered Software under a subsequent version of this
|
||||||
|
License (see Section 10.2) or under the terms of a Secondary License (if
|
||||||
|
permitted under the terms of Section 3.3).
|
||||||
|
|
||||||
|
2.5. Representation
|
||||||
|
|
||||||
|
Each Contributor represents that the Contributor believes its
|
||||||
|
Contributions are its original creation(s) or it has sufficient rights
|
||||||
|
to grant the rights to its Contributions conveyed by this License.
|
||||||
|
|
||||||
|
2.6. Fair Use
|
||||||
|
|
||||||
|
This License is not intended to limit any rights You have under
|
||||||
|
applicable copyright doctrines of fair use, fair dealing, or other
|
||||||
|
equivalents.
|
||||||
|
|
||||||
|
2.7. Conditions
|
||||||
|
|
||||||
|
Sections 3.1, 3.2, 3.3, and 3.4 are conditions of the licenses granted
|
||||||
|
in Section 2.1.
|
||||||
|
|
||||||
|
3. Responsibilities
|
||||||
|
-------------------
|
||||||
|
|
||||||
|
3.1. Distribution of Source Form
|
||||||
|
|
||||||
|
All distribution of Covered Software in Source Code Form, including any
|
||||||
|
Modifications that You create or to which You contribute, must be under
|
||||||
|
the terms of this License. You must inform recipients that the Source
|
||||||
|
Code Form of the Covered Software is governed by the terms of this
|
||||||
|
License, and how they can obtain a copy of this License. You may not
|
||||||
|
attempt to alter or restrict the recipients' rights in the Source Code
|
||||||
|
Form.
|
||||||
|
|
||||||
|
3.2. Distribution of Executable Form
|
||||||
|
|
||||||
|
If You distribute Covered Software in Executable Form then:
|
||||||
|
|
||||||
|
(a) such Covered Software must also be made available in Source Code
|
||||||
|
Form, as described in Section 3.1, and You must inform recipients of
|
||||||
|
the Executable Form how they can obtain a copy of such Source Code
|
||||||
|
Form by reasonable means in a timely manner, at a charge no more
|
||||||
|
than the cost of distribution to the recipient; and
|
||||||
|
|
||||||
|
(b) You may distribute such Executable Form under the terms of this
|
||||||
|
License, or sublicense it under different terms, provided that the
|
||||||
|
license for the Executable Form does not attempt to limit or alter
|
||||||
|
the recipients' rights in the Source Code Form under this License.
|
||||||
|
|
||||||
|
3.3. Distribution of a Larger Work
|
||||||
|
|
||||||
|
You may create and distribute a Larger Work under terms of Your choice,
|
||||||
|
provided that You also comply with the requirements of this License for
|
||||||
|
the Covered Software. If the Larger Work is a combination of Covered
|
||||||
|
Software with a work governed by one or more Secondary Licenses, and the
|
||||||
|
Covered Software is not Incompatible With Secondary Licenses, this
|
||||||
|
License permits You to additionally distribute such Covered Software
|
||||||
|
under the terms of such Secondary License(s), so that the recipient of
|
||||||
|
the Larger Work may, at their option, further distribute the Covered
|
||||||
|
Software under the terms of either this License or such Secondary
|
||||||
|
License(s).
|
||||||
|
|
||||||
|
3.4. Notices
|
||||||
|
|
||||||
|
You may not remove or alter the substance of any license notices
|
||||||
|
(including copyright notices, patent notices, disclaimers of warranty,
|
||||||
|
or limitations of liability) contained within the Source Code Form of
|
||||||
|
the Covered Software, except that You may alter any license notices to
|
||||||
|
the extent required to remedy known factual inaccuracies.
|
||||||
|
|
||||||
|
3.5. Application of Additional Terms
|
||||||
|
|
||||||
|
You may choose to offer, and to charge a fee for, warranty, support,
|
||||||
|
indemnity or liability obligations to one or more recipients of Covered
|
||||||
|
Software. However, You may do so only on Your own behalf, and not on
|
||||||
|
behalf of any Contributor. You must make it absolutely clear that any
|
||||||
|
such warranty, support, indemnity, or liability obligation is offered by
|
||||||
|
You alone, and You hereby agree to indemnify every Contributor for any
|
||||||
|
liability incurred by such Contributor as a result of warranty, support,
|
||||||
|
indemnity or liability terms You offer. You may include additional
|
||||||
|
disclaimers of warranty and limitations of liability specific to any
|
||||||
|
jurisdiction.
|
||||||
|
|
||||||
|
4. Inability to Comply Due to Statute or Regulation
|
||||||
|
---------------------------------------------------
|
||||||
|
|
||||||
|
If it is impossible for You to comply with any of the terms of this
|
||||||
|
License with respect to some or all of the Covered Software due to
|
||||||
|
statute, judicial order, or regulation then You must: (a) comply with
|
||||||
|
the terms of this License to the maximum extent possible; and (b)
|
||||||
|
describe the limitations and the code they affect. Such description must
|
||||||
|
be placed in a text file included with all distributions of the Covered
|
||||||
|
Software under this License. Except to the extent prohibited by statute
|
||||||
|
or regulation, such description must be sufficiently detailed for a
|
||||||
|
recipient of ordinary skill to be able to understand it.
|
||||||
|
|
||||||
|
5. Termination
|
||||||
|
--------------
|
||||||
|
|
||||||
|
5.1. The rights granted under this License will terminate automatically
|
||||||
|
if You fail to comply with any of its terms. However, if You become
|
||||||
|
compliant, then the rights granted under this License from a particular
|
||||||
|
Contributor are reinstated (a) provisionally, unless and until such
|
||||||
|
Contributor explicitly and finally terminates Your grants, and (b) on an
|
||||||
|
ongoing basis, if such Contributor fails to notify You of the
|
||||||
|
non-compliance by some reasonable means prior to 60 days after You have
|
||||||
|
come back into compliance. Moreover, Your grants from a particular
|
||||||
|
Contributor are reinstated on an ongoing basis if such Contributor
|
||||||
|
notifies You of the non-compliance by some reasonable means, this is the
|
||||||
|
first time You have received notice of non-compliance with this License
|
||||||
|
from such Contributor, and You become compliant prior to 30 days after
|
||||||
|
Your receipt of the notice.
|
||||||
|
|
||||||
|
5.2. If You initiate litigation against any entity by asserting a patent
|
||||||
|
infringement claim (excluding declaratory judgment actions,
|
||||||
|
counter-claims, and cross-claims) alleging that a Contributor Version
|
||||||
|
directly or indirectly infringes any patent, then the rights granted to
|
||||||
|
You by any and all Contributors for the Covered Software under Section
|
||||||
|
2.1 of this License shall terminate.
|
||||||
|
|
||||||
|
5.3. In the event of termination under Sections 5.1 or 5.2 above, all
|
||||||
|
end user license agreements (excluding distributors and resellers) which
|
||||||
|
have been validly granted by You or Your distributors under this License
|
||||||
|
prior to termination shall survive termination.
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 6. Disclaimer of Warranty *
|
||||||
|
* ------------------------- *
|
||||||
|
* *
|
||||||
|
* Covered Software is provided under this License on an "as is" *
|
||||||
|
* basis, without warranty of any kind, either expressed, implied, or *
|
||||||
|
* statutory, including, without limitation, warranties that the *
|
||||||
|
* Covered Software is free of defects, merchantable, fit for a *
|
||||||
|
* particular purpose or non-infringing. The entire risk as to the *
|
||||||
|
* quality and performance of the Covered Software is with You. *
|
||||||
|
* Should any Covered Software prove defective in any respect, You *
|
||||||
|
* (not any Contributor) assume the cost of any necessary servicing, *
|
||||||
|
* repair, or correction. This disclaimer of warranty constitutes an *
|
||||||
|
* essential part of this License. No use of any Covered Software is *
|
||||||
|
* authorized under this License except under this disclaimer. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
************************************************************************
|
||||||
|
* *
|
||||||
|
* 7. Limitation of Liability *
|
||||||
|
* -------------------------- *
|
||||||
|
* *
|
||||||
|
* Under no circumstances and under no legal theory, whether tort *
|
||||||
|
* (including negligence), contract, or otherwise, shall any *
|
||||||
|
* Contributor, or anyone who distributes Covered Software as *
|
||||||
|
* permitted above, be liable to You for any direct, indirect, *
|
||||||
|
* special, incidental, or consequential damages of any character *
|
||||||
|
* including, without limitation, damages for lost profits, loss of *
|
||||||
|
* goodwill, work stoppage, computer failure or malfunction, or any *
|
||||||
|
* and all other commercial damages or losses, even if such party *
|
||||||
|
* shall have been informed of the possibility of such damages. This *
|
||||||
|
* limitation of liability shall not apply to liability for death or *
|
||||||
|
* personal injury resulting from such party's negligence to the *
|
||||||
|
* extent applicable law prohibits such limitation. Some *
|
||||||
|
* jurisdictions do not allow the exclusion or limitation of *
|
||||||
|
* incidental or consequential damages, so this exclusion and *
|
||||||
|
* limitation may not apply to You. *
|
||||||
|
* *
|
||||||
|
************************************************************************
|
||||||
|
|
||||||
|
8. Litigation
|
||||||
|
-------------
|
||||||
|
|
||||||
|
Any litigation relating to this License may be brought only in the
|
||||||
|
courts of a jurisdiction where the defendant maintains its principal
|
||||||
|
place of business and such litigation shall be governed by laws of that
|
||||||
|
jurisdiction, without reference to its conflict-of-law provisions.
|
||||||
|
Nothing in this Section shall prevent a party's ability to bring
|
||||||
|
cross-claims or counter-claims.
|
||||||
|
|
||||||
|
9. Miscellaneous
|
||||||
|
----------------
|
||||||
|
|
||||||
|
This License represents the complete agreement concerning the subject
|
||||||
|
matter hereof. If any provision of this License is held to be
|
||||||
|
unenforceable, such provision shall be reformed only to the extent
|
||||||
|
necessary to make it enforceable. Any law or regulation which provides
|
||||||
|
that the language of a contract shall be construed against the drafter
|
||||||
|
shall not be used to construe this License against a Contributor.
|
||||||
|
|
||||||
|
10. Versions of the License
|
||||||
|
---------------------------
|
||||||
|
|
||||||
|
10.1. New Versions
|
||||||
|
|
||||||
|
Mozilla Foundation is the license steward. Except as provided in Section
|
||||||
|
10.3, no one other than the license steward has the right to modify or
|
||||||
|
publish new versions of this License. Each version will be given a
|
||||||
|
distinguishing version number.
|
||||||
|
|
||||||
|
10.2. Effect of New Versions
|
||||||
|
|
||||||
|
You may distribute the Covered Software under the terms of the version
|
||||||
|
of the License under which You originally received the Covered Software,
|
||||||
|
or under the terms of any subsequent version published by the license
|
||||||
|
steward.
|
||||||
|
|
||||||
|
10.3. Modified Versions
|
||||||
|
|
||||||
|
If you create software not governed by this License, and you want to
|
||||||
|
create a new license for such software, you may create and use a
|
||||||
|
modified version of this License if you rename the license and remove
|
||||||
|
any references to the name of the license steward (except to note that
|
||||||
|
such modified license differs from this License).
|
||||||
|
|
||||||
|
10.4. Distributing Source Code Form that is Incompatible With Secondary
|
||||||
|
Licenses
|
||||||
|
|
||||||
|
If You choose to distribute Source Code Form that is Incompatible With
|
||||||
|
Secondary Licenses under the terms of this version of the License, the
|
||||||
|
notice described in Exhibit B of this License must be attached.
|
||||||
|
|
||||||
|
Exhibit A - Source Code Form License Notice
|
||||||
|
-------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
If it is not possible or desirable to put the notice in a particular
|
||||||
|
file, then You may include the notice in a location (such as a LICENSE
|
||||||
|
file in a relevant directory) where a recipient would be likely to look
|
||||||
|
for such a notice.
|
||||||
|
|
||||||
|
You may add additional accurate notices of copyright ownership.
|
||||||
|
|
||||||
|
Exhibit B - "Incompatible With Secondary Licenses" Notice
|
||||||
|
---------------------------------------------------------
|
||||||
|
|
||||||
|
This Source Code Form is "Incompatible With Secondary Licenses", as
|
||||||
|
defined by the Mozilla Public License, v. 2.0.
|
3
README.md
Normal file
|
@ -0,0 +1,3 @@
|
||||||
|
# Tony's Dress Up
|
||||||
|
|
||||||
|
Tony's Dress Up is a open source dress up game. It's a remake of my original Flash game, ZC's Dress Up.
|
0
assets/.gitkeep
Normal file
14
project/default_env.tres
Normal file
|
@ -0,0 +1,14 @@
|
||||||
|
[gd_resource type="Environment" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[sub_resource type="ProceduralSky" id=1]
|
||||||
|
sky_top_color = Color( 0.0470588, 0.454902, 0.976471, 1 )
|
||||||
|
sky_horizon_color = Color( 0.556863, 0.823529, 0.909804, 1 )
|
||||||
|
sky_curve = 0.25
|
||||||
|
ground_bottom_color = Color( 0.101961, 0.145098, 0.188235, 1 )
|
||||||
|
ground_horizon_color = Color( 0.482353, 0.788235, 0.952941, 1 )
|
||||||
|
ground_curve = 0.01
|
||||||
|
sun_energy = 16.0
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
background_mode = 2
|
||||||
|
background_sky = SubResource( 1 )
|
BIN
project/fonts/RobotLight.res
Normal file
BIN
project/fonts/montserrat/Montserrat-ExtraBold.otf
Normal file
8
project/fonts/montserrat_extra_bold_16.tres
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://fonts/montserrat/Montserrat-ExtraBold.otf" type="DynamicFontData" id=1]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
use_mipmaps = true
|
||||||
|
use_filter = true
|
||||||
|
font_data = ExtResource( 1 )
|
9
project/fonts/montserrat_extra_bold_24.tres
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://fonts/montserrat/Montserrat-ExtraBold.otf" type="DynamicFontData" id=1]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
size = 32
|
||||||
|
use_mipmaps = true
|
||||||
|
use_filter = true
|
||||||
|
font_data = ExtResource( 1 )
|
9
project/fonts/montserrat_extra_bold_32.tres
Normal file
|
@ -0,0 +1,9 @@
|
||||||
|
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://fonts/montserrat/montserrat/Montserrat-ExtraBold.otf" type="DynamicFontData" id=1]
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
size = 32
|
||||||
|
use_mipmaps = true
|
||||||
|
use_filter = true
|
||||||
|
font_data = ExtResource( 1 )
|
13
project/fonts/montserrat_extra_bold_48.tres
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://fonts/montserrat/Montserrat-ExtraBold.otf" type="DynamicFontData" id=1]
|
||||||
|
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
|
||||||
|
size = 48
|
||||||
|
use_mipmaps = true
|
||||||
|
use_filter = true
|
||||||
|
font_data = ExtResource( 1 )
|
||||||
|
_sections_unfolded = [ "Settings" ]
|
||||||
|
|
13
project/fonts/montserrat_extra_bold_62.tres
Normal file
|
@ -0,0 +1,13 @@
|
||||||
|
[gd_resource type="DynamicFont" load_steps=2 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://fonts/montserrat/Montserrat-ExtraBold.otf" type="DynamicFontData" id=1]
|
||||||
|
|
||||||
|
|
||||||
|
[resource]
|
||||||
|
|
||||||
|
size = 62
|
||||||
|
use_mipmaps = true
|
||||||
|
use_filter = true
|
||||||
|
font_data = ExtResource( 1 )
|
||||||
|
_sections_unfolded = [ "Settings" ]
|
||||||
|
|
202
project/fonts/roboto/LICENSE.txt
Normal file
|
@ -0,0 +1,202 @@
|
||||||
|
|
||||||
|
Apache License
|
||||||
|
Version 2.0, January 2004
|
||||||
|
http://www.apache.org/licenses/
|
||||||
|
|
||||||
|
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
||||||
|
|
||||||
|
1. Definitions.
|
||||||
|
|
||||||
|
"License" shall mean the terms and conditions for use, reproduction,
|
||||||
|
and distribution as defined by Sections 1 through 9 of this document.
|
||||||
|
|
||||||
|
"Licensor" shall mean the copyright owner or entity authorized by
|
||||||
|
the copyright owner that is granting the License.
|
||||||
|
|
||||||
|
"Legal Entity" shall mean the union of the acting entity and all
|
||||||
|
other entities that control, are controlled by, or are under common
|
||||||
|
control with that entity. For the purposes of this definition,
|
||||||
|
"control" means (i) the power, direct or indirect, to cause the
|
||||||
|
direction or management of such entity, whether by contract or
|
||||||
|
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
||||||
|
outstanding shares, or (iii) beneficial ownership of such entity.
|
||||||
|
|
||||||
|
"You" (or "Your") shall mean an individual or Legal Entity
|
||||||
|
exercising permissions granted by this License.
|
||||||
|
|
||||||
|
"Source" form shall mean the preferred form for making modifications,
|
||||||
|
including but not limited to software source code, documentation
|
||||||
|
source, and configuration files.
|
||||||
|
|
||||||
|
"Object" form shall mean any form resulting from mechanical
|
||||||
|
transformation or translation of a Source form, including but
|
||||||
|
not limited to compiled object code, generated documentation,
|
||||||
|
and conversions to other media types.
|
||||||
|
|
||||||
|
"Work" shall mean the work of authorship, whether in Source or
|
||||||
|
Object form, made available under the License, as indicated by a
|
||||||
|
copyright notice that is included in or attached to the work
|
||||||
|
(an example is provided in the Appendix below).
|
||||||
|
|
||||||
|
"Derivative Works" shall mean any work, whether in Source or Object
|
||||||
|
form, that is based on (or derived from) the Work and for which the
|
||||||
|
editorial revisions, annotations, elaborations, or other modifications
|
||||||
|
represent, as a whole, an original work of authorship. For the purposes
|
||||||
|
of this License, Derivative Works shall not include works that remain
|
||||||
|
separable from, or merely link (or bind by name) to the interfaces of,
|
||||||
|
the Work and Derivative Works thereof.
|
||||||
|
|
||||||
|
"Contribution" shall mean any work of authorship, including
|
||||||
|
the original version of the Work and any modifications or additions
|
||||||
|
to that Work or Derivative Works thereof, that is intentionally
|
||||||
|
submitted to Licensor for inclusion in the Work by the copyright owner
|
||||||
|
or by an individual or Legal Entity authorized to submit on behalf of
|
||||||
|
the copyright owner. For the purposes of this definition, "submitted"
|
||||||
|
means any form of electronic, verbal, or written communication sent
|
||||||
|
to the Licensor or its representatives, including but not limited to
|
||||||
|
communication on electronic mailing lists, source code control systems,
|
||||||
|
and issue tracking systems that are managed by, or on behalf of, the
|
||||||
|
Licensor for the purpose of discussing and improving the Work, but
|
||||||
|
excluding communication that is conspicuously marked or otherwise
|
||||||
|
designated in writing by the copyright owner as "Not a Contribution."
|
||||||
|
|
||||||
|
"Contributor" shall mean Licensor and any individual or Legal Entity
|
||||||
|
on behalf of whom a Contribution has been received by Licensor and
|
||||||
|
subsequently incorporated within the Work.
|
||||||
|
|
||||||
|
2. Grant of Copyright License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
copyright license to reproduce, prepare Derivative Works of,
|
||||||
|
publicly display, publicly perform, sublicense, and distribute the
|
||||||
|
Work and such Derivative Works in Source or Object form.
|
||||||
|
|
||||||
|
3. Grant of Patent License. Subject to the terms and conditions of
|
||||||
|
this License, each Contributor hereby grants to You a perpetual,
|
||||||
|
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
||||||
|
(except as stated in this section) patent license to make, have made,
|
||||||
|
use, offer to sell, sell, import, and otherwise transfer the Work,
|
||||||
|
where such license applies only to those patent claims licensable
|
||||||
|
by such Contributor that are necessarily infringed by their
|
||||||
|
Contribution(s) alone or by combination of their Contribution(s)
|
||||||
|
with the Work to which such Contribution(s) was submitted. If You
|
||||||
|
institute patent litigation against any entity (including a
|
||||||
|
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
||||||
|
or a Contribution incorporated within the Work constitutes direct
|
||||||
|
or contributory patent infringement, then any patent licenses
|
||||||
|
granted to You under this License for that Work shall terminate
|
||||||
|
as of the date such litigation is filed.
|
||||||
|
|
||||||
|
4. Redistribution. You may reproduce and distribute copies of the
|
||||||
|
Work or Derivative Works thereof in any medium, with or without
|
||||||
|
modifications, and in Source or Object form, provided that You
|
||||||
|
meet the following conditions:
|
||||||
|
|
||||||
|
(a) You must give any other recipients of the Work or
|
||||||
|
Derivative Works a copy of this License; and
|
||||||
|
|
||||||
|
(b) You must cause any modified files to carry prominent notices
|
||||||
|
stating that You changed the files; and
|
||||||
|
|
||||||
|
(c) You must retain, in the Source form of any Derivative Works
|
||||||
|
that You distribute, all copyright, patent, trademark, and
|
||||||
|
attribution notices from the Source form of the Work,
|
||||||
|
excluding those notices that do not pertain to any part of
|
||||||
|
the Derivative Works; and
|
||||||
|
|
||||||
|
(d) If the Work includes a "NOTICE" text file as part of its
|
||||||
|
distribution, then any Derivative Works that You distribute must
|
||||||
|
include a readable copy of the attribution notices contained
|
||||||
|
within such NOTICE file, excluding those notices that do not
|
||||||
|
pertain to any part of the Derivative Works, in at least one
|
||||||
|
of the following places: within a NOTICE text file distributed
|
||||||
|
as part of the Derivative Works; within the Source form or
|
||||||
|
documentation, if provided along with the Derivative Works; or,
|
||||||
|
within a display generated by the Derivative Works, if and
|
||||||
|
wherever such third-party notices normally appear. The contents
|
||||||
|
of the NOTICE file are for informational purposes only and
|
||||||
|
do not modify the License. You may add Your own attribution
|
||||||
|
notices within Derivative Works that You distribute, alongside
|
||||||
|
or as an addendum to the NOTICE text from the Work, provided
|
||||||
|
that such additional attribution notices cannot be construed
|
||||||
|
as modifying the License.
|
||||||
|
|
||||||
|
You may add Your own copyright statement to Your modifications and
|
||||||
|
may provide additional or different license terms and conditions
|
||||||
|
for use, reproduction, or distribution of Your modifications, or
|
||||||
|
for any such Derivative Works as a whole, provided Your use,
|
||||||
|
reproduction, and distribution of the Work otherwise complies with
|
||||||
|
the conditions stated in this License.
|
||||||
|
|
||||||
|
5. Submission of Contributions. Unless You explicitly state otherwise,
|
||||||
|
any Contribution intentionally submitted for inclusion in the Work
|
||||||
|
by You to the Licensor shall be under the terms and conditions of
|
||||||
|
this License, without any additional terms or conditions.
|
||||||
|
Notwithstanding the above, nothing herein shall supersede or modify
|
||||||
|
the terms of any separate license agreement you may have executed
|
||||||
|
with Licensor regarding such Contributions.
|
||||||
|
|
||||||
|
6. Trademarks. This License does not grant permission to use the trade
|
||||||
|
names, trademarks, service marks, or product names of the Licensor,
|
||||||
|
except as required for reasonable and customary use in describing the
|
||||||
|
origin of the Work and reproducing the content of the NOTICE file.
|
||||||
|
|
||||||
|
7. Disclaimer of Warranty. Unless required by applicable law or
|
||||||
|
agreed to in writing, Licensor provides the Work (and each
|
||||||
|
Contributor provides its Contributions) on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
||||||
|
implied, including, without limitation, any warranties or conditions
|
||||||
|
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
||||||
|
PARTICULAR PURPOSE. You are solely responsible for determining the
|
||||||
|
appropriateness of using or redistributing the Work and assume any
|
||||||
|
risks associated with Your exercise of permissions under this License.
|
||||||
|
|
||||||
|
8. Limitation of Liability. In no event and under no legal theory,
|
||||||
|
whether in tort (including negligence), contract, or otherwise,
|
||||||
|
unless required by applicable law (such as deliberate and grossly
|
||||||
|
negligent acts) or agreed to in writing, shall any Contributor be
|
||||||
|
liable to You for damages, including any direct, indirect, special,
|
||||||
|
incidental, or consequential damages of any character arising as a
|
||||||
|
result of this License or out of the use or inability to use the
|
||||||
|
Work (including but not limited to damages for loss of goodwill,
|
||||||
|
work stoppage, computer failure or malfunction, or any and all
|
||||||
|
other commercial damages or losses), even if such Contributor
|
||||||
|
has been advised of the possibility of such damages.
|
||||||
|
|
||||||
|
9. Accepting Warranty or Additional Liability. While redistributing
|
||||||
|
the Work or Derivative Works thereof, You may choose to offer,
|
||||||
|
and charge a fee for, acceptance of support, warranty, indemnity,
|
||||||
|
or other liability obligations and/or rights consistent with this
|
||||||
|
License. However, in accepting such obligations, You may act only
|
||||||
|
on Your own behalf and on Your sole responsibility, not on behalf
|
||||||
|
of any other Contributor, and only if You agree to indemnify,
|
||||||
|
defend, and hold each Contributor harmless for any liability
|
||||||
|
incurred by, or claims asserted against, such Contributor by reason
|
||||||
|
of your accepting any such warranty or additional liability.
|
||||||
|
|
||||||
|
END OF TERMS AND CONDITIONS
|
||||||
|
|
||||||
|
APPENDIX: How to apply the Apache License to your work.
|
||||||
|
|
||||||
|
To apply the Apache License to your work, attach the following
|
||||||
|
boilerplate notice, with the fields enclosed by brackets "[]"
|
||||||
|
replaced with your own identifying information. (Don't include
|
||||||
|
the brackets!) The text should be enclosed in the appropriate
|
||||||
|
comment syntax for the file format. We also recommend that a
|
||||||
|
file or class name and description of purpose be included on the
|
||||||
|
same "printed page" as the copyright notice for easier
|
||||||
|
identification within third-party archives.
|
||||||
|
|
||||||
|
Copyright [yyyy] [name of copyright owner]
|
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
you may not use this file except in compliance with the License.
|
||||||
|
You may obtain a copy of the License at
|
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software
|
||||||
|
distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
See the License for the specific language governing permissions and
|
||||||
|
limitations under the License.
|
BIN
project/fonts/roboto/Roboto-Light.ttf
Normal file
BIN
project/fonts/roboto/Roboto-Medium.ttf
Normal file
BIN
project/fonts/roboto/Roboto-Thin.ttf
Normal file
BIN
project/icon.ico
Normal file
After Width: | Height: | Size: 83 KiB |
BIN
project/icon.png
Normal file
After Width: | Height: | Size: 30 KiB |
34
project/icon.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://icon.png"
|
||||||
|
dest_files=[ "res://.import/icon.png-487276ed1e3a0c39cad0279d744ee560.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
196
project/icon.svg
Normal file
|
@ -0,0 +1,196 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="101.71874mm"
|
||||||
|
height="101.71874mm"
|
||||||
|
viewBox="0 0 101.71874 101.71874"
|
||||||
|
version="1.1"
|
||||||
|
id="svg1525"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="icon.svg"
|
||||||
|
inkscape:export-filename="icon.png"
|
||||||
|
inkscape:export-xdpi="124.85408"
|
||||||
|
inkscape:export-ydpi="124.85408">
|
||||||
|
<defs
|
||||||
|
id="defs1519" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="1.4"
|
||||||
|
inkscape:cx="187.92824"
|
||||||
|
inkscape:cy="205.01077"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer1"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata1522">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(37.85379,-179.46243)">
|
||||||
|
<g
|
||||||
|
id="g2135"
|
||||||
|
transform="matrix(2.4155932,-0.0119659,-5.8677245e-4,2.2577317,-62.423997,-256.46492)">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cccccccccccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path896"
|
||||||
|
d="m 14.617213,209.35692 0.0935,6.26747 -0.93545,2.43215 0.42095,2.57247 1.16931,0.5145 2.62184,-0.23813 0.8393,1.31389 -0.79513,1.91765 3.41437,1.21608 7.39,0.5145 5.51912,-1.49671 0.23386,-1.02899 -1.9905,-3.34019 2.08404,-1.0564 -0.28063,-7.62386 -0.14032,-2.99342 -19.50399,-1.40316 z"
|
||||||
|
style="fill:#003f00;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csscac"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path857"
|
||||||
|
d="m 20.581123,225.42791 c 0,0 0.39398,-3.63952 1.21607,-6.08038 0.34665,-1.02922 6.41407,-0.62806 8.51254,-0.74835 1.69469,-0.0971 1.21607,7.01582 1.21607,7.01582 0,0 -2.69494,0.88185 -4.09301,0.92473 -2.31268,0.071 -6.85167,-1.11182 -6.85167,-1.11182 z"
|
||||||
|
style="display:inline;fill:#006600;fill-opacity:1;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="caaascccccccccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path890"
|
||||||
|
d="m 14.570443,210.19882 c 0,0 2.98411,1.01318 4.11595,0.23386 0.29646,-0.20413 0.0344,-0.81991 0.32741,-1.02899 3.28781,-2.34616 8.66701,-1.82471 12.11399,0.28064 0.52988,0.32363 0.5871,1.09428 0.88867,1.63702 0.82364,1.48233 2.38538,0 2.38538,0 l -0.56071,-7.17346 -2.47948,-3.06964 -1.63703,0.14031 -1.54348,2.99342 -1.07576,-0.14031 -2.24506,-2.66602 -8.98026,-0.37418 -0.57663,0.1403 z"
|
||||||
|
style="fill:#006600;fill-opacity:1;stroke:none;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cssc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path866"
|
||||||
|
d="m 18.702903,201.05999 c 0,0 -1.14327,-1.85804 0.23599,-2.40454 1.06201,-0.4208 5.02012,0.82399 5.90574,0.99133 1.15349,0.21795 -0.90737,1.56384 -0.90737,1.56384"
|
||||||
|
style="display:inline;opacity:1;fill:#003f00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="caasc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path874"
|
||||||
|
d="m 30.828543,200.79639 c 0,0 -0.19497,-2.20001 0.60877,-2.46043 0.5151,-0.1669 0.9223,0.61051 1.24076,1.04842 0.7777,1.06938 1.38912,1.80387 1.50197,3.67145 0.023,0.38045 -0.33891,1.09206 -0.33891,1.09206"
|
||||||
|
style="display:inline;opacity:1;fill:#003f00;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="zczzzzaazzsacsssz"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path864"
|
||||||
|
d="m 15.303433,201.17177 c -0.79389,0.50321 -0.56486,15.10057 -0.56486,15.10057 0,0 -1.21319,1.432 -1.15706,2.33595 0.0561,0.90395 0.47855,1.89215 1.318,2.37241 0.83946,0.48025 1.78624,-0.42865 3.0879,-0.0753 1.30166,0.35333 0.42362,1.58739 0.11297,2.97493 -0.31065,1.38753 3.54665,1.74094 5.46031,2.14094 1.59847,0.33412 3.28251,0.44365 4.89544,0.18829 2.11363,-0.33463 5.51281,-1.30933 6.02517,-2.21626 0.51235,-0.90693 -2.20701,-2.88825 -1.88287,-3.99167 0.32415,-1.10342 2.03917,-0.492 2.10881,-1.31801 0.20655,-2.44978 0.0351,-5.57902 -0.15063,-8.35991 -0.13807,-2.06777 -0.71548,-6.1758 -0.71548,-6.1758 0,0 -1.51047,-3.34089 -3.01259,-3.3515 -1.58996,-0.0112 -1.65151,3.40465 -3.23852,3.50213 -1.59136,0.0978 -2.06763,-3.25915 -3.65276,-3.0879 -3.26144,0.35236 -7.83994,-0.54206 -8.63383,-0.0388 z"
|
||||||
|
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path870"
|
||||||
|
d="m 18.966503,207.76299 -0.97909,13.14239"
|
||||||
|
style="display:inline;opacity:1;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path872"
|
||||||
|
d="m 31.694663,209.64585 0.90377,10.35576"
|
||||||
|
style="display:inline;opacity:1;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g2740"
|
||||||
|
transform="matrix(1.1937107,-0.01260043,0.12806036,1.1795373,-31.877316,4.7923747)"
|
||||||
|
inkscape:transform-center-x="15.440747"
|
||||||
|
inkscape:transform-center-y="-4.6053239">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="ssssscss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2567"
|
||||||
|
d="M -8.2557308,220.26 C 1.469821,207.04193 7.3023615,178.14326 8.6486734,177.94365 c 5.5849116,-0.82807 19.5119036,-0.53073 27.7870426,-2.93913 3.262113,-0.94941 2.876772,26.70246 3.199715,41.38613 0.118587,5.39165 -17.998045,7.37681 -17.009033,2.06534 1.244519,-6.68369 0.673625,-20.9711 0.673625,-20.9711 0,0 -10.583849,12.75629 -12.883082,22.957 -0.584637,2.59378 -22.290044,4.73453 -18.6726718,-0.18189 z"
|
||||||
|
style="fill:#0066ff;fill-opacity:1;stroke:#000000;stroke-width:1.73100495;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="czc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2571"
|
||||||
|
d="m 23.300023,197.48489 c 0,0 2.882409,-4.04211 2.262681,-7.18913 -0.619727,-3.14701 -1.168096,-11.57214 -1.168096,-11.57214"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.8675642;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="cc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2573"
|
||||||
|
d="m 25.562704,190.29576 1.434069,-11.81219"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.8675642;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="czccc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2569"
|
||||||
|
d="m 5.2043565,188.48685 c 0,0 4.9197735,1.67882 6.4295735,-0.10964 1.5098,-1.78837 1.562503,-8.86159 1.562503,-8.86159 l -5.5922865,0.71032 z"
|
||||||
|
style="fill:#999999;fill-opacity:1;stroke:#000000;stroke-width:1.04107714;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csssc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2583"
|
||||||
|
d="m 7.6041465,180.22602 c 0,0 0.6316294,-1.64861 1.3737793,-1.66121 7.7832022,-0.13211 19.2934622,-1.56299 27.5673102,-2.82188 0.658872,-0.10017 0.834002,1.72508 0.417217,1.83796 -6.297729,1.70557 -29.3583065,2.64513 -29.3583065,2.64513 z"
|
||||||
|
style="fill:#d4d4d4;fill-opacity:1;stroke:none;stroke-width:0.45980901;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2579"
|
||||||
|
d="m 7.6041465,180.22602 16.7167625,-0.79848 13.058329,-1.95953"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.8675642;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g3370"
|
||||||
|
transform="matrix(2.4380768,0,0,2.5480946,-142.06976,-423.42453)">
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="sszssss"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1419-8"
|
||||||
|
d="m 64.235119,253.0544 c 1.558998,1.75518 14.38054,1.15656 16.825706,-0.0314 0.408628,-0.19853 0.16429,0.7359 0.188349,1.34982 0.02405,0.61392 -1.366178,0.16627 -1.883475,0.58074 -0.660197,0.52897 -2.875833,8.14395 -5.713206,6.26255 -2.947491,-1.95441 -1.611565,-5.59653 -9.762677,-6.18407 -0.667457,-0.0481 -0.0991,-2.47797 0.345303,-1.97765 z"
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.52916664;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="czzc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1421-5"
|
||||||
|
d="m 81.327652,253.3997 c 0,0 -2.441187,1.3423 -6.686335,1.55387 -4.245149,0.21157 -6.908334,-0.15437 -8.695375,-0.56504 -1.787041,-0.41067 -2.118909,-0.86326 -2.118909,-0.86326"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.13229166;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1431-2"
|
||||||
|
d="m 72.506712,260.46273 c 0,0 1.157793,-1.49033 1.443997,-2.37004 0.316693,-0.97342 0.25113,-3.06064 0.25113,-3.06064"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.15875001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1433-4"
|
||||||
|
d="m 73.950709,258.09269 c 0,0 0.497299,1.0967 0.486564,1.67943 -0.01045,0.56739 -0.533651,1.61665 -0.533651,1.61665"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.15875001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1435-3"
|
||||||
|
d="m 76.430618,260.60399 c 0,0 0.835333,-3.39578 1.098693,-4.97551 0.05188,-0.31118 0.09417,-0.94174 0.09417,-0.94174"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.15875001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<path
|
||||||
|
sodipodi:nodetypes="csc"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path1437-3"
|
||||||
|
d="m 76.226574,254.87509 c 0,0 0.298268,0.78207 0.50226,1.14578 0.134187,0.23925 0.517956,0.86326 0.517956,0.86326"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.15875001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 12 KiB |
34
project/icon.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/icon.svg-218a8f2b3041327d8a5756f3a245f83b.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://icon.svg"
|
||||||
|
dest_files=[ "res://.import/icon.svg-218a8f2b3041327d8a5756f3a245f83b.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
20
project/lang/local.csv
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
,en,sv
|
||||||
|
KENG,English,Engelsk
|
||||||
|
KSWD,Swedish,Svenska
|
||||||
|
KBOT,Pants,Byxor
|
||||||
|
KTOP,Shirts,Skjorta
|
||||||
|
KCLS,Classic,Klassisk
|
||||||
|
KUND,Underwear,Underkläder
|
||||||
|
KRUS,Resume,Återuppta
|
||||||
|
KPUS,Paused,Pausad
|
||||||
|
KMUS,Music,Musik
|
||||||
|
KGMO,Game Mode,Spelläge
|
||||||
|
KCRE,Credits,Eftertexter
|
||||||
|
KABO,About,Handla om
|
||||||
|
KLIC,License,Licens
|
||||||
|
KSOO,Coming Soon,Kommer snart
|
||||||
|
KPLY,Play,Spela
|
||||||
|
KEXT,Exit,Utgång
|
||||||
|
KHELP,Help,Hjälp
|
||||||
|
KSET,Settings,Inställningar
|
||||||
|
KLANG,Languages,Språk
|
|
16
project/lang/local.csv.import
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="csv_translation"
|
||||||
|
type="Translation"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
files=[ "res://lang/local.en.translation", "res://lang/local.sv.translation" ]
|
||||||
|
|
||||||
|
source_file="res://lang/local.csv"
|
||||||
|
dest_files=[ "res://lang/local.en.translation", "res://lang/local.sv.translation" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress=true
|
||||||
|
delimiter=0
|
BIN
project/lang/local.en.translation
Normal file
BIN
project/lang/local.sv.translation
Normal file
0
project/music/.gitkeep
Normal file
15
project/music/at_the_lake.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="ogg_vorbis"
|
||||||
|
type="AudioStreamOGGVorbis"
|
||||||
|
path="res://.import/at_the_lake.ogg-3c70c4f6fe0d2145ba5ad822bf6ed2f5.oggstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://music/at_the_lake.ogg"
|
||||||
|
dest_files=[ "res://.import/at_the_lake.ogg-3c70c4f6fe0d2145ba5ad822bf6ed2f5.oggstr" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=true
|
||||||
|
loop_offset=0
|
15
project/music/mushrooms.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="ogg_vorbis"
|
||||||
|
type="AudioStreamOGGVorbis"
|
||||||
|
path="res://.import/mushrooms.ogg-5d11893cda0d4333d75a0ef8474477bb.oggstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://music/mushrooms.ogg"
|
||||||
|
dest_files=[ "res://.import/mushrooms.ogg-5d11893cda0d4333d75a0ef8474477bb.oggstr" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=true
|
||||||
|
loop_offset=0
|
15
project/music/reminiscing.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="ogg_vorbis"
|
||||||
|
type="AudioStreamOGGVorbis"
|
||||||
|
path="res://.import/reminiscing.ogg-6bf8281e49868f20b0ba3bd1070a62ac.oggstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://music/reminiscing.ogg"
|
||||||
|
dest_files=[ "res://.import/reminiscing.ogg-6bf8281e49868f20b0ba3bd1070a62ac.oggstr" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=true
|
||||||
|
loop_offset=0
|
15
project/music/together_again.ogg.import
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="ogg_vorbis"
|
||||||
|
type="AudioStreamOGGVorbis"
|
||||||
|
path="res://.import/together_again.ogg-c77c286a1667edafef4b34790b5d2995.oggstr"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://music/together_again.ogg"
|
||||||
|
dest_files=[ "res://.import/together_again.ogg-c77c286a1667edafef4b34790b5d2995.oggstr" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
loop=true
|
||||||
|
loop_offset=0
|
64
project/project.godot
Normal file
|
@ -0,0 +1,64 @@
|
||||||
|
; Engine configuration file.
|
||||||
|
; It's best edited using the editor UI and not directly,
|
||||||
|
; since the parameters that go here are not all obvious.
|
||||||
|
;
|
||||||
|
; Format:
|
||||||
|
; [section] ; section goes between []
|
||||||
|
; param=value ; assign values to parameters
|
||||||
|
|
||||||
|
config_version=4
|
||||||
|
|
||||||
|
_global_script_classes=[ ]
|
||||||
|
_global_script_class_icons={
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
[application]
|
||||||
|
|
||||||
|
config/name="Tony's Dress Up"
|
||||||
|
run/main_scene="res://scn/TitleScn.tscn"
|
||||||
|
config/use_custom_user_dir=true
|
||||||
|
boot_splash/image="res://icon.png"
|
||||||
|
boot_splash/bg_color=Color( 0.8, 0.8, 0.4, 1 )
|
||||||
|
config/icon="res://icon.png"
|
||||||
|
name_sv="Tonys klä upp"
|
||||||
|
|
||||||
|
[autoload]
|
||||||
|
|
||||||
|
GameKit="*res://src/GameKit.gd"
|
||||||
|
UserSettings="*res://src/UserSettings.gd"
|
||||||
|
Soundtrack="*res://src/Soundtrack.gd"
|
||||||
|
|
||||||
|
[debug]
|
||||||
|
|
||||||
|
gdscript/completion/autocomplete_setters_and_getters=true
|
||||||
|
|
||||||
|
[display]
|
||||||
|
|
||||||
|
window/size/width=800
|
||||||
|
window/dpi/allow_hidpi=true
|
||||||
|
mouse_cursor/custom_image="res://sprites/cursor.png"
|
||||||
|
window/stretch/mode="viewport"
|
||||||
|
window/stretch/aspect="keep"
|
||||||
|
|
||||||
|
[input]
|
||||||
|
|
||||||
|
ui_pause={
|
||||||
|
"deadzone": 0.5,
|
||||||
|
"events": [ Object(InputEventKey,"resource_local_to_scene":false,"resource_name":"","device":0,"alt":false,"shift":false,"control":false,"meta":false,"command":false,"pressed":false,"scancode":16777217,"unicode":0,"echo":false,"script":null)
|
||||||
|
, Object(InputEventJoypadButton,"resource_local_to_scene":false,"resource_name":"","device":0,"button_index":11,"pressure":0.0,"pressed":false,"script":null)
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
|
[locale]
|
||||||
|
|
||||||
|
locale_filter=[ 1, [ "en", "sv" ] ]
|
||||||
|
translations=PoolStringArray( "res://lang/local.en.translation", "res://lang/local.sv.translation" )
|
||||||
|
|
||||||
|
[rendering]
|
||||||
|
|
||||||
|
quality/intended_usage/framebuffer_allocation=0
|
||||||
|
quality/intended_usage/framebuffer_allocation.mobile=0
|
||||||
|
quality/2d/use_pixel_snap=true
|
||||||
|
vram_compression/import_etc=true
|
||||||
|
environment/default_environment="res://default_env.tres"
|
95
project/scn/Character.tscn
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
[gd_scene load_steps=30 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/Character.gd" type="Script" id=1]
|
||||||
|
[ext_resource path="res://sprites/tail/tail0.svg" type="Texture" id=2]
|
||||||
|
[ext_resource path="res://sprites/tail/tail1.svg" type="Texture" id=3]
|
||||||
|
[ext_resource path="res://sprites/tail/tail2.svg" type="Texture" id=4]
|
||||||
|
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=5]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes1.png" type="Texture" id=6]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=7]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=8]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes4.png" type="Texture" id=9]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes5.png" type="Texture" id=10]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes6.png" type="Texture" id=11]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes7.png" type="Texture" id=12]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth.png" type="Texture" id=13]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth2.png" type="Texture" id=14]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth3.png" type="Texture" id=15]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth4.png" type="Texture" id=16]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth5.png" type="Texture" id=17]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth6.png" type="Texture" id=18]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth7.png" type="Texture" id=19]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth8.png" type="Texture" id=20]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth9.png" type="Texture" id=21]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=22]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=23]
|
||||||
|
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=24]
|
||||||
|
[ext_resource path="res://sprites/bottoms_placeholder.png" type="Texture" id=25]
|
||||||
|
[ext_resource path="res://sprites/tops_placeholder.png" type="Texture" id=26]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=1]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 2 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 3 ), ExtResource( 3 ), ExtResource( 4 ), ExtResource( 4 ), ExtResource( 4 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 10.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=2]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 6 ), ExtResource( 6 ), ExtResource( 6 ), ExtResource( 6 ), ExtResource( 7 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 9 ), ExtResource( 9 ), ExtResource( 9 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 11 ), ExtResource( 12 ), ExtResource( 12 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 5.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=3]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 13 ), ExtResource( 13 ), ExtResource( 14 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 19 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 21 ), ExtResource( 21 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 22 ), ExtResource( 23 ), ExtResource( 23 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 10.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[node name="Character" type="Node2D"]
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="Base" type="Node2D" parent="."]
|
||||||
|
|
||||||
|
[node name="Tail" type="AnimatedSprite" parent="Base"]
|
||||||
|
position = Vector2( 54.4027, 184.439 )
|
||||||
|
frames = SubResource( 1 )
|
||||||
|
frame = 7
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Tony" type="Sprite" parent="Base"]
|
||||||
|
position = Vector2( 96.3522, 164.086 )
|
||||||
|
texture = ExtResource( 5 )
|
||||||
|
|
||||||
|
[node name="Eyes" type="AnimatedSprite" parent="Base"]
|
||||||
|
position = Vector2( 114.227, 63.9224 )
|
||||||
|
frames = SubResource( 2 )
|
||||||
|
frame = 1
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Mouth" type="AnimatedSprite" parent="Base"]
|
||||||
|
position = Vector2( 131.024, 67.4964 )
|
||||||
|
frames = SubResource( 3 )
|
||||||
|
frame = 11
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Undies" type="Sprite" parent="."]
|
||||||
|
position = Vector2( 86.5077, 256.295 )
|
||||||
|
texture = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Bottom" type="Sprite" parent="."]
|
||||||
|
position = Vector2( 88.1872, 251.328 )
|
||||||
|
texture = ExtResource( 25 )
|
||||||
|
|
||||||
|
[node name="Top" type="Sprite" parent="."]
|
||||||
|
position = Vector2( 96.3619, 160.432 )
|
||||||
|
texture = ExtResource( 26 )
|
||||||
|
|
||||||
|
[node name="Accessory" type="Sprite" parent="."]
|
||||||
|
position = Vector2( 93.2243, 155.139 )
|
||||||
|
texture = ExtResource( 26 )
|
257
project/scn/ClassicClothes.tscn
Normal file
|
@ -0,0 +1,257 @@
|
||||||
|
[gd_scene load_steps=45 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://sprites/tail/tail0.png" type="Texture" id=1]
|
||||||
|
[ext_resource path="res://sprites/tail/tail1.png" type="Texture" id=2]
|
||||||
|
[ext_resource path="res://sprites/tail/tail2.png" type="Texture" id=3]
|
||||||
|
[ext_resource path="res://sprites/character_base.svg" type="Texture" id=4]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes1.png" type="Texture" id=5]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes2.png" type="Texture" id=6]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes3.png" type="Texture" id=7]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes4.png" type="Texture" id=8]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes5.png" type="Texture" id=9]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes6.png" type="Texture" id=10]
|
||||||
|
[ext_resource path="res://sprites/eyes/eyes7.png" type="Texture" id=11]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth.png" type="Texture" id=12]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth2.png" type="Texture" id=13]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth3.png" type="Texture" id=14]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth4.png" type="Texture" id=15]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth5.png" type="Texture" id=16]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth6.png" type="Texture" id=17]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth7.png" type="Texture" id=18]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth8.png" type="Texture" id=19]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth9.png" type="Texture" id=20]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth10.png" type="Texture" id=21]
|
||||||
|
[ext_resource path="res://sprites/mouth/mouth12.png" type="Texture" id=22]
|
||||||
|
[ext_resource path="res://sprites/classic/briefs_classic.png" type="Texture" id=23]
|
||||||
|
[ext_resource path="res://src/ItemDrag.gd" type="Script" id=24]
|
||||||
|
[ext_resource path="res://sprites/classic/z_briefs_classic.png" type="Texture" id=25]
|
||||||
|
[ext_resource path="res://sprites/classic/fundosi_classic.png" type="Texture" id=26]
|
||||||
|
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=27]
|
||||||
|
[ext_resource path="res://sprites/dj_shorts.svg" type="Texture" id=28]
|
||||||
|
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=29]
|
||||||
|
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=30]
|
||||||
|
[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=31]
|
||||||
|
[ext_resource path="res://sprites/old_sweatshirt.png" type="Texture" id=32]
|
||||||
|
[ext_resource path="res://sprites/dj_shirt.png" type="Texture" id=33]
|
||||||
|
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=34]
|
||||||
|
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=35]
|
||||||
|
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=36]
|
||||||
|
[ext_resource path="res://sprites/biker_jacket.png" type="Texture" id=37]
|
||||||
|
[ext_resource path="res://sprites/whatsnew_shirt.png" type="Texture" id=38]
|
||||||
|
[ext_resource path="res://sprites/train_hoodie.png" type="Texture" id=39]
|
||||||
|
[ext_resource path="res://sprites/classic/camera_classic.png" type="Texture" id=40]
|
||||||
|
[ext_resource path="res://sprites/classic/owo_censor_classic.png" type="Texture" id=41]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=1]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 1 ), ExtResource( 1 ), ExtResource( 1 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 2 ), ExtResource( 3 ), ExtResource( 3 ), ExtResource( 3 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 2.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=2]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 5 ), ExtResource( 5 ), ExtResource( 5 ), ExtResource( 5 ), ExtResource( 6 ), ExtResource( 6 ), ExtResource( 7 ), ExtResource( 7 ), ExtResource( 8 ), ExtResource( 8 ), ExtResource( 8 ), ExtResource( 8 ), ExtResource( 8 ), ExtResource( 9 ), ExtResource( 9 ), ExtResource( 10 ), ExtResource( 10 ), ExtResource( 11 ), ExtResource( 11 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 5.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[sub_resource type="SpriteFrames" id=3]
|
||||||
|
animations = [ {
|
||||||
|
"frames": [ ExtResource( 12 ), ExtResource( 12 ), ExtResource( 13 ), ExtResource( 13 ), ExtResource( 14 ), ExtResource( 14 ), ExtResource( 15 ), ExtResource( 15 ), ExtResource( 16 ), ExtResource( 16 ), ExtResource( 17 ), ExtResource( 17 ), ExtResource( 18 ), ExtResource( 18 ), ExtResource( 18 ), ExtResource( 19 ), ExtResource( 19 ), ExtResource( 19 ), ExtResource( 19 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 20 ), ExtResource( 21 ), ExtResource( 21 ), ExtResource( 22 ), ExtResource( 22 ) ],
|
||||||
|
"loop": true,
|
||||||
|
"name": "default",
|
||||||
|
"speed": 4.0
|
||||||
|
} ]
|
||||||
|
|
||||||
|
[node name="Clothes" type="Node"]
|
||||||
|
|
||||||
|
[node name="Character" type="Node2D" parent="."]
|
||||||
|
editor/display_folded = true
|
||||||
|
position = Vector2( 129.236, 38.0905 )
|
||||||
|
|
||||||
|
[node name="Tail" type="AnimatedSprite" parent="Character"]
|
||||||
|
position = Vector2( -36.5244, 390.553 )
|
||||||
|
frames = SubResource( 1 )
|
||||||
|
frame = 8
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Tony" type="Sprite" parent="Character"]
|
||||||
|
position = Vector2( 5.42515, 370.2 )
|
||||||
|
texture = ExtResource( 4 )
|
||||||
|
|
||||||
|
[node name="Eyes" type="AnimatedSprite" parent="Character"]
|
||||||
|
position = Vector2( 23.2995, 270.036 )
|
||||||
|
frames = SubResource( 2 )
|
||||||
|
frame = 1
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Mouth" type="AnimatedSprite" parent="Character"]
|
||||||
|
position = Vector2( 40.0965, 273.61 )
|
||||||
|
frames = SubResource( 3 )
|
||||||
|
frame = 4
|
||||||
|
playing = true
|
||||||
|
|
||||||
|
[node name="Briefs" type="TextureButton" parent="."]
|
||||||
|
margin_left = 108.103
|
||||||
|
margin_top = 449.068
|
||||||
|
margin_right = 176.103
|
||||||
|
margin_bottom = 483.068
|
||||||
|
texture_normal = ExtResource( 23 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="ZBriefs" type="TextureButton" parent="."]
|
||||||
|
margin_left = 904.613
|
||||||
|
margin_top = 137.606
|
||||||
|
margin_right = 972.613
|
||||||
|
margin_bottom = 171.606
|
||||||
|
texture_normal = ExtResource( 25 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Fundosi" type="TextureButton" parent="."]
|
||||||
|
margin_left = 904.429
|
||||||
|
margin_top = 46.3994
|
||||||
|
margin_right = 972.429
|
||||||
|
margin_bottom = 86.3994
|
||||||
|
texture_normal = ExtResource( 26 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Jeans" type="TextureButton" parent="."]
|
||||||
|
margin_left = 877.209
|
||||||
|
margin_top = 330.098
|
||||||
|
margin_right = 983.209
|
||||||
|
margin_bottom = 442.098
|
||||||
|
texture_normal = ExtResource( 27 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="DJ Shorts" type="TextureButton" parent="."]
|
||||||
|
margin_left = 882.788
|
||||||
|
margin_top = 452.045
|
||||||
|
margin_right = 988.788
|
||||||
|
margin_bottom = 564.045
|
||||||
|
texture_normal = ExtResource( 28 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Sweats" type="TextureButton" parent="."]
|
||||||
|
margin_left = 744.929
|
||||||
|
margin_top = 441.685
|
||||||
|
margin_right = 850.929
|
||||||
|
margin_bottom = 553.685
|
||||||
|
texture_normal = ExtResource( 29 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Blue Camo Jeans" type="TextureButton" parent="."]
|
||||||
|
margin_left = 495.104
|
||||||
|
margin_top = 434.94
|
||||||
|
margin_right = 601.104
|
||||||
|
margin_bottom = 546.94
|
||||||
|
texture_normal = ExtResource( 30 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Beat Up Jeans" type="TextureButton" parent="."]
|
||||||
|
margin_left = 623.246
|
||||||
|
margin_top = 439.685
|
||||||
|
margin_right = 729.246
|
||||||
|
margin_bottom = 551.685
|
||||||
|
texture_normal = ExtResource( 31 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Sweatshirt" type="TextureButton" parent="."]
|
||||||
|
margin_left = 388.813
|
||||||
|
margin_top = 432.874
|
||||||
|
margin_right = 473.813
|
||||||
|
margin_bottom = 542.874
|
||||||
|
texture_normal = ExtResource( 32 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="DJ Shirt" type="TextureButton" parent="."]
|
||||||
|
margin_left = 898.788
|
||||||
|
margin_top = 219.361
|
||||||
|
margin_right = 983.788
|
||||||
|
margin_bottom = 334.361
|
||||||
|
texture_normal = ExtResource( 33 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Raw" type="TextureButton" parent="."]
|
||||||
|
margin_left = 647.703
|
||||||
|
margin_top = 160.841
|
||||||
|
margin_right = 732.703
|
||||||
|
margin_bottom = 275.841
|
||||||
|
texture_normal = ExtResource( 34 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Atomic Shirt" type="TextureButton" parent="."]
|
||||||
|
margin_left = 392.345
|
||||||
|
margin_top = 282.289
|
||||||
|
margin_right = 477.345
|
||||||
|
margin_bottom = 397.289
|
||||||
|
texture_normal = ExtResource( 35 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Z Shirt" type="TextureButton" parent="."]
|
||||||
|
margin_left = 642.246
|
||||||
|
margin_top = 301.685
|
||||||
|
margin_right = 723.246
|
||||||
|
margin_bottom = 416.685
|
||||||
|
texture_normal = ExtResource( 36 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Biker Jacket" type="TextureButton" parent="."]
|
||||||
|
margin_left = 515.157
|
||||||
|
margin_top = 300.466
|
||||||
|
margin_right = 600.157
|
||||||
|
margin_bottom = 415.466
|
||||||
|
texture_normal = ExtResource( 37 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="What's New" type="TextureButton" parent="."]
|
||||||
|
margin_left = 767.044
|
||||||
|
margin_top = 170.297
|
||||||
|
margin_right = 852.044
|
||||||
|
margin_bottom = 285.297
|
||||||
|
texture_normal = ExtResource( 38 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Train Shirt" type="TextureButton" parent="."]
|
||||||
|
margin_left = 769.246
|
||||||
|
margin_top = 299.685
|
||||||
|
margin_right = 854.246
|
||||||
|
margin_bottom = 414.685
|
||||||
|
texture_normal = ExtResource( 39 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="Camera" type="TextureButton" parent="."]
|
||||||
|
margin_left = 406.979
|
||||||
|
margin_top = 188.547
|
||||||
|
margin_right = 455.979
|
||||||
|
margin_bottom = 250.547
|
||||||
|
texture_normal = ExtResource( 40 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="OwO Censor" type="TextureButton" parent="."]
|
||||||
|
margin_left = 489.905
|
||||||
|
margin_top = 185.841
|
||||||
|
margin_right = 595.905
|
||||||
|
margin_bottom = 225.841
|
||||||
|
texture_normal = ExtResource( 41 )
|
||||||
|
script = ExtResource( 24 )
|
||||||
|
[connection signal="gui_input" from="Briefs" to="Briefs" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="ZBriefs" to="ZBriefs" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Fundosi" to="Fundosi" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Jeans" to="Jeans" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="DJ Shorts" to="DJ Shorts" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Sweats" to="Sweats" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Blue Camo Jeans" to="Blue Camo Jeans" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Beat Up Jeans" to="Beat Up Jeans" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Sweatshirt" to="Sweatshirt" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="DJ Shirt" to="DJ Shirt" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Raw" to="Raw" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Atomic Shirt" to="Atomic Shirt" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Z Shirt" to="Z Shirt" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Biker Jacket" to="Biker Jacket" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="What's New" to="What's New" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Train Shirt" to="Train Shirt" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="Camera" to="Camera" method="_on_outfit_gui_input"]
|
||||||
|
[connection signal="gui_input" from="OwO Censor" to="OwO Censor" method="_on_outfit_gui_input"]
|
12
project/scn/ClassicScn.tscn
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
[gd_scene load_steps=4 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/ClassicScn.gd" type="Script" id=1]
|
||||||
|
[ext_resource path="res://scn/ClassicClothes.tscn" type="PackedScene" id=2]
|
||||||
|
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=3]
|
||||||
|
|
||||||
|
[node name="GameScreen" type="Node"]
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="Clothes" parent="." instance=ExtResource( 2 )]
|
||||||
|
|
||||||
|
[node name="WinDialogs" parent="." instance=ExtResource( 3 )]
|
268
project/scn/Clothes.tscn
Normal file
|
@ -0,0 +1,268 @@
|
||||||
|
[gd_scene load_steps=25 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=1]
|
||||||
|
[ext_resource path="res://styles/wordrobe_panel.stylebox" type="StyleBox" id=2]
|
||||||
|
[ext_resource path="res://sprites/jeans.svg" type="Texture" id=3]
|
||||||
|
[ext_resource path="res://sprites/blue_skirt.svg" type="Texture" id=4]
|
||||||
|
[ext_resource path="res://sprites/sweat_pants.svg" type="Texture" id=5]
|
||||||
|
[ext_resource path="res://sprites/blue_camo_jeans.svg" type="Texture" id=6]
|
||||||
|
[ext_resource path="res://sprites/beat_up_jeans.svg" type="Texture" id=7]
|
||||||
|
[ext_resource path="res://sprites/formal_skirt.svg" type="Texture" id=8]
|
||||||
|
[ext_resource path="res://sprites/x_button.svg" type="Texture" id=9]
|
||||||
|
[ext_resource path="res://sprites/old_sweatshirt.svg" type="Texture" id=10]
|
||||||
|
[ext_resource path="res://sprites/raw_shirt.svg" type="Texture" id=11]
|
||||||
|
[ext_resource path="res://sprites/retro_shirt.svg" type="Texture" id=12]
|
||||||
|
[ext_resource path="res://sprites/atomic_shirt.svg" type="Texture" id=13]
|
||||||
|
[ext_resource path="res://sprites/z_shirt.png" type="Texture" id=14]
|
||||||
|
[ext_resource path="res://sprites/biker_jacket.svg" type="Texture" id=15]
|
||||||
|
[ext_resource path="res://sprites/nl_jacket.png" type="Texture" id=16]
|
||||||
|
[ext_resource path="res://sprites/train_hoodie.svg" type="Texture" id=17]
|
||||||
|
[ext_resource path="res://sprites/korm_shirt.png" type="Texture" id=18]
|
||||||
|
[ext_resource path="res://sprites/whatsnew_shirt.svg" type="Texture" id=19]
|
||||||
|
[ext_resource path="res://sprites/owo_censor.svg" type="Texture" id=20]
|
||||||
|
[ext_resource path="res://sprites/briefs.svg" type="Texture" id=21]
|
||||||
|
[ext_resource path="res://sprites/z_briefs.svg" type="Texture" id=22]
|
||||||
|
[ext_resource path="res://sprites/fundosi.svg" type="Texture" id=23]
|
||||||
|
[ext_resource path="res://sprites/camera.png" type="Texture" id=24]
|
||||||
|
|
||||||
|
[node name="Wordrobe" type="TabContainer"]
|
||||||
|
anchor_left = 1.0
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_left = -459.0
|
||||||
|
margin_top = 21.0
|
||||||
|
margin_right = -76.0
|
||||||
|
margin_bottom = -35.0
|
||||||
|
theme = ExtResource( 1 )
|
||||||
|
custom_styles/panel = ExtResource( 2 )
|
||||||
|
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_bg = Color( 0.921569, 0.921569, 0.921569, 1 )
|
||||||
|
custom_colors/font_color_fg = Color( 1, 1, 1, 1 )
|
||||||
|
|
||||||
|
[node name="Pants" type="Tabs" parent="."]
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_top = 31.0
|
||||||
|
custom_constants/hseparation = 0
|
||||||
|
|
||||||
|
[node name="PantsScroll" type="ScrollContainer" parent="Pants"]
|
||||||
|
margin_left = 13.0
|
||||||
|
margin_top = 21.0
|
||||||
|
margin_right = 376.0
|
||||||
|
margin_bottom = 498.0
|
||||||
|
|
||||||
|
[node name="PantsGrid" type="GridContainer" parent="Pants/PantsScroll"]
|
||||||
|
margin_right = 326.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Jeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_right = 106.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 3 )
|
||||||
|
|
||||||
|
[node name="BlueSkirt" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_left = 110.0
|
||||||
|
margin_right = 216.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 4 )
|
||||||
|
|
||||||
|
[node name="Sweats" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_left = 220.0
|
||||||
|
margin_right = 326.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 5 )
|
||||||
|
|
||||||
|
[node name="BlueCamoJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_top = 116.0
|
||||||
|
margin_right = 106.0
|
||||||
|
margin_bottom = 228.0
|
||||||
|
texture_normal = ExtResource( 6 )
|
||||||
|
|
||||||
|
[node name="BeatUpJeans" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_left = 110.0
|
||||||
|
margin_top = 116.0
|
||||||
|
margin_right = 216.0
|
||||||
|
margin_bottom = 228.0
|
||||||
|
texture_normal = ExtResource( 7 )
|
||||||
|
|
||||||
|
[node name="FormalSkirt" type="TextureButton" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_left = 220.0
|
||||||
|
margin_top = 116.0
|
||||||
|
margin_right = 326.0
|
||||||
|
margin_bottom = 228.0
|
||||||
|
texture_normal = ExtResource( 8 )
|
||||||
|
|
||||||
|
[node name="RemovePants" type="Button" parent="Pants/PantsScroll/PantsGrid"]
|
||||||
|
margin_top = 232.0
|
||||||
|
margin_right = 106.0
|
||||||
|
margin_bottom = 344.0
|
||||||
|
rect_min_size = Vector2( 0, 112 )
|
||||||
|
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||||
|
icon = ExtResource( 9 )
|
||||||
|
flat = true
|
||||||
|
|
||||||
|
[node name="Shirts" type="Tabs" parent="."]
|
||||||
|
editor/display_folded = true
|
||||||
|
visible = false
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_top = 31.0
|
||||||
|
|
||||||
|
[node name="ShirtsScroll" type="ScrollContainer" parent="Shirts"]
|
||||||
|
margin_left = 16.0
|
||||||
|
margin_top = 19.0
|
||||||
|
margin_right = 368.0
|
||||||
|
margin_bottom = 500.0
|
||||||
|
|
||||||
|
[node name="ShirtsGrid" type="GridContainer" parent="Shirts/ShirtsScroll"]
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Sweatshirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_right = 85.0
|
||||||
|
margin_bottom = 115.0
|
||||||
|
texture_normal = ExtResource( 10 )
|
||||||
|
|
||||||
|
[node name="Raw" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 89.0
|
||||||
|
margin_right = 195.0
|
||||||
|
margin_bottom = 115.0
|
||||||
|
texture_normal = ExtResource( 11 )
|
||||||
|
|
||||||
|
[node name="Retro" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 199.0
|
||||||
|
margin_right = 284.0
|
||||||
|
margin_bottom = 115.0
|
||||||
|
texture_normal = ExtResource( 12 )
|
||||||
|
|
||||||
|
[node name="Atomic" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_top = 119.0
|
||||||
|
margin_right = 85.0
|
||||||
|
margin_bottom = 234.0
|
||||||
|
texture_normal = ExtResource( 13 )
|
||||||
|
|
||||||
|
[node name="ZShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 89.0
|
||||||
|
margin_top = 119.0
|
||||||
|
margin_right = 195.0
|
||||||
|
margin_bottom = 234.0
|
||||||
|
texture_normal = ExtResource( 14 )
|
||||||
|
|
||||||
|
[node name="BikerJacket" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 199.0
|
||||||
|
margin_top = 119.0
|
||||||
|
margin_right = 284.0
|
||||||
|
margin_bottom = 234.0
|
||||||
|
texture_normal = ExtResource( 15 )
|
||||||
|
|
||||||
|
[node name="NLJacket" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_top = 238.0
|
||||||
|
margin_right = 85.0
|
||||||
|
margin_bottom = 353.0
|
||||||
|
texture_normal = ExtResource( 16 )
|
||||||
|
|
||||||
|
[node name="TrainHoodie" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 89.0
|
||||||
|
margin_top = 238.0
|
||||||
|
margin_right = 195.0
|
||||||
|
margin_bottom = 353.0
|
||||||
|
texture_normal = ExtResource( 17 )
|
||||||
|
|
||||||
|
[node name="KormShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 199.0
|
||||||
|
margin_top = 238.0
|
||||||
|
margin_right = 284.0
|
||||||
|
margin_bottom = 353.0
|
||||||
|
texture_normal = ExtResource( 18 )
|
||||||
|
|
||||||
|
[node name="WhatsNewShirt" type="TextureButton" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_top = 357.0
|
||||||
|
margin_right = 85.0
|
||||||
|
margin_bottom = 472.0
|
||||||
|
texture_normal = ExtResource( 19 )
|
||||||
|
|
||||||
|
[node name="RemoveShirt" type="Button" parent="Shirts/ShirtsScroll/ShirtsGrid"]
|
||||||
|
margin_left = 89.0
|
||||||
|
margin_top = 357.0
|
||||||
|
margin_right = 195.0
|
||||||
|
margin_bottom = 472.0
|
||||||
|
rect_min_size = Vector2( 0, 112 )
|
||||||
|
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||||
|
icon = ExtResource( 9 )
|
||||||
|
flat = true
|
||||||
|
|
||||||
|
[node name="Underwear" type="Tabs" parent="."]
|
||||||
|
visible = false
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_top = 31.0
|
||||||
|
|
||||||
|
[node name="UndiesScroll" type="ScrollContainer" parent="Underwear"]
|
||||||
|
margin_left = 10.0
|
||||||
|
margin_top = 26.0
|
||||||
|
margin_right = 370.0
|
||||||
|
margin_bottom = 491.0
|
||||||
|
|
||||||
|
[node name="UndiesGrid" type="GridContainer" parent="Underwear/UndiesScroll"]
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="OwOCensor" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"]
|
||||||
|
margin_right = 106.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 20 )
|
||||||
|
|
||||||
|
[node name="Briefs" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"]
|
||||||
|
margin_left = 110.0
|
||||||
|
margin_right = 216.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 21 )
|
||||||
|
|
||||||
|
[node name="ZBriefs" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"]
|
||||||
|
margin_left = 220.0
|
||||||
|
margin_right = 326.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 22 )
|
||||||
|
|
||||||
|
[node name="Fundosi" type="TextureButton" parent="Underwear/UndiesScroll/UndiesGrid"]
|
||||||
|
margin_top = 116.0
|
||||||
|
margin_right = 106.0
|
||||||
|
margin_bottom = 228.0
|
||||||
|
texture_normal = ExtResource( 23 )
|
||||||
|
|
||||||
|
[node name="Accessoires" type="Tabs" parent="."]
|
||||||
|
visible = false
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_top = 31.0
|
||||||
|
|
||||||
|
[node name="AccsScroll" type="ScrollContainer" parent="Accessoires"]
|
||||||
|
margin_left = 19.0
|
||||||
|
margin_top = 22.0
|
||||||
|
margin_right = 369.0
|
||||||
|
margin_bottom = 494.0
|
||||||
|
|
||||||
|
[node name="AccsGrid" type="GridContainer" parent="Accessoires/AccsScroll"]
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="CanonCam" type="TextureButton" parent="Accessoires/AccsScroll/AccsGrid"]
|
||||||
|
margin_right = 85.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
texture_normal = ExtResource( 24 )
|
||||||
|
|
||||||
|
[node name="RemoveAccessory" type="Button" parent="Accessoires/AccsScroll/AccsGrid"]
|
||||||
|
margin_left = 89.0
|
||||||
|
margin_right = 195.0
|
||||||
|
margin_bottom = 112.0
|
||||||
|
rect_min_size = Vector2( 85, 105 )
|
||||||
|
custom_colors/font_color_disabled = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_hover = Color( 0, 0, 0, 1 )
|
||||||
|
custom_colors/font_color_pressed = Color( 0, 0, 0, 1 )
|
||||||
|
icon = ExtResource( 9 )
|
||||||
|
flat = true
|
62
project/scn/CreditsScn.tscn
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
[gd_scene load_steps=5 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/CreditsScn.gd" type="Script" id=1]
|
||||||
|
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2]
|
||||||
|
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=3]
|
||||||
|
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4]
|
||||||
|
|
||||||
|
[node name="Credits" type="Node"]
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="Credits" type="RichTextLabel" parent="."]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
margin_left = -157.708
|
||||||
|
margin_top = 19.2924
|
||||||
|
margin_right = 161.292
|
||||||
|
margin_bottom = 587.292
|
||||||
|
theme = ExtResource( 2 )
|
||||||
|
custom_colors/default_color = Color( 0, 0, 0, 1 )
|
||||||
|
bbcode_enabled = true
|
||||||
|
bbcode_text = "[center]Created by
|
||||||
|
Anthony Wilcox
|
||||||
|
|
||||||
|
Music by
|
||||||
|
Michael Carey
|
||||||
|
|
||||||
|
Clothing inspired by
|
||||||
|
Megawolf77
|
||||||
|
Canon Rhode
|
||||||
|
The Sims 4
|
||||||
|
Raier
|
||||||
|
|
||||||
|
Made with
|
||||||
|
Godot Engine
|
||||||
|
[/center]"
|
||||||
|
text = "Created by
|
||||||
|
Anthony Wilcox
|
||||||
|
|
||||||
|
Music by
|
||||||
|
Michael Carey
|
||||||
|
|
||||||
|
Clothing inspired by
|
||||||
|
Megawolf77
|
||||||
|
Canon Rhode
|
||||||
|
The Sims 4
|
||||||
|
Raier
|
||||||
|
|
||||||
|
Made with
|
||||||
|
Godot Engine
|
||||||
|
"
|
||||||
|
|
||||||
|
[node name="Character" parent="." instance=ExtResource( 3 )]
|
||||||
|
position = Vector2( 76.1938, 267.895 )
|
||||||
|
|
||||||
|
[node name="WinDialogs" parent="." instance=ExtResource( 4 )]
|
||||||
|
|
||||||
|
[node name="Version" type="Label" parent="."]
|
||||||
|
margin_left = 727.908
|
||||||
|
margin_top = 568.64
|
||||||
|
margin_right = 775.908
|
||||||
|
margin_bottom = 582.64
|
||||||
|
text = "Version"
|
28
project/scn/GameScn.tscn
Normal file
|
@ -0,0 +1,28 @@
|
||||||
|
[gd_scene load_steps=7 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/GameScn.gd" type="Script" id=1]
|
||||||
|
[ext_resource path="res://sprites/icrazy_frame.svg" type="Texture" id=2]
|
||||||
|
[ext_resource path="res://sprites/lights.png" type="Texture" id=3]
|
||||||
|
[ext_resource path="res://scn/Clothes.tscn" type="PackedScene" id=4]
|
||||||
|
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=5]
|
||||||
|
[ext_resource path="res://scn/Character.tscn" type="PackedScene" id=6]
|
||||||
|
|
||||||
|
[node name="GameScreen" type="Node"]
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="PicFrame" type="Sprite" parent="."]
|
||||||
|
position = Vector2( 223.773, 143.963 )
|
||||||
|
texture = ExtResource( 2 )
|
||||||
|
|
||||||
|
[node name="Light" type="Light2D" parent="."]
|
||||||
|
position = Vector2( 258.891, 129.403 )
|
||||||
|
texture = ExtResource( 3 )
|
||||||
|
|
||||||
|
[node name="Wordrobe" parent="." instance=ExtResource( 4 )]
|
||||||
|
|
||||||
|
[node name="PauseScn" parent="." instance=ExtResource( 5 )]
|
||||||
|
margin_left = -130.0
|
||||||
|
margin_right = -130.0
|
||||||
|
|
||||||
|
[node name="Character" parent="." instance=ExtResource( 6 )]
|
||||||
|
position = Vector2( 134.447, 242.62 )
|
144
project/scn/PauseScn.tscn
Normal file
|
@ -0,0 +1,144 @@
|
||||||
|
[gd_scene load_steps=3 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=1]
|
||||||
|
[ext_resource path="res://src/PauseScn.gd" type="Script" id=2]
|
||||||
|
|
||||||
|
[node name="WinDialogs" type="Control"]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
theme = ExtResource( 1 )
|
||||||
|
script = ExtResource( 2 )
|
||||||
|
|
||||||
|
[node name="PauseWin" type="PopupDialog" parent="."]
|
||||||
|
pause_mode = 2
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -88.0
|
||||||
|
margin_top = -57.0
|
||||||
|
margin_right = 88.0
|
||||||
|
margin_bottom = 57.0
|
||||||
|
|
||||||
|
[node name="PauseVbox" type="VBoxContainer" parent="PauseWin"]
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 10.0
|
||||||
|
margin_top = 10.0
|
||||||
|
margin_right = -10.0
|
||||||
|
margin_bottom = -10.0
|
||||||
|
|
||||||
|
[node name="PauseLbl" type="Label" parent="PauseWin/PauseVbox"]
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 21.0
|
||||||
|
text = "KPUS"
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="SettingsBtn" type="Button" parent="PauseWin/PauseVbox"]
|
||||||
|
margin_top = 25.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 46.0
|
||||||
|
text = "KSET"
|
||||||
|
|
||||||
|
[node name="ResumeBtn" type="Button" parent="PauseWin/PauseVbox"]
|
||||||
|
margin_top = 50.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 71.0
|
||||||
|
text = "KRUS"
|
||||||
|
|
||||||
|
[node name="ExitBtn" type="Button" parent="PauseWin/PauseVbox"]
|
||||||
|
margin_top = 75.0
|
||||||
|
margin_right = 156.0
|
||||||
|
margin_bottom = 96.0
|
||||||
|
text = "KEXT"
|
||||||
|
|
||||||
|
[node name="SettingsWin" type="AcceptDialog" parent="."]
|
||||||
|
pause_mode = 2
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -76.0
|
||||||
|
margin_top = -34.0
|
||||||
|
margin_right = 76.0
|
||||||
|
margin_bottom = 34.0
|
||||||
|
window_title = "KSET"
|
||||||
|
|
||||||
|
[node name="Grid" type="GridContainer" parent="SettingsWin"]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -68.0
|
||||||
|
margin_top = -26.0
|
||||||
|
margin_right = 68.0
|
||||||
|
margin_bottom = -3.0
|
||||||
|
columns = 3
|
||||||
|
|
||||||
|
[node name="Languages" type="MenuButton" parent="SettingsWin/Grid"]
|
||||||
|
visible = false
|
||||||
|
margin_right = 56.0
|
||||||
|
margin_bottom = 24.0
|
||||||
|
text = "KLANG"
|
||||||
|
flat = false
|
||||||
|
items = [ "KENG", null, 0, true, false, -1, 0, null, "", false, "KSWD", null, 0, false, false, -1, 0, null, "", false ]
|
||||||
|
|
||||||
|
[node name="MusicBtn" type="CheckBox" parent="SettingsWin/Grid"]
|
||||||
|
margin_right = 66.0
|
||||||
|
margin_bottom = 21.0
|
||||||
|
pressed = true
|
||||||
|
text = "KMUS"
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="LicenseWin" type="AcceptDialog" parent="."]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -214.0
|
||||||
|
margin_top = -138.0
|
||||||
|
margin_right = 217.0
|
||||||
|
margin_bottom = 137.0
|
||||||
|
window_title = "KLIC"
|
||||||
|
resizable = true
|
||||||
|
|
||||||
|
[node name="LicenseTxt" type="RichTextLabel" parent="LicenseWin"]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
margin_left = -207.5
|
||||||
|
margin_top = 8.0
|
||||||
|
margin_right = 207.5
|
||||||
|
margin_bottom = 238.0
|
||||||
|
bbcode_enabled = true
|
||||||
|
bbcode_text = "This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
[center]##########################[/center]
|
||||||
|
|
||||||
|
Tony's Dress Up (c) by Anthony Wilcox
|
||||||
|
|
||||||
|
Tony's Dress Up is licensed under a Creative Commons
|
||||||
|
Attribution-ShareAlike 4.0 International License.
|
||||||
|
|
||||||
|
You should have received a copy of the license along with this work.
|
||||||
|
If not, see <http://creativecommons.org/licenses/by-sa/4.0/>."
|
||||||
|
text = "This Source Code Form is subject to the terms of the Mozilla Public
|
||||||
|
License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
|
file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
||||||
|
|
||||||
|
##########################
|
||||||
|
|
||||||
|
Tony's Dress Up (c) by Anthony Wilcox
|
||||||
|
|
||||||
|
Tony's Dress Up is licensed under a Creative Commons
|
||||||
|
Attribution-ShareAlike 4.0 International License.
|
||||||
|
|
||||||
|
You should have received a copy of the license along with this work.
|
||||||
|
If not, see <http://creativecommons.org/licenses/by-sa/4.0/>."
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/SettingsBtn" to="." method="_on_SettingsBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/ResumeBtn" to="." method="_on_ResumeBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="PauseWin/PauseVbox/ExitBtn" to="." method="_on_ExitBtn_pressed"]
|
||||||
|
[connection signal="toggled" from="SettingsWin/Grid/MusicBtn" to="." method="_on_MusicBtn_toggled"]
|
105
project/scn/TitleScn.tscn
Normal file
|
@ -0,0 +1,105 @@
|
||||||
|
[gd_scene load_steps=5 format=2]
|
||||||
|
|
||||||
|
[ext_resource path="res://src/TitleScn.gd" type="Script" id=1]
|
||||||
|
[ext_resource path="res://styles/DressUpTheme.res" type="Theme" id=2]
|
||||||
|
[ext_resource path="res://sprites/title.svg" type="Texture" id=3]
|
||||||
|
[ext_resource path="res://scn/PauseScn.tscn" type="PackedScene" id=4]
|
||||||
|
|
||||||
|
[node name="Start" type="Node"]
|
||||||
|
script = ExtResource( 1 )
|
||||||
|
|
||||||
|
[node name="MenuRf" type="ReferenceRect" parent="."]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -209.5
|
||||||
|
margin_top = -225.5
|
||||||
|
margin_right = 209.5
|
||||||
|
margin_bottom = 225.5
|
||||||
|
theme = ExtResource( 2 )
|
||||||
|
|
||||||
|
[node name="Title" type="Sprite" parent="MenuRf"]
|
||||||
|
position = Vector2( 210.755, 77.8556 )
|
||||||
|
texture = ExtResource( 3 )
|
||||||
|
|
||||||
|
[node name="StartVbox" type="VBoxContainer" parent="MenuRf"]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -67.5
|
||||||
|
margin_top = -42.5
|
||||||
|
margin_right = 68.5
|
||||||
|
margin_bottom = 61.5
|
||||||
|
|
||||||
|
[node name="PlayBtn" type="Button" parent="MenuRf/StartVbox"]
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 21.0
|
||||||
|
text = "KPLY"
|
||||||
|
|
||||||
|
[node name="CreditsBtn" type="Button" parent="MenuRf/StartVbox"]
|
||||||
|
margin_top = 25.0
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 46.0
|
||||||
|
text = "KCRE"
|
||||||
|
|
||||||
|
[node name="LicenseBtn" type="Button" parent="MenuRf/StartVbox"]
|
||||||
|
margin_top = 50.0
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 71.0
|
||||||
|
text = "KLIC"
|
||||||
|
|
||||||
|
[node name="ModePanel" type="WindowDialog" parent="MenuRf"]
|
||||||
|
anchor_left = 0.5
|
||||||
|
anchor_top = 0.5
|
||||||
|
anchor_right = 0.5
|
||||||
|
anchor_bottom = 0.5
|
||||||
|
margin_left = -73.0
|
||||||
|
margin_top = -46.0
|
||||||
|
margin_right = 73.0
|
||||||
|
margin_bottom = 46.0
|
||||||
|
|
||||||
|
[node name="PlayVbox" type="VBoxContainer" parent="MenuRf/ModePanel"]
|
||||||
|
anchor_right = 1.0
|
||||||
|
anchor_bottom = 1.0
|
||||||
|
margin_left = 5.0
|
||||||
|
margin_top = 5.0
|
||||||
|
margin_right = -5.0
|
||||||
|
margin_bottom = -5.0
|
||||||
|
|
||||||
|
[node name="ModeLbl" type="Label" parent="MenuRf/ModePanel/PlayVbox"]
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 14.0
|
||||||
|
text = "KGMO"
|
||||||
|
align = 1
|
||||||
|
|
||||||
|
[node name="ModernBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||||
|
margin_top = 18.0
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 38.0
|
||||||
|
text = "Modern"
|
||||||
|
|
||||||
|
[node name="ClassicBtn" type="Button" parent="MenuRf/ModePanel/PlayVbox"]
|
||||||
|
margin_top = 42.0
|
||||||
|
margin_right = 136.0
|
||||||
|
margin_bottom = 62.0
|
||||||
|
text = "KCLS"
|
||||||
|
|
||||||
|
[node name="PauseScn" parent="." instance=ExtResource( 4 )]
|
||||||
|
margin_left = 97.0
|
||||||
|
margin_top = 37.0
|
||||||
|
margin_right = 97.0
|
||||||
|
margin_bottom = 37.0
|
||||||
|
|
||||||
|
[node name="Version" type="Label" parent="."]
|
||||||
|
margin_left = 722.908
|
||||||
|
margin_top = 568.64
|
||||||
|
margin_right = 770.908
|
||||||
|
margin_bottom = 582.64
|
||||||
|
text = "Version"
|
||||||
|
[connection signal="pressed" from="MenuRf/StartVbox/PlayBtn" to="." method="_on_PlayBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="MenuRf/StartVbox/CreditsBtn" to="." method="_on_CreditsBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="MenuRf/StartVbox/LicenseBtn" to="." method="_on_LicenseBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ModernBtn" to="." method="_on_ModernBtn_pressed"]
|
||||||
|
[connection signal="pressed" from="MenuRf/ModePanel/PlayVbox/ClassicBtn" to="." method="_on_ClassicBtn_pressed"]
|
29
project/sprites/atomic shirt.png.import
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/atomic shirt.png-d26cc1b5ebd91e875597b24efab7e108.stex"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/atomic shirt.png"
|
||||||
|
dest_files=[ "res://.import/atomic shirt.png-d26cc1b5ebd91e875597b24efab7e108.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/atomic_shirt.png
Normal file
After Width: | Height: | Size: 9.9 KiB |
34
project/sprites/atomic_shirt.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/atomic_shirt.png-002c355351591fbe2342ca9367df3104.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atomic_shirt.png"
|
||||||
|
dest_files=[ "res://.import/atomic_shirt.png-002c355351591fbe2342ca9367df3104.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
121
project/sprites/atomic_shirt.svg
Normal file
|
@ -0,0 +1,121 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="22.489584mm"
|
||||||
|
height="30.427084mm"
|
||||||
|
viewBox="0 0 22.489584 30.427084"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="atomic_shirt.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:cx="66.109402"
|
||||||
|
inkscape:cy="50.591263"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-332.89496,-265.48813)"
|
||||||
|
style="display:inline"
|
||||||
|
sodipodi:insensitive="true" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
transform="translate(-108.95163,-14.177885)"
|
||||||
|
style="display:inline">
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#003333;fill-opacity:1;stroke:#000000;stroke-width:0.84448189px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 111.2673,16.788005 c -0.92152,4.271598 -1.10981,11.545021 -0.89428,15.292256 0.0769,1.336512 3.11298,0.146572 3.68236,1.350904 1.01203,2.140575 -1.07895,6.609747 -0.15778,9.186161 0.93166,2.605817 14.62642,1.077743 16.78107,-1.314586 0.81011,-0.899459 -1.46175,-2.48188 -0.78906,-6.214168 0.67269,-3.732287 0.63838,-17.327085 -1.84118,-18.354603 -2.47958,-1.027521 -2.20097,1.046255 -6.20744,-0.05405 -1.05993,-1.401319 -10.12597,-1.967194 -10.57366,0.108076 z"
|
||||||
|
id="path827"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csssszzcsc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 114.37102,34.484873 114.5288,21.056867"
|
||||||
|
id="path829"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.47876143;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 127.1015,24.947476 c 0,0 -0.25634,4.651306 0.1052,6.700494 0.36149,2.049185 2.55769,6.774269 2.55769,6.774269"
|
||||||
|
id="path833"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czc" />
|
||||||
|
<g
|
||||||
|
id="g886">
|
||||||
|
<ellipse
|
||||||
|
ry="0.96885204"
|
||||||
|
rx="0.95214766"
|
||||||
|
cy="28.401752"
|
||||||
|
cx="121.36296"
|
||||||
|
id="path848"
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.14999999;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
ry="5.8494253"
|
||||||
|
rx="2.358217"
|
||||||
|
cy="28.26812"
|
||||||
|
cx="121.26273"
|
||||||
|
id="path850"
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
transform="rotate(-43.01527)"
|
||||||
|
ry="5.8494253"
|
||||||
|
rx="2.3582172"
|
||||||
|
cy="103.27947"
|
||||||
|
cx="69.600197"
|
||||||
|
id="path850-0"
|
||||||
|
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
transform="rotate(46.575687)"
|
||||||
|
ry="5.8494253"
|
||||||
|
rx="2.3582172"
|
||||||
|
cy="-68.645317"
|
||||||
|
cx="103.66148"
|
||||||
|
id="path850-0-1"
|
||||||
|
style="display:inline;opacity:1;fill:none;fill-opacity:1;stroke:#ffffff;stroke-width:0.2;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.7 KiB |
34
project/sprites/atomic_shirt.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/atomic_shirt.svg"
|
||||||
|
dest_files=[ "res://.import/atomic_shirt.svg-b3ba00542391d52e77d38154f516ba81.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
91
project/sprites/background.svg
Normal file
|
@ -0,0 +1,91 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="270.93332mm"
|
||||||
|
height="158.75mm"
|
||||||
|
viewBox="0 0 270.93332 158.75"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="background.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="3.959798"
|
||||||
|
inkscape:cx="189.35891"
|
||||||
|
inkscape:cy="63.393406"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:measure-start="0,0"
|
||||||
|
inkscape:measure-end="0,0" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-77.711914,-188.8988)" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="background">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#cccc66;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
|
||||||
|
id="rect831"
|
||||||
|
width="270.93329"
|
||||||
|
height="158.75"
|
||||||
|
x="6.2500007e-008"
|
||||||
|
y="3.7109376e-006"
|
||||||
|
ry="0.29877809" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#999900;fill-opacity:1;stroke:none;stroke-width:0.30000001;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
|
||||||
|
id="rect882"
|
||||||
|
width="271.68924"
|
||||||
|
height="10.583333"
|
||||||
|
x="-0.75595242"
|
||||||
|
y="148.16667"
|
||||||
|
ry="0.29877809" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#5f5f00;fill-opacity:1;stroke:#0c002f;stroke-width:0.34812689;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:0"
|
||||||
|
id="path829"
|
||||||
|
cx="43.856251"
|
||||||
|
cy="153.62221"
|
||||||
|
rx="19.998772"
|
||||||
|
ry="4.2206097" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
34
project/sprites/background.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/background.svg-9d44f657a4f6e1d203e5fbbc2f03483f.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/background.svg"
|
||||||
|
dest_files=[ "res://.import/background.svg-9d44f657a4f6e1d203e5fbbc2f03483f.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/beat_up_jeans.png
Normal file
After Width: | Height: | Size: 3.7 KiB |
34
project/sprites/beat_up_jeans.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/beat_up_jeans.png"
|
||||||
|
dest_files=[ "res://.import/beat_up_jeans.png-c00ecc4d7449d47b449eff5199fe859d.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
114
project/sprites/beat_up_jeans.svg
Normal file
|
@ -0,0 +1,114 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="28.045834mm"
|
||||||
|
height="29.633333mm"
|
||||||
|
viewBox="0 0 28.045834 29.633333"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2007"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="beat_up_jeans.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2001" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:cx="60.844989"
|
||||||
|
inkscape:cy="64.009018"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2004">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-78.959229,-134.01666)" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Color"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:#6ba6ff;fill-opacity:1;stroke:none;stroke-width:3.77054548;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 97.818359,2.4609375 C 97.714007,2.4632366 97.608094,2.4804824 97.5,2.5136719 79.950735,7.9020374 50.416307,7.237218 38.572266,9.0898438 35.717113,9.5364422 23.347841,74.192538 2.7226562,103.76562 c -7.6714393,10.99958 38.3597578,6.20937 39.5996098,0.40626 4.876032,-22.82227 27.320312,-51.361333 27.320312,-51.361333 0,0 1.211544,31.964423 -1.427734,46.917969 -2.097419,11.883504 36.321806,7.441764 36.070316,-4.621094 -0.67418,-32.338756 0.10741,-92.7913255 -6.466801,-92.6464845 z m -60.5,62.5332035 c 3.450596,-0.05759 10.858829,8.631759 4.982422,13.039062 -0.913931,0.685448 -13.004543,-2.52144 -13.384765,-3.662109 -0.08862,-0.265852 2.027088,-5.375354 2.398437,-5.808594 1.244178,-1.77007 3.518073,-3.102442 5.681641,-3.535156 0.102494,-0.0205 0.210956,-0.03135 0.322265,-0.0332 z"
|
||||||
|
transform="scale(0.26458333)"
|
||||||
|
id="path2567-7"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink">
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||||
|
id="path2567"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ssssscss" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.426339,13.972628 c 0,0 1.617341,-2.392754 1.269607,-4.2556557 C 19.348213,7.8540704 19.040519,2.8667529 19.040519,2.8667529"
|
||||||
|
id="path2571"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 19.695946,9.7169723 20.500613,2.7246489"
|
||||||
|
id="path2573"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:#676767;fill-opacity:1;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 8.2727251,8.6461754 c 0,0 2.7605219,0.9937891 3.6076819,-0.064851 0.84716,-1.0586401 0.876732,-5.245691 0.876732,-5.245691 l -3.1378736,0.420475 z"
|
||||||
|
id="path2569"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#989898;fill-opacity:1;stroke:none;stroke-width:0.26499999;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 9.6192654,3.7561084 c 0,0 0.3544121,-0.9759023 0.7708376,-0.9833627 4.367213,-0.07824 10.825706,-0.9252221 15.468224,-1.6704345 0.369698,-0.059344 0.467965,1.0211734 0.234104,1.0879908 C 22.558728,3.1999315 9.6192654,3.7561084 9.6192654,3.7561084 Z"
|
||||||
|
id="path2583"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csssc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||||
|
id="path2579"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 5.8 KiB |
34
project/sprites/beat_up_jeans.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/beat_up_jeans.svg"
|
||||||
|
dest_files=[ "res://.import/beat_up_jeans.svg-03d15b89036beb9eef0ad5d0514187f7.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/biker_jacket.png
Normal file
After Width: | Height: | Size: 7.9 KiB |
34
project/sprites/biker_jacket.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/biker_jacket.png-0e4a3c03a6371b870b12246acd956d85.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/biker_jacket.png"
|
||||||
|
dest_files=[ "res://.import/biker_jacket.png-0e4a3c03a6371b870b12246acd956d85.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
137
project/sprites/biker_jacket.svg
Normal file
|
@ -0,0 +1,137 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg898"
|
||||||
|
width="85"
|
||||||
|
height="115"
|
||||||
|
viewBox="0 0 85 115"
|
||||||
|
sodipodi:docname="biker_jacket.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata904">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs902" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
id="namedview900"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:zoom="5.8044244"
|
||||||
|
inkscape:cx="97.258101"
|
||||||
|
inkscape:cy="51.215311"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer4" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer4"
|
||||||
|
inkscape:label="Original"
|
||||||
|
transform="translate(171.63136,61.398304)" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer5"
|
||||||
|
inkscape:label="Re-Ink"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;stroke:#000000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 52.890688,14.731659 c 0.764515,4.752056 10.201502,11.594198 12.232049,2.584236 2.030547,-9.0099623 1.378259,92.860195 1.378259,92.860195 0,0 -15.133064,4.19525 -19.640191,2.41196 -4.42667,-1.75147 -7.063577,-3.27337 -7.063577,-3.27337 L 48.411347,84.678302 49.617323,47.293028 54.44123,25.413166 c 0,0 -2.315057,-15.433563 -1.550542,-10.681507 z"
|
||||||
|
id="path1474"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="zzcsccccz" />
|
||||||
|
<path
|
||||||
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 49.272759,3.8778696 c 3.143488,5.5450393 5.100023,14.1533374 5.168471,21.5352964 0.06925,7.46812 -4.015167,14.455339 -4.823907,21.879862 -0.715149,6.565322 0.226214,13.21219 0,19.812472 -0.201114,5.867933 0.02899,11.832773 -1.205976,17.572802 -2.048545,9.521451 -6.74312,20.985118 -9.130966,24.636378 -1.184018,1.81049 -15.029674,4.68044 -16.194543,-0.34456 -1.311136,-5.65597 0,-22.568994 0,-22.568994 0,0 -11.719986,6.228599 -12.576613,2.067389 -3.466686,-16.840018 -2.5913083,-55.623654 0.344564,-66.673279 1.129259,-4.250145 5.839099,-7.168701 9.992378,-8.614118 2.605626,-0.906806 5.524187,0.07154 8.269554,0.344564 3.297651,0.327945 6.540835,2.028564 9.820095,1.550542 1.448807,-0.211194 3.962495,-1.895106 3.962495,-1.895106 L 44.27657,5.428411 c 0,0 4.136228,-3.0674931 4.996189,-1.5505414 z"
|
||||||
|
id="path1470"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ssssssscsssssccs" />
|
||||||
|
<path
|
||||||
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 64.60589,3.0164578 c 0,0 1.904385,28.4684072 2.239671,42.7260282 0.504947,21.472239 -4.195334,52.337177 -0.344565,64.433604 1.544108,4.85051 11.009589,-2.05041 13.954872,-6.20216 3.267134,-4.605438 1.378259,-16.883674 1.378259,-16.883674 L 80.62815,33.165873 c 0,0 -3.441056,-8.167319 -6.029883,-11.715201 -2.010604,-2.755451 -5.560635,-4.264554 -7.235859,-7.23586 C 65.474434,10.866155 64.60589,3.0164578 64.60589,3.0164578 Z"
|
||||||
|
id="path1472"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csssccssc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 23.085838,86.401126 c 0,0 -1.47813,-26.442444 -0.344565,-35.145604 1.133565,-8.70316 4.651624,-16.883672 4.651624,-16.883672"
|
||||||
|
id="path1476"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:2.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 82.523257,93.464704 c 0,0 -9.070578,-22.894678 -10.509225,-31.355392 -1.438647,-8.460714 0.172282,-20.501603 0.172282,-20.501603"
|
||||||
|
id="path1478"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#6b6b6b;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 33.767345,35.405544 11.887484,-0.68913"
|
||||||
|
id="path1480"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#6b6b6b;fill-opacity:1;stroke:none;stroke-width:2.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path1482"
|
||||||
|
cx="46.602383"
|
||||||
|
cy="19.211"
|
||||||
|
rx="2.1535296"
|
||||||
|
ry="2.5842357" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#6b6b6b;fill-opacity:1;stroke:none;stroke-width:2.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path1482-2"
|
||||||
|
cx="46.34396"
|
||||||
|
cy="26.446859"
|
||||||
|
rx="2.1535296"
|
||||||
|
ry="2.5842357" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke:none;stroke-width:1.70983768;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path1482-6"
|
||||||
|
cx="70.979523"
|
||||||
|
cy="96.845749"
|
||||||
|
rx="1.4221421"
|
||||||
|
ry="1.8305" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke:none;stroke-width:1.70983768;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path1482-2-0"
|
||||||
|
cx="70.808868"
|
||||||
|
cy="101.97115"
|
||||||
|
rx="1.4221421"
|
||||||
|
ry="1.8305" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#6b6b6b;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 70.162418,35.680779 c 7.580424,0.516847 7.063577,1.550541 7.063577,1.550541"
|
||||||
|
id="path1517"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 6.7 KiB |
34
project/sprites/biker_jacket.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/biker_jacket.svg"
|
||||||
|
dest_files=[ "res://.import/biker_jacket.svg-e4eb87ceed9266fe4354ce7432371bfb.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
29
project/sprites/blue tux.png.import
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/blue tux.png-e74dcea6593b7b5d27c231432c1497a4.stex"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/blue tux.png"
|
||||||
|
dest_files=[ "res://.import/blue tux.png-e74dcea6593b7b5d27c231432c1497a4.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/blue_camo_jeans.png
Normal file
After Width: | Height: | Size: 5.5 KiB |
34
project/sprites/blue_camo_jeans.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/blue_camo_jeans.png"
|
||||||
|
dest_files=[ "res://.import/blue_camo_jeans.png-afabffa48cf609dcc71548ef43544306.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
199
project/sprites/blue_camo_jeans.svg
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="28.045834mm"
|
||||||
|
height="29.633333mm"
|
||||||
|
viewBox="0 0 28.045834 29.633333"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2007"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="blue_camo_jeans.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2001" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="5.6"
|
||||||
|
inkscape:cx="67.738265"
|
||||||
|
inkscape:cy="72.758833"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:lockguides="true" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2004">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
style="display:inline"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:#003366;fill-opacity:1;stroke:#000000;stroke-width:0.9976235;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 0.7201694,27.454536 C 6.1772493,19.62999 9.4499316,2.5232009 10.205357,2.4050384 13.339093,1.9148645 21.153632,2.0908693 25.796875,0.66519761 27.627272,0.10318858 27.411054,16.471927 27.59226,25.164037 c 0.06654,3.191629 -10.098839,4.366766 -9.543897,1.22259 0.698309,-3.956459 0.377976,-12.413999 0.377976,-12.413999 0,0 -5.938677,7.551179 -7.228794,13.589569 -0.328044,1.535408 -12.5071103,2.802641 -10.4773756,-0.107661 z"
|
||||||
|
id="path2567"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ssssscss" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.16287224px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 16.470484,16.035996 c -1.222803,0.75645 -2.464166,-0.108141 -3.689404,0.146852 -1.003152,0.208774 0.117583,3.77469 1.874943,2.51747"
|
||||||
|
id="path2614"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.427399,13.900863 c 0,0 1.115929,-2.081231 1.202639,-3.9103052 0.08671,-1.8290746 -0.589529,-6.9226402 -0.589529,-6.9226402"
|
||||||
|
id="path2571"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 19.627919,9.5159193 20.501823,2.9925194"
|
||||||
|
id="path2573"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 9.5548856,8.7194926 C 8.7305392,14.948757 19.548317,14.654826 15.334589,9.3876666 14.556928,8.4155909 13.98844,7.6940682 12.828937,7.4499625"
|
||||||
|
id="path2612"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 8.2727251,8.6461754 c 0,0 3.4286959,-0.075289 4.2758559,-1.1339288 0.84716,-1.0586401 0.241967,-3.842526 0.241967,-3.842526 l -3.1712826,0.086388 z"
|
||||||
|
id="path2569"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czccc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 9.6192654,3.7561084 18.999166,3.2834424 26.326292,2.1234846"
|
||||||
|
id="path2579"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 17.378461,10.423336 C 18.358853,9.5255596 20.263676,8.8393651 21.548606,9.4878927"
|
||||||
|
id="path2598"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 18.37478,11.191736 c -1.268353,0.549435 -2.308696,1.415572 -3.474504,2.071338"
|
||||||
|
id="path2600"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 20.713388,10.256292 c 0.114075,1.271813 0.770932,2.519239 1.135896,3.674956"
|
||||||
|
id="path2602"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 20.112032,12.661718 c 0.198181,0.379098 0.133634,0.857634 0.133634,1.302939"
|
||||||
|
id="path2610"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 7.9178596,11.626049 c 0.5494409,0.355012 -0.068162,1.434333 0.233861,1.937704 0.3749281,0.62488 2.1547794,0.04998 2.5056514,0.634765 1.766519,2.944198 -2.8505017,2.980279 -4.3097208,2.104747"
|
||||||
|
id="path2616"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 26.593318,5.6458931 c -0.60844,-0.024347 -1.962783,0.1128086 -2.238383,0.8018087 -0.470092,1.1752313 0.412183,1.8266262 0.835218,2.6726951 0.997922,1.9958451 -2.894534,5.5730161 1.804068,5.3119821"
|
||||||
|
id="path2618"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssc" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 18.976136,17.171891 c 1.274456,-0.196445 2.381553,-0.316593 3.407687,0.367496 0.537516,0.358344 2.923452,1.185894 3.507912,0.835217 0.360982,-0.216589 0.991069,-1.189224 1.002261,-0.7684 0.120692,4.538158 0.820713,2.816793 -4.810852,1.971113 -1.100592,-0.165274 -2.590903,1.43981 -3.006782,0.534539 0,0 -0.270632,-1.974328 -0.100226,-2.939965 z"
|
||||||
|
id="path2620"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cscsssc" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 5.6794774,18.274379 c 1.9041041,-0.300696 1.5167695,1.017868 2.5056519,2.171564 0.4997965,0.583096 1.6614499,0.325103 2.0713387,0.734991 0.119753,0.119753 0.07008,1.005778 0,1.169304 -1.1679449,2.725205 -4.2555834,0.764116 -5.9801555,-0.467721"
|
||||||
|
id="path2622"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csscc" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 3.0067821,24.555212 c 5.2682351,2.02902 0.5412926,5.21361 -1.6184389,2.932734"
|
||||||
|
id="path2630"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 2.4722431,27.261317 c 2.4690673,0.273878 4.4470478,-0.03985 6.6483295,-0.734991"
|
||||||
|
id="path2624"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#cccccc;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 27.061041,25.022933 c -5.126407,-2.816767 -5.239849,-1.161859 -5.879931,2.672695 2.302396,0.345091 5.634272,-0.584621 5.879931,-2.672695 z"
|
||||||
|
id="path2632"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 19.510675,26.259055 c 2.42248,0.323735 4.741824,0.77491 6.748556,-0.801809"
|
||||||
|
id="path2626"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<g
|
||||||
|
id="g2657">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2604"
|
||||||
|
d="m 18.999166,3.2834423 c -0.04805,1.5545165 -0.562287,2.9032809 -1.459603,4.0997026"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
ry="0.28397387"
|
||||||
|
rx="0.25056517"
|
||||||
|
cy="7.3664403"
|
||||||
|
cx="17.472746"
|
||||||
|
id="path2634"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
id="g2653">
|
||||||
|
<path
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
id="path2606"
|
||||||
|
d="m 20.501823,2.9925195 c 0.561916,1.1250721 1.083725,2.4049651 1.848591,3.3883647"
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
|
||||||
|
<ellipse
|
||||||
|
ry="0.28397387"
|
||||||
|
rx="0.25056517"
|
||||||
|
cy="6.3808842"
|
||||||
|
cx="22.367119"
|
||||||
|
id="path2634-8"
|
||||||
|
style="opacity:1;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.31317234;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
|
||||||
|
</g>
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 10 KiB |
34
project/sprites/blue_camo_jeans.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/blue_camo_jeans.svg"
|
||||||
|
dest_files=[ "res://.import/blue_camo_jeans.svg-41f698e822667bb843272733405fda26.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
103
project/sprites/blue_skirt.svg
Normal file
|
@ -0,0 +1,103 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="28.045834mm"
|
||||||
|
height="29.633333mm"
|
||||||
|
viewBox="0 0 28.045834 29.633333"
|
||||||
|
version="1.1"
|
||||||
|
id="svg2007"
|
||||||
|
inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
|
||||||
|
sodipodi:docname="blue_skirt.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2001" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="7.9195959"
|
||||||
|
inkscape:cx="78.143852"
|
||||||
|
inkscape:cy="76.635925"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
showguides="false"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
inkscape:window-x="1911"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1" />
|
||||||
|
<metadata
|
||||||
|
id="metadata2004">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-78.959229,-134.01666)" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink">
|
||||||
|
<path
|
||||||
|
style="fill:#4791ff;fill-opacity:1;stroke:#000000;stroke-width:0.99800003;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 10.089425,2.5388847 26.192414,0.50095454 c 0,0 1.102652,8.28470726 1.570209,16.00276246 0.0682,1.125724 -2.223008,0.683836 -3.34087,0.53454 -0.375462,-0.05015 -0.656939,-0.460713 -1.03567,-0.467722 -1.238515,-0.02292 -2.203485,1.455757 -3.441095,1.403165 -0.587163,-0.02495 -0.983564,-0.766695 -1.570208,-0.801809 -1.255555,-0.07515 -2.06806,1.45325 -3.541321,1.302939 -0.411705,-0.042 -0.722174,-0.491133 -1.135896,-0.50113 -1.240516,-0.02998 -2.234561,1.288171 -3.474503,1.336348 C 9.131624,19.352455 8.1694591,18.48351 7.0826425,18.374604 5.9700902,18.263119 3.2661714,19.687213 3.7417734,18.675282 8.4283356,8.7037569 10.089425,2.5388847 10.089425,2.5388847 Z"
|
||||||
|
id="path824"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccssssssssssc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 8.3187639,16.904622 C 13.931424,5.2783972 12.795528,5.6458929 12.795528,5.6458929"
|
||||||
|
id="path826"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 12.828937,9.3542576 c -0.7684,4.2763124 -0.233861,7.3165034 -0.233861,7.3165034"
|
||||||
|
id="path828"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 15.935946,16.069405 C 17.907058,9.187214 17.071841,5.6124842 17.071841,5.6124842"
|
||||||
|
id="path830"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 17.895223,8.575149 c 0.360691,4.329803 1.661365,7.129221 1.661365,7.129221"
|
||||||
|
id="path828-1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 23.175166,15.213039 C 22.814475,10.883236 21.513801,8.0838183 21.513801,8.0838183"
|
||||||
|
id="path828-1-6"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 24.578978,15.782268 C 22.607866,8.9000772 23.443083,5.3253473 23.443083,5.3253473"
|
||||||
|
id="path830-6"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.6 KiB |
34
project/sprites/blue_skirt.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/blue_skirt.svg-32ac008a32aedd4fac805218f3fbe902.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/blue_skirt.svg"
|
||||||
|
dest_files=[ "res://.import/blue_skirt.svg-32ac008a32aedd4fac805218f3fbe902.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/bottoms_placeholder.png
Normal file
After Width: | Height: | Size: 8.5 KiB |
34
project/sprites/bottoms_placeholder.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/bottoms_placeholder.png"
|
||||||
|
dest_files=[ "res://.import/bottoms_placeholder.png-62c912a1bed4bf5afa5837db5713e2ad.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/briefs.png
Normal file
After Width: | Height: | Size: 4.4 KiB |
34
project/sprites/briefs.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/briefs.png"
|
||||||
|
dest_files=[ "res://.import/briefs.png-6f928372b63062f4dbc7d1657c27f18d.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
95
project/sprites/briefs.svg
Normal file
|
@ -0,0 +1,95 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg865"
|
||||||
|
width="106"
|
||||||
|
height="112"
|
||||||
|
viewBox="0 0 106 112"
|
||||||
|
sodipodi:docname="briefs.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata871">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs869" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
id="namedview867"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
inkscape:zoom="11.9198"
|
||||||
|
inkscape:cx="70.364745"
|
||||||
|
inkscape:cy="79.295955"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer1" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Re-ink">
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 37.135593,14.118644 C 43.027868,20.752407 91.487239,18.48988 100.72881,14 c 1.54442,-0.750333 0.62094,2.781374 0.71187,5.101695 0.0909,2.320321 -5.163506,0.628407 -7.118646,2.194915 -2.49523,1.999242 -10.869289,30.780278 -21.59322,23.669492 C 61.588691,37.579349 66.637862,23.81384 35.830509,21.59322 33.307836,21.411384 35.455973,12.227659 37.135593,14.118644 Z"
|
||||||
|
id="path1419-8"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sszssss" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 101.73729,15.423728 c 0,0 -9.226533,5.073241 -25.271188,5.872882 C 60.421446,22.09625 50.355865,20.713159 43.601695,19.161017 36.847525,17.608875 35.59322,15.898305 35.59322,15.898305"
|
||||||
|
id="path1421-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czzc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 68.398305,42.118644 c 0,0 4.375912,-5.632741 5.457627,-8.957627 1.196948,-3.67908 0.949153,-11.567797 0.949153,-11.567797"
|
||||||
|
id="path1431-2"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 73.855932,33.161017 c 0,0 1.879553,4.145002 1.838983,6.347457 -0.0395,2.144456 -2.016949,6.11017 -2.016949,6.11017"
|
||||||
|
id="path1433-4"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 83.228814,42.652543 c 0,0 3.157166,-12.834443 4.152542,-18.805086 0.196074,-1.176126 0.355932,-3.559322 0.355932,-3.559322"
|
||||||
|
id="path1435-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.60000002;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 82.457627,21 c 0,0 1.127312,2.955857 1.898305,4.330508 0.507164,0.904254 1.957627,3.262712 1.957627,3.262712"
|
||||||
|
id="path1437-3"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 4.3 KiB |
34
project/sprites/briefs.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/briefs.svg"
|
||||||
|
dest_files=[ "res://.import/briefs.svg-9a7fc83a2615d5060d598e416767b736.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/camera.png
Normal file
After Width: | Height: | Size: 5.2 KiB |
34
project/sprites/camera.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/camera.png"
|
||||||
|
dest_files=[ "res://.import/camera.png-0467f8492fb5daf0ef966d94d21bc81c.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
117
project/sprites/camera.svg
Normal file
|
@ -0,0 +1,117 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:xlink="http://www.w3.org/1999/xlink"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg815"
|
||||||
|
width="85"
|
||||||
|
height="105"
|
||||||
|
viewBox="0 0 85 105"
|
||||||
|
sodipodi:docname="camera.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata821">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs819" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
id="namedview817"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:zoom="15.390476"
|
||||||
|
inkscape:cx="59.64551"
|
||||||
|
inkscape:cy="58.72505"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer2"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:pagecheckerboard="true" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Original"
|
||||||
|
transform="translate(57.184406,10.136139)"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<image
|
||||||
|
sodipodi:absref="C:\Users\zc456\Documents\GitHub\nathansdressup\project\sprites\camera.png"
|
||||||
|
xlink:href="camera.png"
|
||||||
|
style="opacity:0.56499999"
|
||||||
|
y="-10.136139"
|
||||||
|
x="-57.184406"
|
||||||
|
id="image823-4"
|
||||||
|
preserveAspectRatio="none"
|
||||||
|
height="105"
|
||||||
|
width="85" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink">
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect850"
|
||||||
|
width="10.785892"
|
||||||
|
height="3.1837871"
|
||||||
|
x="33.397278"
|
||||||
|
y="38.075497"
|
||||||
|
ry="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.13385832;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect850-0"
|
||||||
|
width="10.785892"
|
||||||
|
height="3.1837871"
|
||||||
|
x="63.545792"
|
||||||
|
y="39.017635"
|
||||||
|
ry="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ececec;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 32.227723,41.194307 -0.129951,20.792079 7.602104,-0.389851 0.454827,-1.559406 35.996287,0.519802 0.454827,-18.128094 -14.294555,-0.129951 -4.418316,-4.678218 -7.862005,-0.06498 -3.053837,3.443688 z"
|
||||||
|
id="path842"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<rect
|
||||||
|
style="opacity:1;fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.13228285;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="rect844"
|
||||||
|
width="43.859867"
|
||||||
|
height="11.112343"
|
||||||
|
x="32.356888"
|
||||||
|
y="46.911343"
|
||||||
|
ry="0" />
|
||||||
|
<ellipse
|
||||||
|
style="opacity:1;fill:#008000;fill-opacity:1;stroke:#000000;stroke-width:1.13385827;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
id="path846"
|
||||||
|
cx="55.034035"
|
||||||
|
cy="52.272587"
|
||||||
|
rx="7.0823021"
|
||||||
|
ry="6.9198637" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 3.8 KiB |
34
project/sprites/camera.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/camera.svg"
|
||||||
|
dest_files=[ "res://.import/camera.svg-9305287ba29f8c72100325a8b8ece10a.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/character_base.png
Normal file
After Width: | Height: | Size: 14 KiB |
34
project/sprites/character_base.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/character_base.png"
|
||||||
|
dest_files=[ "res://.import/character_base.png-5792404fa83b4fad07f738418ce65c16.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
199
project/sprites/character_base.svg
Normal file
|
@ -0,0 +1,199 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
width="43.391666mm"
|
||||||
|
height="86.518753mm"
|
||||||
|
viewBox="0 0 43.391666 86.518753"
|
||||||
|
version="1.1"
|
||||||
|
id="svg8"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)"
|
||||||
|
sodipodi:docname="character_base.svg">
|
||||||
|
<defs
|
||||||
|
id="defs2" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
id="base"
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1.0"
|
||||||
|
inkscape:pageopacity="0.0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:zoom="2.8"
|
||||||
|
inkscape:cx="86.349322"
|
||||||
|
inkscape:cy="146.4697"
|
||||||
|
inkscape:document-units="mm"
|
||||||
|
inkscape:current-layer="layer3"
|
||||||
|
showgrid="false"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
showguides="true"
|
||||||
|
inkscape:window-width="958"
|
||||||
|
inkscape:window-height="991"
|
||||||
|
inkscape:window-x="-8"
|
||||||
|
inkscape:window-y="0"
|
||||||
|
inkscape:window-maximized="0"
|
||||||
|
inkscape:lockguides="false" />
|
||||||
|
<metadata
|
||||||
|
id="metadata5">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title />
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<g
|
||||||
|
inkscape:label="Layer 1"
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
transform="translate(-76.57798,-103.3061)"
|
||||||
|
style="display:inline" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Color">
|
||||||
|
<path
|
||||||
|
style="fill:#333333;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 12.756696,20.042186 c -3.0330485,3.485978 -6.9287479,8.842867 -10.6778266,9.780135 5.411336,2.216856 13.7737856,1.25077 18.6153276,-3.590773 -1.673498,-3.036966 -4.542199,-5.822302 -7.937501,-6.189362 z"
|
||||||
|
id="path864"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 34.726561,20.939881 c 1.424506,0.409095 2.905617,0.519717 4.441219,0.519717 -0.631436,0.891699 -1.802839,1.33673 -2.834817,1.795387 0.679627,2.000634 1.918615,4.085352 2.55134,6.236608 -0.196308,-1.699022 -1.726382,-2.566554 -2.976563,-3.449034 -1.289203,1.845106 -2.413179,3.349977 -4.441222,4.110492 -0.02396,-1.807178 -0.561611,-3.490928 -2.102492,-4.464845 -1.266898,0.154353 -2.719548,0.200395 -2.62221,1.063057 0.225306,1.996779 1.707495,3.473391 3.168393,4.548419 1.635877,2.807358 2.473664,10.092655 1.22558,18.886106 0.123737,9.510183 1.737466,16.423656 1.039433,27.119792 5.989076,7.622458 -5.466142,9.257207 -8.457219,1.795388 0,-4.946536 0.06144,-10.808711 0.04725,-15.73326 -3.051778,4.577667 -6.271659,11.54185 -7.843006,17.103423 6.066786,9.10018 -9.274496,5.51039 -10.15811,0.18899 5.089364,-6.263833 6.523881,-16.184507 8.976934,-23.718007 -4.857104,0.28571 -5.3976359,-3.203427 -2.267857,-6.756323 0,-5.167442 -0.342243,-10.519109 0.47247,-15.449778 0.254528,-4.326972 4.855698,-2.933067 7.181548,-4.677457 2.338792,-1.754093 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586536 -1.417411,3.023812 -1.143466,-0.96755 -1.993973,-1.935806 -2.315104,-3.449035 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176 8.399753,-4.993925 13.806413,-4.295882 18.993302,-0.425223 z"
|
||||||
|
id="path831-5"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccsccccccccccscccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:1.42187285;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 31.513766,4.4697399 33.171594,0.92059932 36.191219,5.9184807 Z"
|
||||||
|
id="path868-9"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 15.733259,21.365104 c 8.031531,-1.988559 12.40585,-4.181396 18.993303,-0.425223 4.457472,-16.6670615 -22.644325,-7.978795 -21.296268,-1.23851 0.0953,0.476477 1.928934,1.360996 2.302965,1.663733"
|
||||||
|
id="path845"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:none;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 12.756695,20.042186 C 18.416439,16.062161 25.70522,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988082 29.207101,0.4402425 18.893463,6.8361942 13.370906,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
id="path833-7"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 16.725446,36.81488 c 0.260421,-2.556769 3.987942,-6.623181 3.987942,-6.623181 0,0 -4.511124,-0.378288 -5.879929,1.069079 -4.368124,4.618829 -2.360245,18.925011 -2.360245,18.925011 0,0 -2.406213,2.614718 -1.982885,4.060169 0.59027,2.01547 3.806676,4.399895 4.250742,2.696156 0.444066,-1.703739 1.28661,-13.276693 1.984375,-20.127234 z"
|
||||||
|
id="path847"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="scscszs" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 27.061041,29.256257 c 0,0 2.289171,4.408208 2.043123,9.165021 -0.246048,4.756813 2.173364,14.126862 2.173364,14.126862 0,0 2.178654,-16.525137 -1.476976,-21.955536 -0.567383,-0.842841 -2.739511,-1.336347 -2.739511,-1.336347 z"
|
||||||
|
id="path849"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czcsc" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 26.44683,29.067269 c 1.452313,2.918211 2.197082,6.224576 2.137617,9.354009 -0.07867,4.140228 1.79539,12.425968 1.79539,12.425968 0.739806,0.173775 1.322916,-11.953493 1.322916,-11.953493 l -1.792544,-7.594071 c 0,0 -4.132854,-3.577626 -3.463379,-2.232413 z"
|
||||||
|
id="path853"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="sssccs" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 15.875,51.177978 c -0.52762,2.533268 5.841867,9.630703 8.315476,11.103052 4.741466,-1.55146 7.056167,-4.214834 7.606771,-7.654018 0.550604,-3.439184 0.377976,22.678568 0.377976,22.678568 0,0 2.67882,4.233216 0.566965,5.76414 -2.111855,1.530924 -7.638158,-0.210531 -9.024185,-3.968752 -1.386027,-3.758221 0.472473,-16.819938 0.472473,-16.819938 l -8.268229,18.1901 c 0,0 2.807966,4.177084 0.330729,5.764141 -2.477237,1.587057 -11.6490399,-3.641913 -10.488839,-5.57515 2.8840394,-4.80566 7.654018,-18.520832 7.654018,-18.520832 0,0 2.984465,-13.494579 2.456845,-10.961311 z"
|
||||||
|
id="path857"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="zczczzcczscz" />
|
||||||
|
<path
|
||||||
|
style="fill:#333333;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 24.993675,13.852831 C 23.111329,11.112846 22.776665,7.1008422 24.899181,4.5924141 28.443308,3.5516118 32.34615,3.7638575 35.151786,5.8680839 34.290793,8.2025937 31.848954,10.704232 32.978422,13.285862"
|
||||||
|
id="path5043"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 32.97842,13.285862 c -1.622684,-1.035005 -4.693573,-0.02406 -6.709075,0.0945"
|
||||||
|
id="path5045"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#0276b1;fill-opacity:1;stroke:none;stroke-width:0.26458332px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 6.1354861,0.8014286 2.416225,12.2009554 c 0,0 4.4513719,9.762022 4.2049839,7.039802 C 11.698277,8.3482626 18.952931,7.8743621 18.952931,7.8743621 L 10.961309,2.4662981 6.1354861,0.8014286"
|
||||||
|
id="path5057"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="ccsccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:0.50904238;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 15.537908,8.9384397 C 13.980201,6.756896 10.705056,5.0717367 8.3808294,3.6521391 8.0327779,4.6634621 8.1572432,5.7312218 8.0376818,6.7672806 8.4787557,6.6562752 8.5984797,6.227326 8.8710403,5.9648957 8.9919797,7.3299488 9.1194496,8.5491118 9.7534199,9.6936258 10.049714,9.24812 10.142439,8.5379754 10.341673,7.9944576 c 0.285982,1.3580005 0.172484,2.8610974 0.392168,4.2007214 0.248875,-0.839177 0.348466,-1.693489 0.588254,-2.5015532 1.028074,0.8901012 1.251834,2.2544372 1.715738,3.4455352 0.08118,-1.814112 1.504476,-2.893544 2.500075,-4.2007213 z"
|
||||||
|
id="path5059"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-ink"
|
||||||
|
style="display:inline"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 31.324776,3.8055155 c 0,0 1.628858,-3.7746833 2.315104,-2.93216171 2.908313,3.57061041 2.551339,5.04512691 2.551339,5.04512691"
|
||||||
|
id="path868"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="csc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 34.726562,20.939881 c 1.424506,0.409095 2.905615,0.519717 4.441219,0.519717 -0.631435,0.891699 -1.802841,1.33673 -2.83482,1.795387 0.679627,2.000634 1.918617,4.085351 2.55134,6.236607 -0.196308,-1.69902 -1.726382,-2.566552 -2.976563,-3.449033 -1.289202,1.845105 -2.41318,3.349976 -4.44122,4.110491 -0.02396,-1.807178 -0.561611,-3.490926 -2.102492,-4.464844 -1.266898,0.154353 -2.347681,0.239471 -2.62221,1.063059 -0.342642,1.027925 -0.123795,3.337174 2.207894,3.621326 1.911015,0.232886 3.434163,11.019747 2.186079,19.813197 1.05918,9.510183 1.737464,16.423655 1.039434,27.119792 5.989074,7.622458 -5.466143,9.257205 -8.45722,1.795387 0,-4.946535 0.06144,-10.808709 0.04725,-15.733259 -3.051778,4.577668 -6.271659,11.541849 -7.843006,17.103422 6.066786,9.10018 -9.2744956,5.510391 -10.1581101,0.188989 5.0893641,-6.263833 6.5238811,-16.184506 8.9769341,-23.718005 -4.8571037,0.285712 -5.3976359,-3.203428 -2.267857,-6.756325 0,-5.167441 -0.342243,-10.519106 0.47247,-15.449777 0.254528,-4.326971 4.655246,-4.603503 7.181548,-4.677456 2.922238,-0.08554 0.344395,-5.168508 -2.315104,-4.346726 -1.654478,0.194645 -1.540993,1.586537 -1.417411,3.02381 -1.143466,-0.967549 -1.993973,-1.935805 -2.315104,-3.449033 -0.922523,0.41001 -1.163668,0.859591 -1.464658,1.937128 -0.205894,-1.750106 0.388371,-3.429513 1.228423,-4.960938 -0.815374,-0.582409 -1.342158,-1.351465 -2.078869,-2.078869 1.223677,0.71981 2.536848,1.181155 3.96875,1.181176"
|
||||||
|
id="path831"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccsscccccccccsccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 12.756696,20.042186 C 18.41644,16.062161 25.705221,12.477728 32.978422,13.285862 32.369584,9.9866232 33.699225,7.6646882 36.19122,6.1988086 29.207102,0.4402425 18.893464,6.8361949 13.370907,11.25424 c -0.378768,2.73809 -0.978309,7.149508 -0.614211,8.787946 z"
|
||||||
|
id="path833"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:#ff99cc;fill-opacity:1;stroke:none;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 25.088169,19.569717 c 1.190156,-0.763595 2.367736,-0.865038 3.449032,0 -0.218392,0.862046 -0.809812,1.244368 -1.464656,1.653646 -0.887893,-0.606787 -1.473948,-1.058147 -1.984376,-1.653646 z"
|
||||||
|
id="path852"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 16.394717,36.578645 C 14.7459,42.453258 16.671971,54.08376 14.741071,56.942114"
|
||||||
|
id="path856"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 29.104165,38.421279 c -0.128659,3.930449 0.525574,10.419337 2.173363,14.126861"
|
||||||
|
id="path858"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cc" />
|
||||||
|
<path
|
||||||
|
style="fill:#954b02;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 36.191221,6.1988083 c 1.475475,0.093714 2.749367,-0.7672527 3.685267,-1.937128 -0.984779,1.0141105 -1.765835,2.2334628 -2.504093,3.3072918 2.133612,1.7021153 3.912086,3.8270629 5.24442,6.0476189 -0.586645,-1.102272 -1.544523,-1.49074 -2.456845,-1.889881 1.783386,2.334899 2.199066,5.602939 2.785607,8.389009 C 42.57481,18.1 41.656138,15.640345 39.970982,14.797767 c 1.672285,4.035542 -5.032759,5.990928 -5.24442,6.142114 0.232289,-2.788186 -0.103225,-5.882573 -1.74814,-7.654019 -0.337072,-3.356912 1.47948,-6.5602442 3.212799,-7.0870537 z"
|
||||||
|
id="path860"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cccccccccc" />
|
||||||
|
<path
|
||||||
|
style="fill:#6699cc;fill-opacity:1;stroke:#000000;stroke-width:0.80000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 23.765253,4.4979163 23.623512,2.4662944 26.836309,2.4190474 V 3.836458 Z"
|
||||||
|
id="path870"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:1.18375635;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="M 12.757044,20.045314 C 8.5429472,14.783337 6.1354862,7.5554427 6.1354862,0.80142861 11.351958,1.2722088 15.093613,5.0085232 18.952931,7.8743621"
|
||||||
|
id="path5047"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 15 KiB |
34
project/sprites/character_base.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/character_base.svg"
|
||||||
|
dest_files=[ "res://.import/character_base.svg-5ea6954c66ca6e666096a6a63d2174dc.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic/briefs_classic.png
Normal file
After Width: | Height: | Size: 6.2 KiB |
34
project/sprites/classic/briefs_classic.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic/briefs_classic.png"
|
||||||
|
dest_files=[ "res://.import/briefs_classic.png-72f5c50789d008d18419f2ddc543be01.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic/camera_classic.png
Normal file
After Width: | Height: | Size: 1.8 KiB |
34
project/sprites/classic/camera_classic.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic/camera_classic.png"
|
||||||
|
dest_files=[ "res://.import/camera_classic.png-af832bc2a977e569d65ef92b696b08ab.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic/fundosi_classic.png
Normal file
After Width: | Height: | Size: 3 KiB |
34
project/sprites/classic/fundosi_classic.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic/fundosi_classic.png"
|
||||||
|
dest_files=[ "res://.import/fundosi_classic.png-d1e37ddcca659b1e8bbdf034bd5deb1e.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic/owo_censor_classic.png
Normal file
After Width: | Height: | Size: 1.1 KiB |
34
project/sprites/classic/owo_censor_classic.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/owo_censor_classic.png-fe789b2eea2a06b74f12cd3148299a48.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic/owo_censor_classic.png"
|
||||||
|
dest_files=[ "res://.import/owo_censor_classic.png-fe789b2eea2a06b74f12cd3148299a48.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic/z_briefs_classic.png
Normal file
After Width: | Height: | Size: 6 KiB |
34
project/sprites/classic/z_briefs_classic.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic/z_briefs_classic.png"
|
||||||
|
dest_files=[ "res://.import/z_briefs_classic.png-c11fbedc052fc3e5550d9a1a43d10e7c.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic_dress_up_bg.png
Normal file
After Width: | Height: | Size: 13 KiB |
34
project/sprites/classic_dress_up_bg.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic_dress_up_bg.png"
|
||||||
|
dest_files=[ "res://.import/classic_dress_up_bg.png-c34c9f779b47ab5a3dee0408e5a85e6c.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/classic_dress_up_blurred_bg.png
Normal file
After Width: | Height: | Size: 43 KiB |
34
project/sprites/classic_dress_up_blurred_bg.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/classic_dress_up_blurred_bg.png-6aa7996e6a898bc00341242c3e06b222.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/classic_dress_up_blurred_bg.png"
|
||||||
|
dest_files=[ "res://.import/classic_dress_up_blurred_bg.png-6aa7996e6a898bc00341242c3e06b222.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/cursor.png
Normal file
After Width: | Height: | Size: 8.8 KiB |
34
project/sprites/cursor.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/cursor.png"
|
||||||
|
dest_files=[ "res://.import/cursor.png-ab659432fe95e81e8963a978cc7193a5.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
29
project/sprites/dj shirt.png.import
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/dj shirt.png-678439338bef2f51a00d62d0b4aa6e53.stex"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/dj shirt.png"
|
||||||
|
dest_files=[ "res://.import/dj shirt.png-678439338bef2f51a00d62d0b4aa6e53.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
29
project/sprites/dj shorts.png.import
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/dj shorts.png-2620c5746e1ce4d9f2b948f76c51004a.stex"
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://assets/dj shorts.png"
|
||||||
|
dest_files=[ "res://.import/dj shorts.png-2620c5746e1ce4d9f2b948f76c51004a.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/dj_shirt.png
Normal file
After Width: | Height: | Size: 12 KiB |
34
project/sprites/dj_shirt.png.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/dj_shirt.png"
|
||||||
|
dest_files=[ "res://.import/dj_shirt.png-80161899564a34a06ed4639725e155fc.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
136
project/sprites/dj_shirt.svg
Normal file
|
@ -0,0 +1,136 @@
|
||||||
|
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
|
||||||
|
<!-- Created with Inkscape (http://www.inkscape.org/) -->
|
||||||
|
|
||||||
|
<svg
|
||||||
|
xmlns:dc="http://purl.org/dc/elements/1.1/"
|
||||||
|
xmlns:cc="http://creativecommons.org/ns#"
|
||||||
|
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
|
||||||
|
xmlns:svg="http://www.w3.org/2000/svg"
|
||||||
|
xmlns="http://www.w3.org/2000/svg"
|
||||||
|
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
|
||||||
|
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
|
||||||
|
version="1.1"
|
||||||
|
id="svg837"
|
||||||
|
width="85"
|
||||||
|
height="115"
|
||||||
|
viewBox="0 0 85 115"
|
||||||
|
sodipodi:docname="dj_shirt.svg"
|
||||||
|
inkscape:version="0.92.3 (2405546, 2018-03-11)">
|
||||||
|
<metadata
|
||||||
|
id="metadata843">
|
||||||
|
<rdf:RDF>
|
||||||
|
<cc:Work
|
||||||
|
rdf:about="">
|
||||||
|
<dc:format>image/svg+xml</dc:format>
|
||||||
|
<dc:type
|
||||||
|
rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
|
||||||
|
<dc:title></dc:title>
|
||||||
|
</cc:Work>
|
||||||
|
</rdf:RDF>
|
||||||
|
</metadata>
|
||||||
|
<defs
|
||||||
|
id="defs841" />
|
||||||
|
<sodipodi:namedview
|
||||||
|
pagecolor="#ffffff"
|
||||||
|
bordercolor="#666666"
|
||||||
|
borderopacity="1"
|
||||||
|
objecttolerance="10"
|
||||||
|
gridtolerance="10"
|
||||||
|
guidetolerance="10"
|
||||||
|
inkscape:pageopacity="0"
|
||||||
|
inkscape:pageshadow="2"
|
||||||
|
inkscape:window-width="1920"
|
||||||
|
inkscape:window-height="1001"
|
||||||
|
id="namedview839"
|
||||||
|
showgrid="false"
|
||||||
|
inkscape:pagecheckerboard="true"
|
||||||
|
fit-margin-top="0"
|
||||||
|
fit-margin-left="0"
|
||||||
|
fit-margin-right="0"
|
||||||
|
fit-margin-bottom="0"
|
||||||
|
inkscape:zoom="5.6568543"
|
||||||
|
inkscape:cx="27.653445"
|
||||||
|
inkscape:cy="86.13669"
|
||||||
|
inkscape:window-x="-9"
|
||||||
|
inkscape:window-y="-9"
|
||||||
|
inkscape:window-maximized="1"
|
||||||
|
inkscape:current-layer="layer3" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer1"
|
||||||
|
inkscape:label="Original"
|
||||||
|
transform="translate(17.592821,10.674505)"
|
||||||
|
sodipodi:insensitive="true" />
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer3"
|
||||||
|
inkscape:label="Color">
|
||||||
|
<path
|
||||||
|
style="display:inline;opacity:1;fill:#808040;fill-opacity:1;stroke:none;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 8.0736469,15.651414 c -3.000545,1.901906 -2.134901,57.073021 -2.134901,57.073021 -2.3101643,9.809195 1.7559102,10.522205 0.608284,17.795372 3.172745,1.81514 6.7511221,-1.62007 11.6707931,-0.28466 4.919671,1.33542 1.601085,5.99959 0.42698,11.243813 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427783 -8.341438,-10.916233 -7.116337,-15.086632 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627003 -11.386138,-12.66708 C 60.741934,14.190253 60.509291,27.100642 54.51114,27.46906 48.496563,27.838487 46.696496,15.151003 40.705447,15.798267 28.378758,17.130023 11.074193,13.749508 8.0736469,15.651414 Z"
|
||||||
|
id="path864-9"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="zcczzaazzsacsssz" />
|
||||||
|
<path
|
||||||
|
style="display:inline;fill:#ffffff;fill-opacity:1;stroke:none;stroke-width:1.13385832;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 19.358749,103.26231 c 0,0 -2.031868,-16.953677 4.419417,-10.076263 6.451286,6.877413 45.278555,8.939913 50.73491,-1.237436 3.031418,-5.654289 6.010409,10.076259 6.010409,10.076259 0,0 -17.202537,8.99577 -26.606593,9.50546 -11.827122,0.64102 -34.558143,-8.26802 -34.558143,-8.26802 z"
|
||||||
|
id="path857"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="czscac" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.82618386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 21.18318,56.718399 12.829851,4.676829 6.216526,8.70858 -19.443177,-2.90286 z"
|
||||||
|
id="path1975"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.82618386px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 20.521847,71.232698 19.575443,2.74159 -10.713587,7.90223 -9.126389,-2.419051 z"
|
||||||
|
id="path1977"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.9191364px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="m 71.95915,55.961889 -14.422757,5.1491 -6.988347,9.58798 21.857169,-3.195994 z"
|
||||||
|
id="path1975-9"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="fill:none;stroke:#000000;stroke-width:0.9191364px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
|
||||||
|
d="M 72.702592,71.941855 50.696734,74.960294 62.74048,83.660498 72.999968,80.997169 Z"
|
||||||
|
id="path1977-1"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
<g
|
||||||
|
inkscape:groupmode="layer"
|
||||||
|
id="layer2"
|
||||||
|
inkscape:label="Re-Ink"
|
||||||
|
style="display:inline"
|
||||||
|
sodipodi:insensitive="true">
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 20.92203,15.22896 c 0,0 -4.320995,-7.0225477 0.89194,-9.0880412 4.013907,-1.5904089 18.973672,3.1143052 22.320898,3.7467605 4.35966,0.8237537 -3.429422,5.9105877 -3.429422,5.9105877"
|
||||||
|
id="path866"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cssc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 66.751238,14.232673 c 0,0 -0.736893,-8.3150049 2.300858,-9.299268 1.946842,-0.630797 3.485848,2.307421 4.689494,3.9625141 2.939318,4.0417579 5.250189,6.8177929 5.676727,13.8763579 0.08689,1.437935 -1.280941,4.127475 -1.280941,4.127475"
|
||||||
|
id="path874"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="caasc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;fill-opacity:1;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 8.0736469,15.651414 c -1.916671,16.5657 -7.0806162,60.446928 0.2411497,73.984505 1.7291064,3.220442 4.9833544,-0.736187 9.9030254,0.59923 4.919671,1.335417 1.601085,5.999584 0.42698,11.243811 -1.174105,5.24423 13.404674,6.57995 20.637376,8.09176 6.041484,1.26281 12.406349,1.67677 18.502475,0.71164 7.9885,-1.26473 20.835815,-4.94864 22.772278,-8.37642 1.936463,-3.427781 -8.341438,-10.916229 -7.116337,-15.086633 1.225101,-4.170404 7.707079,-1.859528 7.970297,-4.981436 0.780656,-9.259011 0.132549,-21.086054 -0.569307,-31.596534 -0.521871,-7.815165 -2.704208,-23.341585 -2.704208,-23.341585 0,0 -5.708848,-12.627002 -11.386138,-12.667079 C 60.741933,14.190253 60.50929,27.100641 54.511139,27.469059 48.496562,27.838486 46.696495,15.151003 40.705446,15.798267 28.378757,17.130023 11.074192,13.749508 8.0736469,15.651414 Z"
|
||||||
|
id="path864"
|
||||||
|
inkscape:connector-curvature="0"
|
||||||
|
sodipodi:nodetypes="cczzaazzsacsssc" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 21.918317,40.563119 -3.700495,49.67203"
|
||||||
|
id="path870"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
<path
|
||||||
|
style="opacity:1;fill:none;stroke:#000000;stroke-width:3.77952766;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
|
||||||
|
d="m 70.024752,47.679455 3.415842,39.139852"
|
||||||
|
id="path872"
|
||||||
|
inkscape:connector-curvature="0" />
|
||||||
|
</g>
|
||||||
|
</svg>
|
After Width: | Height: | Size: 7.7 KiB |
34
project/sprites/dj_shirt.svg.import
Normal file
|
@ -0,0 +1,34 @@
|
||||||
|
[remap]
|
||||||
|
|
||||||
|
importer="texture"
|
||||||
|
type="StreamTexture"
|
||||||
|
path="res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex"
|
||||||
|
metadata={
|
||||||
|
"vram_texture": false
|
||||||
|
}
|
||||||
|
|
||||||
|
[deps]
|
||||||
|
|
||||||
|
source_file="res://sprites/dj_shirt.svg"
|
||||||
|
dest_files=[ "res://.import/dj_shirt.svg-5d74e0cb2b3928aecd132f88a5420703.stex" ]
|
||||||
|
|
||||||
|
[params]
|
||||||
|
|
||||||
|
compress/mode=0
|
||||||
|
compress/lossy_quality=0.7
|
||||||
|
compress/hdr_mode=0
|
||||||
|
compress/bptc_ldr=0
|
||||||
|
compress/normal_map=0
|
||||||
|
flags/repeat=0
|
||||||
|
flags/filter=true
|
||||||
|
flags/mipmaps=false
|
||||||
|
flags/anisotropic=false
|
||||||
|
flags/srgb=2
|
||||||
|
process/fix_alpha_border=true
|
||||||
|
process/premult_alpha=false
|
||||||
|
process/HDR_as_SRGB=false
|
||||||
|
process/invert_color=false
|
||||||
|
stream=false
|
||||||
|
size_limit=0
|
||||||
|
detect_3d=true
|
||||||
|
svg/scale=1.0
|
BIN
project/sprites/dj_shorts.png
Normal file
After Width: | Height: | Size: 13 KiB |