Skip to content
  • P
    Projects
  • G
    Groups
  • S
    Snippets
  • Help

alsunj / blackjack

  • This project
    • Loading...
  • Sign in
Go to a project
  • Project
  • Repository
  • Issues 0
  • Merge Requests 0
  • Pipelines
  • Wiki
  • Snippets
  • Members
  • Activity
  • Graph
  • Charts
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Branches
  • Tags
  • Contributors
  • Graph
  • Compare
  • Charts
Commit 3c1094d6 authored 2 years ago by alsunj's avatar alsunj
Browse files
Options
  • Browse Files
  • Download
  • Email Patches
  • Plain Diff

Upload New File

parent 4700a571 master
Hide whitespace changes
Inline Side-by-side
Showing with 39 additions and 0 deletions
  • scripts/C#/Gamescripts/CardScript.cs
scripts/C#/Gamescripts/CardScript.cs 0 → 100644
View file @ 3c1094d6
using System.Collections;
using System.Collections.Generic;
using System.Linq.Expressions;
using UnityEngine;
public class CardScript : MonoBehaviour
{
public GameObject Card1;
public GameObject Card2;
public int value = 0;
public int GetValueOfCard()
{
return value;
}
public void SetValue(int newValue)
{
value = newValue;
}
public string GetSpriteName()
{
return GetComponent<SpriteRenderer>().sprite.name;
}
public void SetSprite(Sprite newSprite)
{
gameObject.GetComponent<SpriteRenderer>().sprite = newSprite;
}
public void ResetCard()
{
Sprite back = GameObject.Find("Deck").GetComponent<DeckScript>().GetCardBack();
gameObject.GetComponent<SpriteRenderer>().sprite = back;
value = 0;
}
}
This diff is collapsed. Click to expand it.
  • Write
  • Preview
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment