Add files via upload
This commit is contained in:
parent
d1b623a9be
commit
88853af213
|
@ -0,0 +1,20 @@
|
|||
Player: Stardew Valley Music Expansion Config. Feel free to edit.
|
||||
====================================================================================
|
||||
Minimum delay time: This is the minimal amout of time(in miliseconds!!!) that will pass before another song will play. 0 means a song will play immediately, 1000 means a second will pass, etc. Used in RNG to determine a random delay between songs.
|
||||
10000
|
||||
Maximum delay time: This is the maximum amout of time(in miliseconds!!!) that will pass before another song will play. 0 means a song will play immediately, 1000 means a second will pass, etc. Used in RNG to determine a random delay between songs.
|
||||
30000
|
||||
Silent rain? Setting this value to false plays the default ambient rain music along side whatever songs are set in rain music. Setting this to true will disable the ambient rain music. It's up to the soundpack creators wither or not they want to mix their music with rain prior to loading it in here.
|
||||
False
|
||||
Seasonal_Music? Setting this value to true will play the seasonal music from the music packs instead of defaulting to the Stardew Valley Soundtrack.
|
||||
True
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
|
@ -0,0 +1,11 @@
|
|||
This is Stardew Symphony
|
||||
|
||||
What this is is a music expansion API that allows users to add in music packs into Stardew Valley and play them without editing the game's default soundtrack. Music can be player per location and season, with additional options to play specific music depending on the time of day and the weather. More options such as muting the default rain soundtrack exist within the config file. This will not mute the music for in-game events or festivals.
|
||||
|
||||
Installing music packs is simple as dragging and dropping a music pack into Stardew Valley/Mods/Stardew_Symphony/Music_Files/
|
||||
|
||||
Only music names included into the files located at
|
||||
Stardew Valley/Mods/Stardew_Symphony/Music_Files/(music_pack_name)/Locations
|
||||
and
|
||||
Stardew Valley/Mods/Stardew_Symphony/Music_Files/(music_pack_name)/Seasons
|
||||
will play according to the name of the file.txt
|
|
@ -0,0 +1,22 @@
|
|||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio Express 14 for Windows Desktop
|
||||
VisualStudioVersion = 14.0.24720.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Stardew_Music_Expansion_API", "Stardew_Music_Expansion_API\Stardew_Music_Expansion_API.csproj", "{697F7EC8-02C6-4F39-A917-EE45955CFFF9}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{697F7EC8-02C6-4F39-A917-EE45955CFFF9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{697F7EC8-02C6-4F39-A917-EE45955CFFF9}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{697F7EC8-02C6-4F39-A917-EE45955CFFF9}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{697F7EC8-02C6-4F39-A917-EE45955CFFF9}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,36 @@
|
|||
using System.Reflection;
|
||||
using System.Runtime.CompilerServices;
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
// General Information about an assembly is controlled through the following
|
||||
// set of attributes. Change these attribute values to modify the information
|
||||
// associated with an assembly.
|
||||
[assembly: AssemblyTitle("Stardew_Music_Expansion_API")]
|
||||
[assembly: AssemblyDescription("")]
|
||||
[assembly: AssemblyConfiguration("")]
|
||||
[assembly: AssemblyCompany("")]
|
||||
[assembly: AssemblyProduct("Stardew_Music_Expansion_API")]
|
||||
[assembly: AssemblyCopyright("Copyright © 2016")]
|
||||
[assembly: AssemblyTrademark("")]
|
||||
[assembly: AssemblyCulture("")]
|
||||
|
||||
// Setting ComVisible to false makes the types in this assembly not visible
|
||||
// to COM components. If you need to access a type in this assembly from
|
||||
// COM, set the ComVisible attribute to true on that type.
|
||||
[assembly: ComVisible(false)]
|
||||
|
||||
// The following GUID is for the ID of the typelib if this project is exposed to COM
|
||||
[assembly: Guid("697f7ec8-02c6-4f39-a917-ee45955cfff9")]
|
||||
|
||||
// Version information for an assembly consists of the following four values:
|
||||
//
|
||||
// Major Version
|
||||
// Minor Version
|
||||
// Build Number
|
||||
// Revision
|
||||
//
|
||||
// You can specify all the values or you can default the Build and Revision Numbers
|
||||
// by using the '*' as shown below:
|
||||
// [assembly: AssemblyVersion("1.0.*")]
|
||||
[assembly: AssemblyVersion("1.0.0.0")]
|
||||
[assembly: AssemblyFileVersion("1.0.0.0")]
|
|
@ -0,0 +1,84 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="14.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{697F7EC8-02C6-4F39-A917-EE45955CFFF9}</ProjectGuid>
|
||||
<OutputType>Library</OutputType>
|
||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||
<RootNamespace>Stardew_Music_Expansion_API</RootNamespace>
|
||||
<AssemblyName>Stardew_Symphony</AssemblyName>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<Optimize>false</Optimize>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DefineConstants>TRACE</DefineConstants>
|
||||
<ErrorReport>prompt</ErrorReport>
|
||||
<WarningLevel>4</WarningLevel>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="Microsoft.Xna.Framework, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Xna.Framework.Game, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.Game.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Xna.Framework.GamerServices, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.GamerServices.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Xna.Framework.Graphics, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.Graphics.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Xna.Framework.Input.Touch, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=MSIL">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.Input.Touch.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Microsoft.Xna.Framework.Xact, Version=4.0.0.0, Culture=neutral, PublicKeyToken=842cf8be1de50553, processorArchitecture=x86">
|
||||
<SpecificVersion>False</SpecificVersion>
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Microsoft.Xna.Framework.Xact.dll</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="Stardew Valley">
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\Stardew Valley.exe</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="StardewModdingAPI">
|
||||
<HintPath>..\..\..\..\..\..\..\Program Files (x86)\Steam\steamapps\common\Stardew Valley\StardewModdingAPI.exe</HintPath>
|
||||
</Reference>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
<Reference Include="Microsoft.CSharp" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Net.Http" />
|
||||
<Reference Include="System.Xml" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Class1.cs" />
|
||||
<Compile Include="Properties\AssemblyInfo.cs" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.CSharp.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,252 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<doc>
|
||||
<members>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureSample">
|
||||
<summary>A representation of data from a multitouch gesture over a span of time.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta">
|
||||
<summary>Holds delta information about the first touchpoint in a multitouch gesture.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Delta2">
|
||||
<summary>Holds delta information about the second touchpoint in a multitouch gesture.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.GestureType">
|
||||
<summary>The type of gesture in a multitouch gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position">
|
||||
<summary>Holds the current position of the first touchpoint in this gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Position2">
|
||||
<summary>Holds the current position of the the second touchpoint in this gesture sample.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.GestureSample.Timestamp">
|
||||
<summary>Holds the starting time for this touch gesture sample.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.GestureType">
|
||||
<summary>Contains values that represent different multitouch gestures that can be detected by TouchPanel.ReadGesture. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DoubleTap">
|
||||
<summary>The user tapped the screen twice in quick succession. This always is preceded by a Tap gesture. If the time between taps is too great to be considered a DoubleTap, two Tap gestures will be generated instead.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.DragComplete">
|
||||
<summary>A drag gesture (VerticalDrag, HorizontalDrag, or FreeDrag) was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Flick">
|
||||
<summary>The user performed a touch combined with a quick swipe of the screen. Flicks are positionless. The velocity of the flick can be retrieved by reading the Delta member of GestureSample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.FreeDrag">
|
||||
<summary>The user touched the screen, and then performed a free-form drag gesture.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Hold">
|
||||
<summary>The user touched a single point on the screen for approximately one second. This is a single event, and not continuously generated while the user is holding the touchpoint.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.HorizontalDrag">
|
||||
<summary>The user touched the screen, and then performed a horizontal (left to right or right to left) gesture.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.None">
|
||||
<summary>Represents no gestures.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Pinch">
|
||||
<summary>The user touched two points on the screen, and then converged or diverged them. Pinch behaves like a two-finger drag. When this gesture is enabled, it takes precedence over drag gestures while two fingers are down.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.PinchComplete">
|
||||
<summary>A pinch operation was completed. This signals only completion. No position or delta data is valid for this sample.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.Tap">
|
||||
<summary>The user briefly touched a single point on the screen.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.GestureType.VerticalDrag">
|
||||
<summary>The user touched the screen, and then performed a vertical (top to bottom or bottom to top) gesture.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection">
|
||||
<summary>Provides methods and properties for accessing state information for the touch screen of a touch-enabled device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.#ctor(Microsoft.Xna.Framework.Input.Touch.TouchLocation[])">
|
||||
<summary>Initializes a new instance of the TouchCollection structure with a set of touch locations. Reference page contains links to related code samples.</summary>
|
||||
<param name="touches">Array of touch locations.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Add(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Adds a TouchLocation to the collection.</summary>
|
||||
<param name="item">TouchLocation to add.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Clear">
|
||||
<summary>Removes all TouchLocation objects from the collection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Contains(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Checks if the current touch collection contains the specified touch location.</summary>
|
||||
<param name="item">Touch location to be checked against the current collection.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.CopyTo(Microsoft.Xna.Framework.Input.Touch.TouchLocation[],System.Int32)">
|
||||
<summary>Copies the touch location to the collection at the specified index.</summary>
|
||||
<param name="array">Array receiving the copied touch location.</param>
|
||||
<param name="arrayIndex">Target index of the collection.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Count">
|
||||
<summary>Gets the current number of touch locations for the touch screen.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.FindById(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
|
||||
<summary>Retrieves the touch location matching the specified ID.</summary>
|
||||
<param name="id">ID of touch location sought.</param>
|
||||
<param name="touchLocation">[OutAttribute] Touch location item matching the specified ID.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IndexOf(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines the index of a TouchLocation in the TouchCollection.</summary>
|
||||
<param name="item">TouchLocation to locate in the collection.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Insert(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Inserts a new TouchLocation into the TouchCollection at a specified index.</summary>
|
||||
<param name="index">Index in the touch collection for the new item.</param>
|
||||
<param name="item">TouchLocation to be inserted.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsConnected">
|
||||
<summary>Indicates if the touch screen is available for use.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.IsReadOnly">
|
||||
<summary>Determines if the touch location array is read-only.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Item(System.Int32)">
|
||||
<summary>Gets or sets the information of the specified touch location.</summary>
|
||||
<param name="index">Index of the touch location to return.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Remove(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Removes the specified TouchLocation from the TouchCollection.</summary>
|
||||
<param name="item">TouchLocation to be removed.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.RemoveAt(System.Int32)">
|
||||
<summary>Removes a TouchLocation at the specified index in the TouchCollection.</summary>
|
||||
<param name="index">Index of the TouchLocation to remove.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.System#Collections#IEnumerable#GetEnumerator">
|
||||
<summary>Returns an enumerator that iterates through the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator">
|
||||
<summary>Provides the ability to iterate through the touch locations in a TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Current">
|
||||
<summary>Gets the current element in the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.Dispose">
|
||||
<summary>Immediately releases the unmanaged resources used by this object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.MoveNext">
|
||||
<summary>Advances the enumerator to the next element of the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Current">
|
||||
<summary>Gets the current element in the TouchCollection as an object.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchCollection.Enumerator.System#Collections#IEnumerator#Reset">
|
||||
<summary>Sets the enumerator to its initial position, which is before the first element in the TouchCollection.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocation">
|
||||
<summary>Provides methods and properties for interacting with a touch location on a touch screen device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
|
||||
<summary>Initializes a new TouchLocation with an ID, state, position, and pressure.</summary>
|
||||
<param name="id">ID of the new touch location.</param>
|
||||
<param name="state">State of the new touch location.</param>
|
||||
<param name="position">Position, in screen coordinates, of the new touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.#ctor(System.Int32,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2,Microsoft.Xna.Framework.Input.Touch.TouchLocationState,Microsoft.Xna.Framework.Vector2)">
|
||||
<summary>Initializes a new TouchLocation with an ID, and a set of both current and previous state, position, and pressure values.</summary>
|
||||
<param name="id">ID of the new touch location.</param>
|
||||
<param name="state">State of the new touch location.</param>
|
||||
<param name="position">Position, in screen coordinates, of the new touch location.</param>
|
||||
<param name="previousState">Previous state for the new touch location.</param>
|
||||
<param name="previousPosition">Previous position for the new touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether the current TouchLocation is equal to the specified TouchLocation.</summary>
|
||||
<param name="other">The TouchLocation to compare with this instance.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Equals(System.Object)">
|
||||
<summary>Determines whether the current TouchLocation is equal to the specified object.</summary>
|
||||
<param name="obj">The Object to compare with the touch location.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.GetHashCode">
|
||||
<summary>Gets the hash code for this TouchLocation.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Id">
|
||||
<summary>Gets the ID of the touch location.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Equality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether two TouchLocation instances are equal.</summary>
|
||||
<param name="value1">The TouchLocation to compare with the second.</param>
|
||||
<param name="value2">The TouchLocation to compare with the first.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.op_Inequality(Microsoft.Xna.Framework.Input.Touch.TouchLocation,Microsoft.Xna.Framework.Input.Touch.TouchLocation)">
|
||||
<summary>Determines whether two TouchLocation instances are unequal.</summary>
|
||||
<param name="value1">The TouchLocation to compare with the second.</param>
|
||||
<param name="value2">The TouchLocation to compare with the first.</param>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.Position">
|
||||
<summary>Gets the position of the touch location.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchLocation.State">
|
||||
<summary>Gets the state of the touch location.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.ToString">
|
||||
<summary>Gets a string representation of the TouchLocation.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchLocation.TryGetPreviousLocation(Microsoft.Xna.Framework.Input.Touch.TouchLocation@)">
|
||||
<summary>Attempts to get the previous location of this touch location object.</summary>
|
||||
<param name="previousLocation">[OutAttribute] Previous location data, as a TouchLocation.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchLocationState">
|
||||
<summary>Defines the possible states of a touch location. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Invalid">
|
||||
<summary>This touch location position is invalid. Typically, you will encounter this state when a new touch location attempts to get the previous state of itself.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Moved">
|
||||
<summary>This touch location position was updated or pressed at the same position.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Pressed">
|
||||
<summary>This touch location position is new.</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Xna.Framework.Input.Touch.TouchLocationState.Released">
|
||||
<summary>This touch location position was released.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanel">
|
||||
<summary>Provides methods for retrieving touch panel device information. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayHeight">
|
||||
<summary>Gets or sets the display height of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayOrientation">
|
||||
<summary>Gets or sets the display orientation of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.DisplayWidth">
|
||||
<summary>Gets or sets the display width of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.EnabledGestures">
|
||||
<summary>Gets or sets the gestures that are enabled for the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetCapabilities">
|
||||
<summary>Gets the touch panel capabilities for an available device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.GetState">
|
||||
<summary>Gets the current state of the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.IsGestureAvailable">
|
||||
<summary>Used to determine if a touch gesture is available. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Xna.Framework.Input.Touch.TouchPanel.ReadGesture">
|
||||
<summary>Reads an available gesture on the touch panel. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanel.WindowHandle">
|
||||
<summary>The window handle of the touch panel.</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities">
|
||||
<summary>Provides access to information about the capabilities of the touch input device. Reference page contains links to related code samples.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.IsConnected">
|
||||
<summary>Indicates if the touch panel device is available for use.</summary>
|
||||
</member>
|
||||
<member name="P:Microsoft.Xna.Framework.Input.Touch.TouchPanelCapabilities.MaximumTouchCount">
|
||||
<summary>Gets the maximum number of touch locations that can be tracked by the touch pad device.</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,19 @@
|
|||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.Game.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.GamerServices.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.Graphics.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.Input.Touch.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.Xact.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Stardew Valley.exe
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\StardewModdingAPI.exe
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\xTile.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Steamworks.NET.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Newtonsoft.Json.dll
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.GamerServices.xml
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Microsoft.Xna.Framework.Input.Touch.xml
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Newtonsoft.Json.xml
|
||||
C:\Users\owner\Documents\Visual Studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\obj\Debug\Stardew_Music_Expansion_API.csprojResolveAssemblyReference.cache
|
||||
C:\Users\owner\documents\visual studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Stardew_Symphony.dll
|
||||
C:\Users\owner\documents\visual studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\bin\Debug\Stardew_Symphony.pdb
|
||||
C:\Users\owner\documents\visual studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\obj\Debug\Stardew_Symphony.dll
|
||||
C:\Users\owner\documents\visual studio 2015\Projects\Stardew_Music_Expansion_API\Stardew_Music_Expansion_API\obj\Debug\Stardew_Symphony.pdb
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -0,0 +1,14 @@
|
|||
{
|
||||
"Name": "Stardew_Symphony",
|
||||
"Authour": "Alpha_Omegasis",
|
||||
"Version": {
|
||||
"MajorVersion": 1,
|
||||
"MinorVersion": 0,
|
||||
"PatchVersion": 0,
|
||||
"Build": ""
|
||||
},
|
||||
"Description": "Adding more music to the game one beep at a time.",
|
||||
"UniqueID": "4108e859-333c-4fec-a1a7-d2e18c1019fe",
|
||||
"PerSaveConfigs": false,
|
||||
"EntryDll": "Stardew_Symphony.dll"
|
||||
}
|
Loading…
Reference in New Issue