如何将图像添加到游戏元素

时间:2019-04-11 06:34:24

标签: python-3.x pygame

我正在制作一款“ Galaga”类型的简单射击游戏。我是新手,所以我有点想从已经工作的版本中将它们拼凑在一起。我的问题是当被子弹/导弹击中时,我无法让外星人/敌人切换到炸毁的图像 而不只是显示分数。我的确切问题如下。 我该如何编写代码...

  1. 当外星人/奥秘被击中时,(已经生效)
  2. 显示分数,(已经完成)
  3. 切换到被破坏的外星人/神秘图片一秒钟 4.然后消失。

我尝试添加此代码的if语句和其他版本,但无法正常工作。

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/js/bootstrap.min.js"></script>

<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.2/css/bootstrap.min.css">
<div class="form-group  col-xs-12 col-sm-12 col-md-4 col-lg-4">
  <label for="subCategoryCode">Filter Data :</label>
  <div class="input-group">
    <input type="text" class="form-control" aria-label="Text input with dropdown button" name="To" id="To" readonly>
    <div class="input-group-append">
      <button class="btn btn-outline-secondary dropdown-toggle" type="button" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"></button>
      <ul class="dropdown-menu checkbox-menu allow-focus" aria-labelledby="dropdownMenu1">

        <li><label> <input type="checkbox"
							value="Gross Amount"> Gross Amount
					</label></li>

        <li><label> <input type="checkbox"
							value="Discount"> Discount
					</label></li>

        <li><label> <input type="checkbox"
							value="GST"> GST
					</label></li>
        <li><label> <input type="checkbox"
							value="Net Amount"> Net Amount	
					</label></li>


      </ul>
    </div>
    <button type="button" class="commonButton" id="save">
						<i class="fa fa-search"></i>&nbsp;Go
					</button>
  </div>

</div>


<div align="left" class="table table-responsive" id="commonDvScroll">
  <table id="dailySales" class="maxWidthCommonTable"></table>
</div>

filter {
    json => {
        source=>message
        target=>event
    }
}

我的最终目标是: 被击中时,神秘感消失,并显示爆炸1秒钟,然后乐谱和图像完全消失。

0 个答案:

没有答案